  
    :root {
      --primary: #640aa3;
      --primary-dark: #4a0778;
      --primary-light: #8b1fd4;
      --primary-pale: #f3e8ff;
      --gold: #c9a227;
      --dark: #1a0c2e;
      --light-bg: #faf7ff;
      --text: #2d2d2d;
      --text-muted: #6c6c7e;
    }

    * { box-sizing: border-box; }
    body { font-family: 'Nunito', sans-serif; color: var(--text); background: #fff; }
    h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

    /* ========== TOPBAR ========== */
    .topbar {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.85);
      font-size: 0.82rem;
      padding: 6px 0;
    }
    .topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
    .topbar a:hover { color: #fff; }

    /* ========== NAVBAR ========== */
    .navbar {
          background: linear-gradient(45deg, #1d0732, #4d176c);
    box-shadow: 0 2px 20px rgba(100, 10, 163, 0.08);
    padding: 4px 0;
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.7rem;
      color: var(--primary) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand span { color: var(--gold); }
    .nav-link {
      font-weight: 600;
      font-size: 0.9rem;
      color: #ffffff !important;
      padding: 8px 14px !important;
      border-radius: 6px;
      transition: all 0.2s;
    }
    /* Desktop ke liye hover dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-menu {
    display: none;
  }
}

    .nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--primary-pale); }
    .navbar-toggler { border-color: var(--primary); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23640aa3' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .btn-nav-cta {
      background: var(--primary);
      color: #fff !important;
      border-radius: 50px;
      padding: 8px 22px !important;
      font-weight: 700;
    }
    .btn-nav-cta:hover { background: var(--primary-dark); color: #fff !important; }
    .dropdown-menu { border: none; box-shadow: 0 8px 30px rgba(100,10,163,0.12); border-radius: 12px; }
    .dropdown-item { font-size: 0.88rem; font-weight: 600; padding: 8px 20px; }
    .dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }

    /* ========== HERO ========== */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
      min-height: 92vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge {
      display: inline-block;
      background: rgba(201,162,39,0.2);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero h1 span { color: var(--gold); }
    .hero p {
      color: rgba(255,255,255,0.8);
      font-size: 1.1rem;
      margin-bottom: 32px;
      max-width: 520px;
    }
    .btn-hero-primary {
      background: #fff;
      color: var(--primary);
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-primary:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
    .btn-hero-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.4);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .hero-img-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-card-float {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px;
      padding: 20px 28px;
      color: #fff;
    }
    .hero-img-main {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
    }
    .hero-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .hero-icon-item {
      background: rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 18px;
      text-align: center;
      color: rgba(255,255,255,0.9);
      font-size: 0.75rem;
      font-weight: 600;
    }
    .hero-icon-item i { font-size: 2rem; display: block; margin-bottom: 8px; color: var(--gold); }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      background: var(--primary-pale);
      border-top: 3px solid var(--primary);
      padding: 28px 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }
    .trust-item i { font-size: 1.6rem; color: var(--primary); }
    .trust-item strong { font-size: 0.95rem; color: var(--dark); }
    .trust-item span { font-size: 0.8rem; color: var(--text-muted); }

    /* ========== SECTION HEADERS ========== */
    .section-tag {
      display: inline-block;
      background: var(--primary-pale);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 12px;
    }
    .section-title { font-weight: 700; color: var(--dark); }
    .section-title span { color: var(--primary); }
    .divider-line {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      border-radius: 2px;
      margin: 16px 0 0;
    }

    /* ========== PRODUCTS ========== */
    .products-section { background: var(--light-bg); padding: 80px 0; }
    .product-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(100,10,163,0.06);
      transition: all 0.3s;
      height: 100%;
      border: 1px solid rgba(100,10,163,0.06);
    }
    .product-icon-wrap img {
    border-radius: 15px;
}
    .product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(100,10,163,0.14); }
    .product-icon-wrap {
      /* background: linear-gradient(135deg, var(--primary-pale), #e8d5ff); */
      padding: 9px 0px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .product-icon-wrap::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 100px; height: 100px;
      background: rgba(100,10,163,0.06);
      border-radius: 50%;
    }
    .product-icon-wrap i { font-size: 3.5rem; color: var(--primary); position: relative; z-index: 1; }
    .product-body { padding: 24px 24px 28px; }
    .product-body h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .product-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
    .btn-product {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .btn-product:hover { color: var(--primary-dark); gap: 10px; }

    /* ========== ABOUT ========== */
    .about-section { padding: 90px 0; }
    .about-img-wrap {
      background: linear-gradient(135deg, var(--primary-pale) 0%, #e0c4ff 100%);
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .about-img-wrap::after {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 180px; height: 180px;
      background: rgba(100,10,163,0.08);
      border-radius: 50%;
    }
    .about-img-icon { font-size: 6rem; color: var(--primary); position: relative; z-index: 1; }
    .about-badge {
      position: absolute;
      top: 24px; right: 24px;
      background: var(--primary);
      color: #fff;
      border-radius: 16px;
      padding: 14px 20px;
      text-align: center;
      z-index: 2;
    }
    .about-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
    .about-badge .lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
    .what-we-do { background: var(--primary-pale); border-radius: 16px; padding: 24px; margin-top: 28px; }
    .what-we-do h6 { color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
    .what-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.9rem; }
    .what-item i { color: var(--primary); font-size: 1rem; }
    .btn-primary-custom {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }
    .btn-primary-custom:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
    .btn-outline-custom {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }
    .btn-outline-custom:hover { background: var(--primary); color: #fff; }

    /* ========== TURNKEY ========== */
    .turnkey-section { background: var(--dark); padding: 90px 0; }
    .turnkey-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 36px 28px;
      text-align: center;
      color: #fff;
      transition: all 0.3s;
      height: 100%;
    }
    .turnkey-card:hover { background: rgba(100,10,163,0.3); border-color: var(--primary-light); transform: translateY(-6px); }
    .turnkey-card i { font-size: 2.8rem; color: var(--gold); margin-bottom: 16px; display: block; }
    .turnkey-card h5 { font-size: 1.05rem; margin-bottom: 10px; }
    .turnkey-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

    /* ========== TESTIMONIALS ========== */
    .testimonials-section { padding: 90px 0; background: var(--light-bg); }
    .testi-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 4px 20px rgba(100,10,163,0.06);
      border: 1px solid rgba(100,10,163,0.06);
      height: 100%;
      position: relative;
    }
    .testi-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      color: var(--primary-pale);
      position: absolute;
      top: 10px; left: 20px;
      line-height: 1;
    }
    .testi-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 14px; }
    .testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testi-author strong { font-size: 0.95rem; color: var(--dark); }
    .testi-author span { font-size: 0.8rem; color: var(--primary); font-weight: 600; display: block; }

    /* ========== REACH / MAP ========== */
    .reach-section { background: var(--primary); padding: 70px 0; color: #fff; }
    .reach-section h2 { color: #fff; }
    .reach-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .reach-item i { font-size: 1.4rem; color: var(--gold); }
    .reach-item span { font-weight: 600; }
    .reach-badge {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin: 4px;
    }

    /* ========== BLOGS ========== */
    .blogs-section { padding: 90px 0; }
    .blog-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(100,10,163,0.06);
      border: 1px solid rgba(100,10,163,0.06);
      transition: all 0.3s;
      height: 100%;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(100,10,163,0.12); }
    .blog-img {
      background: linear-gradient(135deg, var(--primary-pale), #ddc6ff);
      padding: 32px;
      text-align: center;
    }
    .blog-img i { font-size: 3rem; color: var(--primary); }
    .blog-body { padding: 24px; }
    .blog-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
    .blog-body h6 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
    .blog-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

    /* ========== CONTACT CTA ========== */
    .contact-section { padding: 90px 0; background: var(--light-bg); }
    .contact-card {
      background: linear-gradient(135deg, var(--dark), var(--primary));
      border-radius: 28px;
      padding: 60px 48px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .contact-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 250px; height: 250px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
    }
    .contact-card::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 300px; height: 300px;
      background: rgba(255,255,255,0.03);
      border-radius: 50%;
    }
    .contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
    .contact-info-item i { font-size: 1.3rem; color: var(--gold); margin-top: 2px; }
    .contact-info-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 2px; }
    .contact-info-item span { font-size: 0.95rem; }
    .form-control-custom {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      color: #fff;
      padding: 14px 18px;
      font-size: 0.9rem;
    }
    .form-control-custom::placeholder { color: rgba(255,255,255,0.5); }
    .form-control-custom:focus { background: rgba(255,255,255,0.15); border-color: var(--gold); color: #fff; box-shadow: none; }
    .btn-gold {
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      width: 100%;
      transition: all 0.3s;
    }
    .btn-gold:hover { background: #e0b832; transform: translateY(-2px); }

    /* ========== FOOTER ========== */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      padding: 70px 0 0;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.6rem;
      color: #fff;
    }
    .footer-brand span { color: var(--gold); }
    footer h6 { color: #fff; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
    footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; display: block; margin-bottom: 8px; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      color: #fff;
      font-size: 1rem;
      margin-right: 8px;
      transition: all 0.2s;
    }
    .footer-social a:hover { background: var(--primary); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      margin-top: 50px;
      font-size: 0.82rem;
    }

    /* ========== WHATSAPP FLOAT ========== */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      background: #25D366;
      color: #fff;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: all 0.3s;
    }
    .wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 991px) {
      .hero { min-height: auto; padding: 80px 0 60px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .contact-card { padding: 36px 24px; }
    }
    @media (max-width: 767px) {
      .hero h1 { font-size: 2rem; }
      .topbar .d-flex { flex-direction: column; align-items: flex-start; gap: 4px; }
    }
