    :root {
      --brand-purple: #5b2b82;
      --brand-purple-dark: #3f1d5e;

      --gold: #D4AF37;
      --gold-soft: #E6C76A;
      --gold-solid: #C6A75E;
      --text-light: #ffffff;
      --text-dark: #222222;
      --card-bg: rgba(255,255,255,0.08);

      --glass-bg: rgba(255,255,255,0.08);
      --glass-border: rgba(255,255,255,0.18);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background: linear-gradient(135deg, #4b216f, #2e143f);
      color: var(--text-light);
      line-height: 1.6;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(47, 20, 63, 0.95);
      backdrop-filter: blur(6px);
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .logo {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .logo img {
      height: 48px;
    }
  
    .nav-links a {
      color: var(--gold-soft);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      pointer-events: auto !important;
      position: relative;
      z-index: 20;
    }
    .nav-links a:hover {
      color: var(--gold);
    }

    nav {
     position: relative;
     z-index: 10;
     pointer-events: auto !important;
    }
    /* Ensure nav container is not blocking links */
    .nav-container {
      pointer-events: auto !important;
      z-index: 15;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
      margin: 0;
      padding: 0;
    }

    /* BANNER */
    .banner {
      height: 70vh;
      background: url('Logo.jpeg') center/contain no-repeat,
                  linear-gradient(135deg, #5b2b82, #2e143f);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px;
      position: relative;
      z-index: 1;
    }

    .banner h1 {
      margin-top: 525px;
      font-size: 2.0rem;
      max-width: 1200px;
      text-align: center;
      margin-bottom: 0px;
    }

    /* SECTIONS */
    section {
      max-width: 1200px;
      margin: auto;
      padding: 70px 20px;
    }

    section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.2rem;
      color: var(--gold);
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 48px;
    }

    .service-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      transition: transform 0.3s;
      border-radius: 20px;
      backdrop-filter: blur(12px);
    }

    .service-card:hover { transform: translateY(-6px); }

    .service-card h3 { margin-bottom: 10px;   color: var(--gold-soft); }

    /* ABOUT */
    .about-flex {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }

    .about-flex h3 {
        margin-top: 20px;
        margin-bottom: 20px;
        color: var(--gold-soft)
    }

    .owner-img {
      width: 260px;
      height: 320px;
      border: 2px dashed #caa7ff;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.8;
    }

    /* SECTION */
    #contact {
        padding: 120px 8%;
    }

    /* CONTAINER */
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: center;
    }

    /* LEFT SIDE */
    .contact-left h2 {
        font-size: 36px;
        margin-bottom: 40px;
        font-weight: 600;
        color: var(--gold);
        position: relative;
    }

    .contact-left h2::after {
        content: "";
        width: 60px;
        height: 3px;
        display: block;
        margin-top: 12px;
    }

    /* CONTACT ITEMS */
    .contact-item {
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.8s ease forwards;

    }

    .contact-item:nth-child(2) { animation-delay: 0.2s; }
    .contact-item:nth-child(3) { animation-delay: 0.4s; }
    .contact-item:nth-child(4) { animation-delay: 0.6s; }

    .label {
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gold-solid);
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .contact-item a,
    .contact-item p {
        font-size: 18px;
        color: var(--text-light);
        text-decoration: none;
        transition: 0.3s ease;
    }

    .contact-item a:hover {
        color: var(--gold-solid);
    }

    /* SOCIAL */
    .social-links a {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 26px;
        background: var(--gold);
        color: #fff;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .social-links a:hover {
        background: var(--gold);
        color: #fff;
        border: none;
    }

    /* MAP */
    .contact-map iframe {
        width: 100%;
        height: 420px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

    .contact-map iframe:hover {
        transform: scale(1.02);
    }

    /* ANIMATION */
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }

        .contact-map iframe {
            height: 350px;
        }
    }

    /* FOOTER */
    footer {
      text-align: center;
      padding: 30px 20px;
      background: #24102f;
      font-size: 0.9rem;
    }

    /* WHATSAPP FLOAT */
    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: white;
      padding: 12px 18px;
      border-radius: 30px;
      font-weight: bold;
      z-index: 999;
    }

    .price-table { margin-top: 20px; margin-bottom: 20px; width:100%; border-collapse:collapse; background:var(--card); border-radius:12px; overflow:hidden; }
    .price-table th, .price-table td { padding:14px; border-bottom:1px solid rgba(255,255,255,0.2); }
    .price-table th { background: rgba(255,255,255,0.1); text-align:left; }
    

    /* MOBILE */
    @media (max-width: 768px) {
      .banner h1 { font-size: 2rem; }
      nav ul { gap: 14px; }
    }

    /* CTA Button Styling */
    .cta {
      background: var(--gold);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 28px;
      font-size: 1.1rem;
      font-weight: 500;
      box-shadow: 0 4px 18px 0 rgba(91,43,130,0.18);
      cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      outline: none;
      display: inline-block;
   }

   .cta:hover, .cta:focus {
      background: var(--card-bg);
      box-shadow: 0 6px 24px 0 rgba(91,43,130,0.28);
      transform: translateY(-2px) scale(1.03);
    }

    /* REVIEW SECTION */
#reviews {
  padding: 120px 20px;
  background: linear-gradient(135deg, #4b216f, #2e143f);
  text-align: center;
  perspective: 1200px;
}

.review-title {
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 70px;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.carousel {
  position: relative;
  height: 350px;
}

.review-card {
  position: absolute;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.8) translateZ(-200px);
}

.review-card.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  z-index: 3;
}

.review-card.prev,
.review-card.next {
  opacity: 0.6;
  transform: scale(0.9) translateZ(-100px);
  z-index: 2;
}

/* TEXT */
.review-text {
  color: white;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

/* STARS */
.stars {
  margin-bottom: 20px;
  text-align: center;
}

.stars span {
  font-size: 1.5rem;
  color: transparent;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: starFill 0.6s forwards;
}

@keyframes starFill {
  to { opacity: 1; }
}

/* CLIENT */
.client {
  margin-top: 10px;
  text-align: center;
}

.client img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid var(--gold);
}

.client h4 {
  color: white;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: var(--gold);
  color: #2e143f;
}

.arrow.left { left: -70px; }
.arrow.right { right: -70px; }

/* DOTS */
.dots {
  margin-top: 40px;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }
}


