
    :root {
      --primary: #1a73e8;
      --primary-dark: #1557aa;
      --accent: #f4b41a;
      --bg-light: #f7f9fc;
      --text-main: #1f2933;
      --text-muted: #6b7280;
      --border-soft: #e5e7eb;
      --white: #ffffff;
      --success: #15803d;
      --radius-lg: 16px;
      --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
      gap: 8px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-main);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(37, 99, 235, 0.05);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.07);
      color: var(--primary-dark);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      gap: 24px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.2rem;
    }

    .logo-img {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    /* Agar aapke paas abhi logo nahi hai, to ye circle text wala fallback rahega */
    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffffff, #f97316);
      border: 2px solid #facc15;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
      box-shadow: 0 6px 12px rgba(148, 163, 184, 0.5);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .logo-title {
      font-size: 1.05rem;
    }

    .logo-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: var(--text-muted);
      font-weight: 500;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-toggle {
      display: none;
      border: none;
      background: transparent;
      font-size: 1.6rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 16px;
        top: 58px;
        background: #ffffff;
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
        flex-direction: column;
        align-items: flex-start;
        min-width: 180px;
        display: none;
      }

      .nav.open .nav-links {
        display: flex;
      }

      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: block;
      }
    }

    /* HERO (HOME) */
    #home.hero {
      padding: 48px 0 40px;
      background: radial-gradient(circle at top left, #eff6ff 10%, #ffffff 55%, #fefce8 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
    }

    .hero-title {
      font-size: clamp(2.2rem, 3.1vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin: 12px 0 12px;
    }

    .hero-highlight {
      color: var(--primary);
      position: relative;
    }

    .hero-highlight::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 6px;
      width: 100%;
      background: rgba(250, 204, 21, 0.6);
      z-index: -1;
      transform: translateY(4px);
      border-radius: 999px;
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 550px;
      margin-bottom: 18px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 14px 0 24px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .meta-pill {
      padding: 6px 10px;
      border-radius: 999px;
      background: #eef2ff;
      color: #4f46e5;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 20px;
    }

    .hero-note {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 18px;
    }

    .stat-card {
      min-width: 120px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    }

    .stat-value {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* HERO RIGHT IMAGE BLOCK */
    .hero-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 280px;
      padding: 14px;
      display: flex;
      align-items: flex-end;
    }

    /* TODO: Yaha aap sirf image URL change karna hai */
    .hero-visual {
      background-image: url("images/hero-gullak.jpg"); /* apni hero image ka path lagaiye */
    }

    .hero-visual-overlay {
      background: linear-gradient(to top, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0));
      border-radius: 18px;
      padding: 14px;
      width: 100%;
      color: #e5e7eb;
    }

    .hero-card-title {
      font-size: 1rem;
      font-weight: 600;
    }

    .hero-card-sub {
      font-size: 0.78rem;
      color: #cbd5f5;
      margin-bottom: 8px;
    }

    .hero-card-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      margin-bottom: 4px;
    }

    .hero-card-label {
      color: #9ca3af;
    }

    .hero-card-value {
      font-weight: 600;
    }

    .hero-card-footer {
      margin-top: 8px;
      font-size: 0.75rem;
      color: #9ca3af;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .hero-card-highlight {
      color: #facc15;
      font-weight: 600;
    }

    /* SECTION BASE */
    section {
      padding: 40px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 26px;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary-dark);
      font-weight: 700;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 800;
      margin-top: 4px;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 6px auto 0;
    }

    /* ABOUT SECTION */
    #about {
      background: var(--bg-light);
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
      gap: 26px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

    .about-text p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .about-list {
      list-style: none;
      font-size: 0.9rem;
      color: var(--text-main);
    }

    .about-list li {
      margin-bottom: 6px;
    }

    .about-list span {
      color: var(--primary-dark);
      font-weight: 600;
      margin-right: 4px;
    }

    .about-image {
      border-radius: 24px;
      min-height: 260px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      box-shadow: var(--shadow-soft);
    }

    /* TODO: Yaha apni About image ka path dalo */
    .about-image {
      background-image: url("images/about-gullak.jpg");
    }

    /* WHY */
    .why {
      background: #ffffff;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 16px;
      border: 1px solid var(--border-soft);
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
    }

    .why-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .why-title {
      font-weight: 600;
      margin-bottom: 4px;
      font-size: 0.98rem;
    }

    .why-text {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* PLANS */
    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .plans-grid {
        grid-template-columns: 1fr;
      }
    }

    .plan-card {
      border-radius: var(--radius-lg);
      padding: 16px;
      border: 1px solid var(--border-soft);
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .plan-tag {
      display: inline-block;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(52, 211, 153, 0.12);
      color: #059669;
      margin-bottom: 4px;
    }

    .plan-name {
      font-weight: 700;
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .plan-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .plan-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .plan-meta span {
      padding: 3px 8px;
      border-radius: 999px;
      background: #f9fafb;
      border: 1px dashed #e5e7eb;
    }

    .plan-amount {
      font-size: 0.87rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .plan-cta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary-dark);
      cursor: pointer;
    }

    .plan-cta span {
      font-size: 1rem;
    }

    /* HOW IT WORKS */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

    .step-card {
      border-radius: var(--radius-lg);
      border: 1px dashed var(--border-soft);
      padding: 16px;
      background: #ffffff;
    }

    .step-number {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #eff6ff;
      color: #1d4ed8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-title {
      font-weight: 600;
      margin-bottom: 4px;
      font-size: 0.95rem;
    }

    .step-text {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* FINANCE */
    .finance {
      background: #0f172a;
      color: #e5e7eb;
    }

    .finance .section-header .section-title {
      color: #e5e7eb;
    }

    .finance .section-header .section-subtitle {
      color: #9ca3af;
    }

    .finance-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 2fr);
      gap: 26px;
      margin-top: 20px;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .finance-grid {
        grid-template-columns: 1fr;
      }
    }

    .finance-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 16px;
      background: rgba(15, 23, 42, 0.9);
    }

    .finance-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .finance-list {
      list-style: none;
      margin-top: 8px;
      font-size: 0.88rem;
    }

    .finance-list li {
      padding: 6px 0;
      border-bottom: 1px solid rgba(31, 41, 55, 0.8);
      display: flex;
      justify-content: space-between;
      gap: 8px;
    }

    .finance-list span.label {
      color: #e5e7eb;
    }

    .finance-list span.value {
      color: #93c5fd;
      font-weight: 500;
      font-size: 0.8rem;
    }

    .lead-form {
      border-radius: var(--radius-lg);
      background: #ffffff;
      padding: 18px;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-soft);
      color: var(--text-main);
    }

    .lead-form h3 {
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    .lead-form p {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    @media (max-width: 640px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 0.82rem;
    }

    .form-field label {
      font-weight: 500;
      color: #374151;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 8px 10px;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
      font-family: inherit;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
    }

    .form-field textarea {
      min-height: 60px;
      resize: vertical;
    }

    .form-hint {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .form-footer {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .form-note {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .form-note span {
      color: var(--success);
      font-weight: 600;
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--bg-light);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    .testimonial-card {
      border-radius: var(--radius-lg);
      background: #ffffff;
      padding: 14px;
      border: 1px solid var(--border-soft);
    }

    .testimonial-stars {
      font-size: 0.9rem;
      color: #f97316;
      margin-bottom: 4px;
    }

    .testimonial-text {
      font-size: 0.86rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .testimonial-author {
      font-size: 0.84rem;
      font-weight: 600;
    }

    .testimonial-role {
      font-size: 0.76rem;
      color: var(--text-muted);
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
      gap: 24px;
      margin-top: 18px;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    .faq-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .faq-intro p {
      margin-bottom: 8px;
    }

    .faq-list {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: #ffffff;
      padding: 12px;
    }

    .faq-item + .faq-item {
      border-top: 1px solid var(--border-soft);
      margin-top: 8px;
      padding-top: 8px;
    }

    .faq-q {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .faq-a {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* CTA */
    .cta {
      text-align: center;
      padding: 40px 0 32px;
      background: radial-gradient(circle at top, #eff6ff 0, #ffffff 50%);
    }

    .cta h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .cta p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto 14px;
    }

    /* CONTACT SECTION */
    #contact {
      background: #ffffff;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
      gap: 24px;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      padding: 16px;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
      font-size: 0.9rem;
    }

    .contact-item {
      margin-bottom: 10px;
    }

    .contact-label {
      font-weight: 600;
      margin-right: 4px;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #22c55e;
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .whatsapp-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #22c55e;
    }

    .contact-image {
      border-radius: 24px;
      min-height: 260px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      box-shadow: var(--shadow-soft);
    }

    /* TODO: yaha apni contact/map image lagao */
    .contact-image {
      background-image: url("images/contact-gullak.jpg");
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border-soft);
      padding: 16px 0 22px;
      background: #0b1120;
      color: #9ca3af;
      font-size: 0.8rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .footer-logo .logo-mark {
      box-shadow: none;
      border-color: #fbbf24;
    }

    .footer-heading {
      font-weight: 600;
      margin-bottom: 6px;
      color: #e5e7eb;
    }

    .footer-list {
      list-style: none;
    }

    .footer-list li {
      margin-bottom: 4px;
    }

    .footer-list a {
      color: #9ca3af;
    }

    .footer-list a:hover {
      color: #bfdbfe;
    }

    .footer-bottom {
      margin-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      padding-top: 10px;
    }

    .footer-bottom a {
      color: #9ca3af;
    }

    .footer-bottom a:hover {
      color: #bfdbfe;
    }

    /* FLOATING WHATSAPP BUTTON */
    .whatsapp-float {
      position: fixed;
      bottom: 18px;
      right: 18px;
      z-index: 60;
    }

    .whatsapp-float a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 14px 30px rgba(22, 163, 74, 0.6);
    }

    .whatsapp-float .whatsapp-icon {
      background: transparent;
      color: #ffffff;
      width: auto;
      height: auto;
      font-size: 1.5rem;
    }

    @media (max-width: 480px) {
      .whatsapp-float a {
        width: 46px;
        height: 46px;
      }
    }