 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy: #0B1C3F;
      --navy2: #112654;
      --teal: #00C5A1;
      --teal2: #00A886;
      --amber: #F5A623;
      --amber2: #E09520;
      --slate: #E8EDF7;
      --muted: #6B7A99;
      --white: #FFFFFF;
      --text: #1A2744;
      --card-bg: #F4F7FF;
      --border: #D1DAEE;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      background: var(--navy);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    }

    .nav-logo {
      font-family: sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      letter-spacing: .5px;
    }
	
	table {font-family: sans-serif;font-weight: 500;}

    .nav-logo span {
      color: var(--teal);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, .75);
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--teal);
    }

    .nav-cta {
      background: var(--teal);
      color: var(--navy) !important;
      padding: .45rem 1.1rem;
      border-radius: 6px;
      font-weight: 600 !important;
    }

    .nav-cta:hover {
      background: var(--teal2) !important;
      color: var(--white) !important;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a6e 100%);
      padding: 80px 1% 0px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(0, 197, 161, .12) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(245, 166, 35, .08) 0%, transparent 50%);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(0, 197, 161, .15);
      color: #AED928;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 20px;
      border: 1px solid rgba(0, 197, 161, .3);
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      font-family: sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: .5rem;
    }

   .hero h1 .accent {
    color: #AED928;
}

    .hero h1 .sub {
      font-size: .6em;
      font-weight: 400;
      color: rgba(255, 255, 255, .6);
      display: block;
      margin-top: .3rem;
    }

    .hero-desc {
      color: rgba(255, 255, 255, .7);
      font-size: 20px;
      margin: 1.2rem 0 2rem;
      max-width: 480px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-bottom: 2rem;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: .4rem;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 6px;
      padding: .3rem .75rem;
      color: rgba(255, 255, 255, .8);
      font-size: 16px;
      font-weight: 500;
    }

    .badge .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #AED928;
      color: var(--navy);
      padding: .75rem 1.75rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: .9rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .2s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #AED928;
      transform: translateY(-1px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: .75rem 1.75rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: .9rem;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, .35);
      cursor: pointer;
      transition: all .2s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
    }

    /* hero info card */
    .hero-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .13);
      border-radius: 16px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }

    .hero-card h3 {
      font-family: sans-serif;
      color: var(--white);
      font-size: 30px;
      margin-bottom: 1.2rem;
      padding-bottom: .8rem;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .info-row {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      padding: .65rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .info-row:last-child {
      border-bottom: none;
    }

    .info-icon {
      font-size: 1.1rem;
      margin-top: .05rem;
      flex-shrink: 0;
    }

    .info-label {
      font-size: 18px;
      color: rgba(255, 255, 255, .45);
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .info-val {
      color: rgba(255, 255, 255, .9);
      font-size: 17px;
      font-weight: 500;
    }

    .info-val .pill {
      display: inline-block;
      background: rgba(0, 197, 161, .2);
      color: var(--teal);
      border-radius: 4px;
      padding: .1rem .5rem;
      font-size: .78rem;
      margin-right: .3rem;
    }

    /* ── STATS STRIP ── */
    .stats-strip {
      background: var(--amber);
      padding: 1rem 5%;
    }

    .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .stat-item {
      text-align: center;
      padding: .5rem 0;
    }

    .stat-num {
      font-family: sans-serif;
      font-weight: 800;
      font-size: 21px;
      color: var(--navy);
      display: block;
    }

    .stat-lbl {
      font-size: .73rem;
      font-weight: 600;
      color: rgba(11, 28, 63, .7);
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    /* ── SECTIONS COMMON ── */
    .section {
      padding: 80px 5%;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #b75536;
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: .75rem;
    }

    .section-eyebrow::before {
      content: '';
      display: block;
     /* width: 24px;*/
      height: 2px;
      background: #b75536;
    }

    .section-title {
      font-family: sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
    }

    .section-title em {
      font-style: normal;
      color: #b75536;
    }

    .section-lead {
      color: #060708;
      font-size: 20px;
      max-width: 900px;
      margin-top: .75rem;
    }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .about-features {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

   

    .feature-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .feature-text {
    font-size: 18px;
    color: #030406;
}

    .about-right {}

    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .highlight-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.4rem;
      transition: box-shadow .2s, transform .2s;
    }

    .highlight-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
      transform: translateY(-2px);
    }

    .highlight-card .hc-icon {
      font-size: 1.8rem;
      margin-bottom: .7rem;
    }

    .highlight-card h4 {
      font-family: sans-serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .4rem;
    }

  .highlight-card p {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
}

    /* ── OUTCOMES ── */
    .outcomes-section {
      background: var(--navy);
    }

    .outcomes-section .section-title {
      color: var(--white);
    }

    .outcomes-section .section-lead {
      color: rgba(255, 255, 255, .6);
    }

    .outcomes-section .section-eyebrow {
      color: var(--teal);
    }

    .outcomes-section .section-eyebrow::before {
      background: var(--teal);
    }

    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .outcome-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 14px;
      padding: 2rem;
    }

    .outcome-card h3 {
      font-family: sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #b75536;
      margin-bottom: 1.2rem;
      padding-bottom: .75rem;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .outcome-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .outcome-list li {
      font-size: 20px;
      color: rgba(255, 255, 255, .75);
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      line-height: 1.5;
    }

    .outcome-list li::before {
      content: '▹';
      color: var(--teal);
      flex-shrink: 0;
      font-size: 20px;
    }

    /* ── HIGHLIGHTS ── */
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .prog-highlight {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem;
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      transition: border-color .2s, box-shadow .2s;
    }

    .prog-highlight:hover {
      border-color: var(--teal);
      box-shadow: 0 6px 20px rgba(0, 197, 161, .1);
    }

    .ph-icon {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--teal), var(--teal2));
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .ph-content h4 {
      font-family: sans-serif;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .4rem;
    }

    .ph-content p {
      font-size: 18px;
      color: #000000;
      line-height: 1.5;
    }

    /* ── STRUCTURE ── */
    .structure-section {
      background: var(--slate);
    }

    .semester-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .semester-card {
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .semester-head {
      background: var(--navy);
      color: var(--white);
      padding: .75rem 1.25rem;
      font-family: sans-serif;
      font-weight: 700;
      font-size: 20px;
      display: flex;
      align-items: center;
      gap: .6rem;
    }

    .semester-head .sem-num {
      background: var(--teal);
      color: var(--navy);
      border-radius: 4px;
      padding: .1rem .5rem;
      font-size: 20px;
      font-weight: 800;
    }

    .semester-subjects {
      list-style: none;
      padding: 1rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .semester-subjects li {
      font-size: 20px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .35rem .5rem;
      border-radius: 6px;
      transition: background .15s;
    }

    .semester-subjects li:hover {
      background: var(--slate);
    }

    .semester-subjects li::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    /* ── LABS ── */
    .labs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .lab-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }

    .lab-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
    }

    .lab-head {
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      padding: 1.25rem;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .lab-head .lab-icon {
      font-size: 1.5rem;
    }

    .lab-head h4 {
      font-family: sans-serif;
      font-weight: 700;
      font-size: 20px;
    }

    .lab-body {
      padding: 1.25rem;
      background: var(--card-bg);
    }

   .lab-body p {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
}

    /* ── CAREER ── */
    .career-section {
      background: var(--navy);
    }

    .career-section .section-title {
      color: var(--white);
    }

    .career-section .section-eyebrow {
      color: var(--teal);
    }

    .career-section .section-eyebrow::before {
      background: var(--teal);
    }

    .career-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .career-col h4 {
      font-family: sans-serif;
      font-weight: 700;
      font-size: .85rem;
      color: var(--amber);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      padding-bottom: .5rem;
      border-bottom: 2px solid rgba(245, 166, 35, .3);
    }

    .career-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem;
    }

    .career-col li {
      font-size: 16px;
      color: rgba(255, 255, 255, .75);
      display: flex;
      align-items: center;
      gap: .55rem;
    }

    .career-col li::before {
      content: '→';
      color: var(--teal);
      font-size: 16px;
      flex-shrink: 0;
    }

    /* ── FAQ ── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-top: 2.5rem;
      max-width: 800px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.1rem 1.4rem;
      font-size: 18px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: sans-serif;
      transition: background .15s;
    }

    .faq-q:hover {
      background: var(--slate);
    }

    .faq-q .arrow {
      transition: transform .25s;
      font-size: .85rem;
      color: var(--teal);
    }

    .faq-item.open .faq-q {
      background: var(--slate);
    }

    .faq-item.open .arrow {
      transform: rotate(180deg);
    }

    .faq-a {
      display: none;
      padding: 0 1.4rem 1.1rem;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.6;
      background: var(--slate);
    }

    .faq-item.open .faq-a {
      display: block;
    }

    /* ── ENQUIRY FORM ── */
    .enquiry-section {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
      padding: 80px 5%;
      position: relative;
      overflow: hidden;
    }

    .enquiry-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(0, 197, 161, .15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, .08) 0%, transparent 50%);
    }

    .enquiry-inner {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 4rem;
      align-items: start;
    }

    .enquiry-left .section-title {
      color: var(--white);
    }

    .enquiry-left .section-eyebrow {
      color: var(--teal);
    }

    .enquiry-left .section-eyebrow::before {
      background: var(--teal);
    }

    .enquiry-left p {
      color: rgba(255, 255, 255, .65);
      font-size: 20px;
      margin-top: 1rem;
      line-height: 1.7;
    }

    .contact-chips {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-top: 2rem;
    }

    .contact-chip {
      display: flex;
      align-items: center;
      gap: .85rem;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 10px;
      padding: .85rem 1.1rem;
    }

    .contact-chip .cc-icon {
      font-size: 1.2rem;
    }

    .contact-chip .cc-text span {
      display: block;
      font-size: 18px;
      color: rgba(255, 255, 255, .45);
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .contact-chip .cc-text strong {
      color: var(--white);
      font-size: 17px;
    }

   

    /* ── FOOTER ── */
   footer {
    background: #07112a;
    padding: 20px 3% 20px;
    color: rgba(255, 255, 255, .6);
}

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-brand .logo {
      font-family: sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: .75rem;
    }

    .footer-brand .logo span {
      color: var(--teal);
    }

    .footer-brand p {
      font-size: 20px;
      line-height: 1.6;
      max-width: 260px;
    }

    .footer-col h5 {
      font-weight: 700;
      color: var(--white);
      font-size: 17px;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .footer-col li a {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      font-size: 20px;
      transition: color .2s;
    }

    .footer-col li a:hover {
      color: var(--teal);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .hero-card {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .outcomes-grid {
        grid-template-columns: 1fr;
      }

      .labs-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .career-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .enquiry-inner {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }

      .stats-inner {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      nav {
        padding: 0 4%;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 50px 0% 40px;
      }

      .section {
        padding: 50px 4%;
      }

      .highlights-grid {
        grid-template-columns: 1fr;
      }

      .semester-grid {
        grid-template-columns: 1fr;
      }

      .labs-grid {
        grid-template-columns: 1fr;
      }

      .about-highlights {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
      }

      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }

      .enquiry-section {
        padding: 50px 4%;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.75rem;
      }

      .hero-btns {
        flex-direction: column;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
      }
    }



    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 40px;
      background: #03163d;
      color: #fff;
    }

    .nav-logo {
      font-weight: 700;
    }

    .nav-logo span {
      color: #00d1b2;
    }

    /* desktop menu */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 35px;
      align-items: center;
    }

    .nav-links a {
      color: #d9d9d9;
      text-decoration: none;
      font-size: 18px;
    }

    .nav-cta {
      background: #AED928;
      color: #03163d;
      padding: 6px 16px;
      border-radius: 4px;
    }

    /* toggle button default: desktop me hide */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
    }

    /* MOBILE STYLES */
    @media (max-width: 768px) {
      nav {
        padding: 8px 16px;
      }

      .nav-toggle {
        display: block;
        /* mobile me hamburger show */
      }

      .nav-links {
        position: absolute;
        top: 56px;
        right: 0;
        left: 0;
        background: #03163d;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
        display: none;
        /* by default hide */
      }

      .nav-links.show {
        display: flex;
        /* toggle hone par show */
      }
    }

    .nav-cta {
      display: inherit;
    }
	
	.cc-text a {text-decoration:none!important;color:#fff;}

    .nav-cta1 {
      display: none;
    }

    @media (max-width: 600px) {
		.prog-highlight {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 19px 0px 0px 10px;
   
}
.item-text {
    font-size: 17px;
    color: #333d38;
    margin: 0;
    line-height: 1.4;
}
.section-lead {
    color: #060708;
    font-size: 16px;
    max-width: 900px;
    margin-top: .75rem;
}
.section-title {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 28px;
}
.outcome-card h3 {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 700;
    
}
.eligibility-label {
    color: rgb(0 0 0);
    font-size: 17px;
}
.ph-content p {
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
}
.faq-q {
    
    font-size: 16px;
    font-weight: 600;
  
}
		.outcome-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 10px;
}
.section-inner {
    /* max-width: 1200px; */
    margin: 0px 0px 0px 10px;
}
      .nav-cta1 {
        background: #00d1b2 !important;
        color: #03163d;
        padding: 6px 5px;
        border-radius: 4px;
        display: inherit;
      }

      .nav-cta {
        display: none;
      }

      .nav-cta1 a {
        background: #00d1b2 !important;
        color: #03163d;
        padding: 0px 5px;
        border-radius: 4px;
        text-decoration: none
      }

      .form-card {
        background: var(--white);
        border-radius: 20px;
        padding: 9px;

      }
	  .contact-chip .cc-text strong {
    color: var(--white);
    font-size: 14px;
}
.contact-chip .cc-text span {
    display: block;
    font-size: 15px;
    
}
    }









*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --lime: #AACC00;
    --lime-dark: #8AAA00;
    --navy: #0A1628;
    --navy-mid: #0D1F3C;
    --white: #FFFFFF;
    --border-radius: 10px;
  }

  body {
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    display: block;
  }

  /* dark overlay to keep text readable */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
     
    z-index: 1;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  /* ── TOP BAR ── */
 



  .nav-links a:hover { opacity: 1; color: var(--lime); }

  .nav-cta {
    background: var(--lime);
    color: var(--navy) !important;
    padding: 8px 20px;
    border-radius: 4px;
    opacity: 1 !important;
  }

  /* ── MAIN CONTENT ── */
  .main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
   /* gap: 40px;*/
    align-items: center;
   /* padding: 40px 48px 20px;*/
  }

  

  /* CTA buttons */
  .cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary {
    background: var(--lime);
    color: var(--navy);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .btn-primary:hover { background: #c8f000; transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 13px 28px;
    border: 2px solid var(--white);
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
  }

  /* Feature icons row */
  .features-row {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
  }

 .feature-item {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      padding: .9rem 1.1rem;
      background: var(--card-bg);
      border-radius: 10px;
      border-left: 3px solid var(--teal);
    }

    .feature-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .feature-text {
    font-size: 18px;
    color: #030406;
}

  /* ── RIGHT COLUMN – ENQUIRY FORM ── */
 /* ── RIGHT COLUMN – ENQUIRY FORM ── */
  .enquiry-form-wrapper {
    background: rgb(49 52 57 / 50%);
    border: 1px solid rgba(170, 204, 0, 0.35);
    border-radius: 14px;
    padding: 20px 13px;
    backdrop-filter: blur(12px);
  }

  .form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
  }

  .form-accent-bar {
    width: 4px;
    height: 32px;
    background: var(--lime);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .form-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
  }

  .form-subtitle {
    color: var(--lime);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
    padding-left: 16px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
    opacity: 0.80;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06) !important; /* Force transparent background */
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    padding: 11px 14px;
    color: #fff !important; /* Force text color to remain white */
    -webkit-text-fill-color: #fff !important;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none; /* Removes default browser styling for selects */
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AACC00' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-position: right 14px center !important;
    background-repeat: no-repeat !important;
    padding-right: 36px;
    cursor: pointer;
  }

  .form-group select option {
    background: #0D1F3C;
    color: #fff !important;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-group textarea {
    resize: none;
    height: 72px;
  }

  .form-submit {
    width: 100%;
    background: var(--lime);
    color: var(--navy);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .form-submit:hover {
    background: #c8f000;
    transform: translateY(-1px);
  }

  .form-submit svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .form-privacy {
    color: rgba(255,255,255,0.40);
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* Input text color */
  .form-group input,
  .form-group textarea,
  .form-group select {
    color: #fff !important;
  }

  /* Placeholder color */
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255,255,255,0.7) !important;
    opacity: 1;
  }

  /* Autofill और Selection के बाद भी वाइट टेक्स्ट और बैकग्राउंड ट्रांसपेरेंट रखने के लिए फिक्स */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  select {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s; /* Prevents chrome autofill yellow/blue background */
  }

  /* Focus होने पर भी कलर न बदले */
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    color: #fff !important;
    background: rgba(255,255,255,0.06) !important;
    -webkit-text-fill-color: #fff !important;
  }

  @media (max-width: 1024px) {
    .main-content { grid-template-columns: 1fr; padding: 32px 24px 16px; }
    .enquiry-form-wrapper { max-width: 560px; }
    .top-bar { padding: 14px 24px; }
    .nav-links { display: none; }
    .stats-bar { padding: 14px 24px; flex-wrap: wrap; gap: 12px; }
    .stat-divider { display: none; }
  }

  /* ── NEW TOGGLE LINK STYLES ── */
  .form-toggle-wrapper {
    text-align: center;
    margin-top: 15px;
  }
  .form-toggle-link {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .form-toggle-link span {
    color: var(--lime, #AACC00);
    text-decoration: underline;
  }
  .form-toggle-link:hover span {
    color: #c8f000;
  }
  
  /* form start    */
  

  /* form End    */
  
  
