* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #ffffff;
      color: #111111;
      overflow-x: hidden;
    }

    :root {
      --primary: #111111;
      --secondary: #666666;
      --light: #f5f5f5;
      --accent: #d4af37;
    }

    section {
      padding: 45px 8%;
      scroll-margin-top: 110px;
    }

    .section-title {
      font-size: 42px;
      margin-top: 0;
      margin-bottom: 14px;
      font-weight: 700;
      text-align: center;
    }

    .section-subtitle {
      text-align: left;
      color: var(--secondary);
      font-size: 17px;
      max-width: 1100px;
      margin: 0 auto;
      margin-top: 0;
      margin-bottom: 18px;
      line-height: 1.8;
    }

    /* NAVBAR */

    nav {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      padding: 8px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: 0.3s ease;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(10px);
    }

    nav.scrolled {
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .logo img {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

    .nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .menu-btn {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    /* HERO */

   /* HERO */

.hero{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  height: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: white;
}

.hero-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-content{
  position: relative;
  z-index: 3;
  max-width: 520px;
  animation: fadeUp 1s ease;
  margin-top: 70px;
}

    

    .hero-location {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: -22px;
      color: rgba(255,255,255,0.9);
    }

    .hero-subtext {
      font-size: 18px;
      line-height: 1.1;
      color: rgba(255,255,255,0.92);
      margin-bottom: -22px;
    }

    .hero-price {
      font-size: 17px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: -6px;
    }

    .hero-points {
      list-style: none;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .hero-points li {
      font-size: 16px;
      color: rgba(255,255,255,0.92);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-points li::before {
      content: '✔';
      color: #ffffff;
      font-weight: bold;
      font-size: 14px;
    }

    .hero h1 {
      font-size: 44px;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .hero p {
      font-size: 18px;
      line-height: 1.8;
      color: rgba(255,255,255,0.85);
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      justify-content: flex-start;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 35px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      transition: 0.3s ease;
      text-decoration: none;
    }

    .btn-primary {
      background: white;
      color: #111111;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 220px;
      min-height: 58px;
      font-size: 18px;
      font-weight: 700;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .btn-primary:hover {
      transform: translateY(-4px);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid white;
      color: white;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 220px;
      min-height: 58px;
      font-size: 18px;
      font-weight: 700;
    }

    .btn-outline:hover {
      background: white;
      color: black;
    }

    /* ABOUT */

    .about-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
    }

    

    .about-content {
      max-width: 1100px;
      margin: 0 auto;
    }

   /* GLOBAL CONTENT TYPOGRAPHY */

h2{
  font-size:30px;
  margin-bottom:20px;
  text-align:left;
  font-weight:700;
  line-height:1.3;
  color:#111111;
}

h3{
  font-size:24px;
  margin-top:10px;
  margin-bottom:10px;
  color:#111111;
  font-weight:600;
  line-height:1.4;
}

h4{
  font-size:18px;
  margin-top:14px;
  margin-bottom:10px;
  color:#111111;
  font-weight:600;
  line-height:1.5;
}

p{
  color:var(--secondary);
  line-height:1.9;
  margin-bottom:14px;
  font-size:17px;
}

ul{
  padding-left:30px;
  margin-top:18px;
  margin-bottom:18px;
}

ul li{
  margin-bottom:8px;
  line-height:1.7;
  color:var(--secondary);
}

/* CENTER ONLY MAIN SECTION HEADINGS */

.section-title{
  text-align:center;
}

    .stats {
      display: flex;
      gap: 40px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .stat-box h3 {
      font-size: 36px;
      color: var(--accent);
    }

    .stat-box p {
      margin-top: 5px;
      color: var(--secondary);
    }

    /* FEATURES */

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 14px;
    }

    .feature-card {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      height: 180px;
      cursor: pointer;
    }

    .feature-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .feature-card:hover img {
      transform: scale(1.05);
    }

    .feature-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 14px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      font-size: 15px;
      font-weight: 600;
    }

    

    /* PRICING */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 22px;
      margin-top: 20px;
    }

    .price-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 40px 20px;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.08);
      transition: 0.35s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }

    .price-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

    .price-card h3 {
      font-size: 28px;
      margin-bottom: 12px;
      color: #111111;
    }

    .price {
      font-size: 42px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .price-label {
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #777777;
    }

    /* GALLERY */

    /* LOCATION MAP */

    .location-map {
      width: 100%;
      height: 500px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* CONTACT */

    

    /* FAQ */

    .faq-container {
      max-width: 900px;
      margin: auto;
    }

    .faq-item {
      background: var(--light);
      margin-bottom: 20px;
      border-radius: 20px;
      overflow: hidden;
    }

    .faq-question {
      padding: 25px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 25px;
      color: var(--secondary);
      line-height: 1.8;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding-bottom: 25px;
    }

    /* FOOTER */

    footer {
      background: #111111;
      color: white;
      text-align: center;
      padding: 35px 20px;
    }
    
    footer p{
  color:#ffffff;
  opacity:0.9;
}

    /* POPUP */

    .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease;
      z-index: 2000;
      padding: 20px;
    }

    .popup.active {
      opacity: 1;
      pointer-events: auto;
    }

    .popup-box {
      background: white;
      width: 100%;
      max-width: 450px;
      border-radius: 25px;
      padding: 40px;
      position: relative;
      animation: fadeUp 0.4s ease;
    }

    .popup-box h2 {
      font-size: 32px;
      margin-bottom: 10px;
      padding-right: 0;
      line-height: 1.3;
      color: #111111;
      font-weight: 700;
      text-align: center;
    }

    .popup-box p {
      text-align: center;
    }

    .popup-box p {
      color: var(--secondary);
      margin-bottom: 25px;
      line-height: 1.7;
    }

    .popup-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .popup-form input,
    .popup-form select {
      padding: 16px;
      border-radius: 14px;
      border: 1px solid #ddd;
      font-size: 15px;
      font-family: inherit;
      width: 100%;
      background: white;
    }

    .phone-group {
      display: flex;
      gap: 12px;
    }

    .country-code {
      width: 68px;
      min-width: 68px;
      max-width: 68px;
      padding: 14px 8px;
      font-size: 14px;
      appearance: none;
      background-position: right 8px center;
    }

    .captcha-box {
      background: #f7f7f7;
      border: 1px solid #e5e5e5;
      border-radius: 16px;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .captcha-number {
      background: #111111;
      color: white;
      padding: 10px 16px;
      border-radius: 10px;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 4px;
      user-select: none;
      min-width: 120px;
      text-align: center;
    }

    .captcha-input {
      width: 100%;
    }

    .captcha-left {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 160px;
    }

    .captcha-left input {
      width: 18px;
      height: 18px;
      min-width: 18px;
      cursor: pointer;
      accent-color: #111111;
    }

    .captcha-text {
      font-size: 14px;
      font-weight: 600;
      color: #111111;
      white-space: nowrap;
    }

    .captcha-left input {
      width: 20px;
      height: 20px;
      cursor: pointer;
    }

    .captcha-text {
      font-size: 15px;
      font-weight: 500;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    .captcha-badge {
      font-size: 12px;
      color: var(--secondary);
      text-align: right;
      line-height: 1.4;
    }

    .popup-form button {
      background: black;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
    }

    .close-popup {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #111111;
      color: white;
      border-radius: 50%;
      font-size: 24px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .close-popup:hover {
      transform: rotate(90deg) scale(1.08);
      background: var(--accent);
      color: black;
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 30px;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {transform: scale(1);}
      50% {transform: scale(1.08);}
      100% {transform: scale(1);}
    }

    /* ANIMATIONS */

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: 0.6s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */

    @media(max-width: 991px) {
      .hero {
        height: auto;
        min-height: 700px;
        padding: 120px 7% 80px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: repeat(2,1fr);
      }
    }

    @media(max-width: 768px) {
      nav {
        padding: 18px 20px;
      }
      .menu-btn {
        display: block;
      }
      
      .hero-content{
  animation:none;
}

.hero h1{
  animation:none;
}

      .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s ease;
      }

      .nav-links.active {
        left: 0;
      }

      .hero {
        text-align: left;
        min-height: 100vh;
        padding: 120px 20px 70px;
      }


      .hero h1 {
        font-size: 34px;
      }

      .hero-btns {
        flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        min-width: 100%;
      }

      .features-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .feature-card {
        height: 220px;
      }

      .section-title,
.contact-info h2,
h2 {
  font-size: 30px;
}

      .location-map {
        height: 350px;
      }

      section {
        padding: 70px 20px;
      }
    }

    @media(max-width: 500px) {
      .hero h1 {
        font-size: 34px;
      }

      .hero p {
        font-size: 15px;
      }

      .btn {
        width: 100%;
      }
    }