
    :root {
      --navy: #07111f;
      --navy2: #0d1b2e;
      --blue: #12355b;
      --gold: #c9a646;
      --gold2: #f1d884;
      --white: #ffffff;
      --offwhite: #f5f7fa;
      --text: #172033;
      --muted: #64748b;
      --border: #d9e1ec;
      --shadow: 0 18px 50px rgba(7,17,31,0.14);
      --radius: 18px;
      --whatsapp: #25D366;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Segoe UI", Arial, sans-serif;
      background: var(--offwhite);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    section {
      padding: 75px 6%;
    }

    .container {
      max-width: 1180px;
      margin: auto;
    }

    .section-label {
      text-align: center;
      color: var(--gold);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.82rem;
      margin-bottom: 10px;
    }

    .section-title {
      text-align: center;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 850px;
      margin: 0 auto 42px;
      font-size: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 20px;
      border-radius: 10px;
      border: 1px solid transparent;
      background: var(--gold);
      color: var(--navy);
      font-weight: 800;
      transition: 0.3s ease;
      cursor: pointer;
      font-size: 0.95rem;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(201,166,70,0.28);
      background: var(--gold2);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.35);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      color: var(--white);
      box-shadow: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(7,17,31,0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.09);
      padding: 12px 6%;
    }

    .nav-wrap {
      max-width: 1220px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand img {
      width: 46px;
      height: 46px;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.25);
    }

    .brand-text {
      color: var(--white);
      font-weight: 900;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      font-size: 1rem;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    nav a {
      color: rgba(255,255,255,0.82);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      font-size: 0.84rem;
    }

    nav a:hover {
      color: var(--gold2);
    }

    .menu-btn {
      display: none;
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 1.25rem;
    }

    .hero {
      min-height: 78vh;
      background:
        linear-gradient(rgba(7,17,31,0.88), rgba(7,17,31,0.82)),
        radial-gradient(circle at top left, rgba(201,166,70,0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(18,53,91,0.65), transparent 36%),
        var(--navy);
      color: var(--white);
      padding: 75px 6% 55px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 52px 52px;
      opacity: 0.25;
      animation: moveGrid 18s linear infinite;
    }

    @keyframes moveGrid {
      from { transform: translateY(0); }
      to { transform: translateY(52px); }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 45px;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      color: var(--gold2);
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 18px;
      background: rgba(255,255,255,0.06);
    }

    .hero h1 {
      font-size: clamp(2rem, 4.8vw, 4rem);
      line-height: 1.08;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      max-width: 760px;
    }

    .hero h1 span {
      color: var(--gold2);
    }

    .hero-tagline {
      color: rgba(255,255,255,0.78);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 18px;
      font-size: 1rem;
    }

    .hero-text {
      color: rgba(255,255,255,0.78);
      font-size: 1.03rem;
      max-width: 680px;
      margin-bottom: 18px;
    }

    .pan-india-line {
      color: var(--gold2);
      font-weight: 800;
      margin-bottom: 22px;
      letter-spacing: 0.3px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-bottom: 24px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 650px;
    }

    .stat-box {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.07);
      border-radius: 14px;
      padding: 15px;
    }

    .stat-box strong {
      display: block;
      color: var(--gold2);
      font-size: 1.25rem;
      margin-bottom: 2px;
    }

    .stat-box small {
      color: rgba(255,255,255,0.74);
      font-weight: 600;
    }

    .hero-visual {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    }

    .hero-logo {
      width: 190px;
      height: 190px;
      object-fit: cover;
      border-radius: 22px;
      margin: 0 auto 20px;
      border: 1px solid rgba(255,255,255,0.22);
    }

    .service-live-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 18px;
      padding: 22px;
      min-height: 190px;
    }

    .service-live-card h3 {
      color: var(--gold2);
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .service-live-card p {
      color: rgba(255,255,255,0.78);
    }

    .slider-dots {
      display: flex;
      gap: 7px;
      margin-top: 18px;
    }

    .slider-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.28);
    }

    .slider-dots span.active {
      background: var(--gold2);
    }

    .services {
      background: var(--offwhite);
    }

    .service-section {
      margin-bottom: 40px;
    }

    .service-heading-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }

    .service-heading-row h3 {
      color: var(--navy);
      font-size: clamp(1.45rem, 3vw, 2rem);
    }

    .service-heading-row p {
      color: var(--muted);
      max-width: 540px;
    }

    .service-slider {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .service-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .service-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      background: var(--white);
    }

    .slide-left {
      background:
        linear-gradient(135deg, rgba(7,17,31,0.95), rgba(18,53,91,0.94)),
        radial-gradient(circle at top right, rgba(201,166,70,0.25), transparent 45%);
      color: var(--white);
      padding: 42px;
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .slide-icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

    .slide-left h4 {
      font-size: clamp(1.45rem, 3vw, 2.2rem);
      line-height: 1.18;
      margin-bottom: 13px;
    }

    .slide-left p {
      color: rgba(255,255,255,0.78);
    }

    .slide-right {
      padding: 42px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .slide-right h5 {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
      font-size: 0.85rem;
    }

    .slide-right ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-bottom: 25px;
    }

    .slide-right li {
      padding-left: 30px;
      position: relative;
      color: var(--text);
      font-weight: 600;
    }

    .slide-right li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 900;
    }

    .service-controls {
      display: flex;
      gap: 10px;
      position: absolute;
      right: 22px;
      bottom: 22px;
    }

    .control-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--navy);
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .it-services {
      background:
        linear-gradient(135deg, #07111f 0%, #0d1b2e 48%, #12355b 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .it-services::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(201,166,70,0.24), transparent 26%),
        radial-gradient(circle at 82% 72%, rgba(255,255,255,0.11), transparent 26%);
    }

    .it-services .container {
      position: relative;
      z-index: 2;
    }

    .it-services .section-title {
      color: var(--white);
    }

    .it-services .section-subtitle {
      color: rgba(255,255,255,0.72);
    }

    .it-main-card {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
      margin-bottom: 24px;
    }

    .it-intro {
      padding: 34px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 24px;
      background: rgba(255,255,255,0.08);
      box-shadow: 0 28px 80px rgba(0,0,0,0.26);
    }

    .it-intro h3 {
      color: var(--gold2);
      font-size: clamp(1.7rem, 3vw, 2.45rem);
      line-height: 1.15;
      margin-bottom: 15px;
    }

    .it-intro p {
      color: rgba(255,255,255,0.78);
      margin-bottom: 18px;
    }

    .it-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0;
    }

    .it-badge {
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.86);
      font-weight: 700;
      font-size: 0.86rem;
    }

    .it-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .it-card {
      padding: 22px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      transition: 0.3s ease;
    }

    .it-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.12);
    }

    .it-card span {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(201,166,70,0.18);
      color: var(--gold2);
      font-size: 1.45rem;
      margin-bottom: 13px;
      border: 1px solid rgba(201,166,70,0.25);
    }

    .it-card h4 {
      color: var(--white);
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    .it-card p {
      color: rgba(255,255,255,0.7);
      font-size: 0.94rem;
    }

    .it-note {
      margin-top: 24px;
      padding: 22px;
      border-radius: 18px;
      background: rgba(201,166,70,0.12);
      border: 1px solid rgba(201,166,70,0.22);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }

    .it-note p {
      color: rgba(255,255,255,0.82);
      margin: 0;
    }

    .about {
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: stretch;
    }

    .info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .info-card.dark {
      background: var(--navy);
      color: var(--white);
      border-color: transparent;
    }

    .info-card h3 {
      font-size: 1.45rem;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .info-card.dark h3 {
      color: var(--gold2);
    }

    .info-card p {
      color: var(--muted);
      margin-bottom: 14px;
    }

    .info-card.dark p {
      color: rgba(255,255,255,0.75);
    }

    .msme-box {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 17px;
      border-radius: 15px;
      background: #f7f9fc;
      border: 1px solid var(--border);
      margin-top: 20px;
    }

    .msme-box img {
      width: 78px;
      height: 78px;
      object-fit: contain;
      background: var(--white);
      border-radius: 12px;
      padding: 8px;
      border: 1px solid var(--border);
    }

    .domain-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 13px;
      margin-top: 18px;
    }

    .domain-item {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      padding: 14px;
      border-radius: 12px;
      color: rgba(255,255,255,0.88);
      font-weight: 600;
    }

    .request {
      background: #f1f5f9;
    }

    .request-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .request-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 10px 30px rgba(7,17,31,0.08);
    }

    .request-card span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--navy);
      color: var(--gold2);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .request-card h3 {
      color: var(--navy);
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .request-card p {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .gallery {
      background: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item {
      min-height: 240px;
      border-radius: var(--radius);
      border: 1px dashed var(--border);
      background: linear-gradient(135deg, #f8fafc, #e8eef6);
      display: grid;
      place-items: center;
      color: var(--muted);
      font-weight: 800;
      text-align: center;
      padding: 20px;
    }

    .contact {
      background: linear-gradient(135deg, rgba(7,17,31,0.97), rgba(18,53,91,0.96));
      color: var(--white);
    }

    .contact .section-title {
      color: var(--white);
    }

    .contact .section-subtitle {
      color: rgba(255,255,255,0.72);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
    }

    .contact-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius);
      padding: 30px;
    }

    .contact-item {
      padding: 16px;
      border-radius: 14px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 14px;
    }

    .contact-item h3 {
      color: var(--gold2);
      margin-bottom: 5px;
    }

    .contact-item p {
      color: rgba(255,255,255,0.75);
      word-break: break-word;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 15px;
    }

    .social-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.16);
      color: var(--white);
      transition: 0.3s ease;
    }

    .social-icon:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-3px);
    }

    .social-icon svg {
      width: 21px;
      height: 21px;
      fill: currentColor;
    }

    form {
      display: grid;
      gap: 14px;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.09);
      color: var(--white);
      font-family: inherit;
      font-size: 1rem;
      outline: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255,255,255,0.62);
    }

    select option {
      background: var(--navy);
      color: var(--white);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--gold2);
    }

    .legal {
      background: #06101e;
      color: var(--white);
    }

    .legal .section-title {
      color: var(--white);
    }

    .legal-box {
      max-width: 1050px;
      margin: auto;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 30px;
    }

    .legal-box p {
      color: rgba(255,255,255,0.73);
      margin-bottom: 16px;
    }

    .legal-box strong {
      color: var(--gold2);
    }

    footer {
      background: #030912;
      color: rgba(255,255,255,0.7);
      text-align: center;
      padding: 34px 6%;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 14px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.78);
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--gold2);
    }

    .whatsapp-float {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 60px;
      height: 60px;
      background: var(--whatsapp);
      border-radius: 50%;
      display: grid;
      place-items: center;
      z-index: 9999;
      box-shadow: 0 14px 32px rgba(0,0,0,0.28);
      animation: whatsappPulse 1.8s infinite;
    }

    .whatsapp-float svg {
      width: 32px;
      height: 32px;
      fill: var(--white);
    }

    @keyframes whatsappPulse {
      0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
      70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
      100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: 0.65s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .hero-inner,
      .about-grid,
      .contact-grid,
      .it-main-card {
        grid-template-columns: 1fr;
      }

      .request-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: auto;
      }

      .service-slide {
        grid-template-columns: 1fr;
      }

      .slide-left {
        min-height: auto;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 62px 5%;
      }

      header {
        padding: 10px 5%;
      }

      .brand img {
        width: 42px;
        height: 42px;
      }

      .brand-text {
        font-size: 0.82rem;
      }

      .menu-btn {
        display: block;
      }

      nav {
        position: absolute;
        left: 5%;
        right: 5%;
        top: 68px;
        display: none;
        flex-direction: column;
        background: rgba(7,17,31,0.98);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 15px;
        overflow: hidden;
      }

      nav.active {
        display: flex;
      }

      nav a {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }

      nav a:last-child {
        border-bottom: none;
      }

      .hero {
        min-height: auto;
        padding-top: 55px;
      }

      .hero h1 {
        font-size: 2.35rem;
      }

      .hero-logo {
        width: 135px;
        height: 135px;
      }

      .hero-stats,
      .request-grid,
      .gallery-grid,
      .domain-grid,
      .it-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .it-note .btn {
        width: 100%;
      }

      .service-heading-row {
        display: block;
      }

      .service-heading-row h3 {
        margin-bottom: 8px;
      }

      .slide-left,
      .slide-right {
        padding: 28px;
      }

      .service-controls {
        position: static;
        padding: 0 28px 28px;
      }

      .msme-box,
      .it-note {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.8px;
      }

      .section-title {
        font-size: 1.85rem;
      }

      .contact-card,
      .info-card,
      .legal-box,
      .it-intro {
        padding: 22px;
      }

      .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 15px;
        bottom: 15px;
      }
    }

    /* Board Members Section - Added without changing existing design */
    .board-members {
      background: var(--offwhite);
    }

    .board-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .board-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: 190px 1fr;
      min-height: 100%;
    }

    .board-photo-wrap {
      background: linear-gradient(135deg, rgba(7,17,31,0.96), rgba(18,53,91,0.94));
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .board-photo {
      width: 148px;
      height: 178px;
      object-fit: cover;
      border-radius: 16px;
      border: 3px solid rgba(241,216,132,0.82);
      box-shadow: 0 18px 35px rgba(0,0,0,0.28);
      background: var(--white);
    }

    .board-content {
      padding: 28px;
    }

    .board-role {
      display: inline-flex;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(201,166,70,0.14);
      color: var(--gold);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-size: 0.78rem;
      margin-bottom: 12px;
    }

    .board-content h3 {
      color: var(--navy);
      font-size: 1.45rem;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .board-designation {
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .board-id-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 16px;
    }

    .board-id-item {
      padding: 12px;
      border-radius: 12px;
      background: #f7f9fc;
      border: 1px solid var(--border);
    }

    .board-id-item span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 3px;
    }

    .board-id-item strong {
      color: var(--navy);
      font-size: 0.95rem;
    }

    .board-points {
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .board-points li {
      position: relative;
      padding-left: 26px;
      color: var(--text);
      font-weight: 600;
    }

    .board-points li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold);
      font-weight: 900;
    }

    @media (max-width: 1024px) {
      .board-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .board-card {
        grid-template-columns: 1fr;
      }

      .board-photo-wrap {
        padding: 26px 22px 12px;
      }

      .board-content {
        padding: 22px;
      }

      .board-id-grid {
        grid-template-columns: 1fr;
      }
    }

  

/* Multi Page Additions - same design system */
.page-hero { min-height: 52vh; background: linear-gradient(rgba(7,17,31,0.90), rgba(7,17,31,0.84)), radial-gradient(circle at top left, rgba(201,166,70,0.25), transparent 35%), radial-gradient(circle at bottom right, rgba(18,53,91,0.65), transparent 36%), var(--navy); color: var(--white); padding: 75px 6% 60px; display:flex; align-items:center; position:relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size:52px 52px; opacity:.25; animation:moveGrid 18s linear infinite; }
.page-hero .container { position:relative; z-index:2; }
.page-hero h1 { font-size:clamp(2rem,4.8vw,3.7rem); line-height:1.08; letter-spacing:-1.3px; margin-bottom:16px; max-width:850px; }
.page-hero h1 span { color:var(--gold2); }
.page-hero p { color:rgba(255,255,255,.78); font-size:1.05rem; max-width:780px; margin-bottom:22px; }
.page-actions { display:flex; flex-wrap:wrap; gap:13px; }
.service-choice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-choice-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow); transition:.3s ease; min-height:100%; display:flex; flex-direction:column; }
.service-choice-card:hover { transform:translateY(-6px); }
.service-choice-card .icon { width:62px; height:62px; border-radius:18px; display:grid; place-items:center; background:var(--navy); color:var(--gold2); font-size:1.7rem; margin-bottom:18px; }
.service-choice-card h3 { color:var(--navy); font-size:1.35rem; margin-bottom:10px; }
.service-choice-card p { color:var(--muted); margin-bottom:18px; }
.service-choice-card .btn { margin-top:auto; }
.full-page-section { background:var(--offwhite); }
.details-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:26px; }
.detail-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:24px; box-shadow:0 10px 30px rgba(7,17,31,0.08); }
.detail-card span { width:42px; height:42px; display:grid; place-items:center; border-radius:12px; background:var(--navy); color:var(--gold2); font-weight:900; margin-bottom:14px; }
.detail-card h3 { color:var(--navy); margin-bottom:8px; font-size:1.08rem; }
.detail-card p { color:var(--muted); font-size:.94rem; }
.form-page { background:linear-gradient(135deg, rgba(7,17,31,0.97), rgba(18,53,91,0.96)); color:var(--white); }
.form-page .section-title { color:var(--white); }
.form-page .section-subtitle { color:rgba(255,255,255,.72); }
.thankyou-card { max-width:850px; margin:0 auto; text-align:center; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); border-radius:24px; padding:45px; box-shadow:0 30px 80px rgba(0,0,0,0.25); }
.thankyou-card h1 { color:var(--gold2); font-size:clamp(2rem,4vw,3.2rem); line-height:1.1; margin-bottom:18px; }
.thankyou-card p { color:rgba(255,255,255,.78); font-size:1.05rem; margin-bottom:24px; }
@media(max-width:1024px){ .service-choice-grid,.details-grid { grid-template-columns:1fr; } }
