body {
    font-family: 'Roboto', sans-serif;
    background: #fffdfc;
    color: #333;
    scroll-behavior: smooth;
}

h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.section {
    padding: 80px 0;
}

.hero {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
}

.btn-main {
    background: linear-gradient(to right, #6e9a7b, #4e7259);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-main:hover {
    background: linear-gradient(to right, #8fbfa1, #6e9a7b);
    transform: scale(1.05);
}

.highlight-story {
    background: #fff4e1;
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.package-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    transition: transform 0.4s ease;
    border-top: 5px solid #d4af37;
}

.package-card:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 2.2rem;
    color: #a47e1b;
    margin-bottom: 20px;
}

.example-site iframe {
    border: none;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(to right, #fff1da, #ffe4cc);
    border-left: 5px solid #d4af37;
    padding: 20px;
    border-radius: 12px;
    margin-top: 50px;
    font-style: italic;
}

    footer {
      background-color: #222;
      color: #ccc;
      text-align: center;
      padding: 40px 0;
      margin-top: auto;
    }
    footer img.logo {
      width: 160px;
      margin-bottom: 20px;
    }
.logo {
    width: 160px;
    margin-bottom: 20px;
}

.dada {
    background-color: rgba(0, 0, 0, 0.6);
}
.link{
	color:#6e9a7b;
}

    body {
      font-family: 'Roboto', sans-serif;
      background-color: #fdfdfd;
    }
    .header-wrapper {
      background: #222;
      padding: 4rem 1rem 2rem;
      text-align: center;
      position: relative;
    }
    .header-wrapper img.logo {
      height: 200px;
      margin-bottom: 1rem;
    }
    .header-wrapper h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2.5rem;
	  color: white;
    }
	.header-wrapper p {
	  color: white;
    }
    .card.package-details {
      border: none;
      border-radius: 1rem;
      padding: 2rem;
      background-color: #fff;
    }
    .btn-main {
      background-color: #000;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      transition: 0.3s;
    }
    .btn-main:hover {
      background-color: #444;
    }