    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #F8F9F7;
      --green: #0F6B3A;
      --charcoal: #2E3238;
      --red: #9B1C1C;
      --white: #ffffff;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--charcoal);
      line-height: 1.7;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 0 15px;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 30px rgba(46, 50, 56, 0.08);
      border-bottom: 1px solid rgba(15, 107, 58, 0.1);
      backdrop-filter: blur(10px);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 130px;
      padding: 0;
    }

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease-in-out;
      padding-right: 24px;
      flex-shrink: 0;
    }

    .logo img {
      width: 220px;
      height: auto;
      max-height: 108px;
      object-fit: contain;
      background: white;
      padding: 4px;
      border: 1px solid rgba(15, 107, 58, 0.12);
      border-radius: 2px;
      box-shadow: 0 4px 14px rgba(46, 50, 56, 0.10);
      transition: all 0.3s ease-in-out;
    }

    .logo:hover img {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(15, 107, 58, 0.22);
    }

    .logo span {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--charcoal);
      font-size: 15px;
      font-weight: 600;
      transition: all 0.3s ease;
      padding: 10px 16px;
      display: block;
      letter-spacing: 0.1px;
      border-radius: 999px;
    }

    .nav-links a:hover {
      color: var(--red);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 16px;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: calc(100% - 32px);
    }

    /* Hamburger Menu Toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
    }

    .nav-toggle span {
      width: 25px;
      height: 3px;
      background: var(--charcoal);
      transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
      min-height: 100vh;
      background:
        linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.62)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      margin-top: 130px;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.72), rgba(0,0,0,0.3));
    }

    .hero-content {
      max-width: 760px;
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-size: 22px;
      font-weight: 500;
      color: white;
      margin-top: -4px;
      margin-bottom: 20px;
    }

    .hero-subtitle {
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #888888;
      margin-bottom: 16px;
      font-size: 14px;
    }

    .hero h1 {
      text-shadow: 0 10px 30px rgba(0,0,0,0.35);
      font-family: 'Poppins', sans-serif;
      font-size: 64px;
      line-height: 1.1;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .hero p {
      font-size: 18px;
      color: #d7d7d7;
      margin-bottom: 28px;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
      padding: 15px 32px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: 0.3s;
      display: inline-block;
    }

    .btn-primary {
      box-shadow: 0 10px 25px rgba(15,107,58,0.25);
      background: var(--green);
      color: white;
    }

    .btn-primary:hover {
      background: #084d28;
      transform: translateY(-2px);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.4);
      color: white;
    }

    .btn-secondary:hover {
      border-color: white;
      background: rgba(255,255,255,0.08);
    }

    .stats {
      margin-top: -30px;
      position: relative;
      z-index: 5;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px;
      align-items: stretch;
    }

    .stat-card {
      background: linear-gradient(145deg, #ffffff, #f4f7f4);
      padding: 32px 28px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.08);
      border-top: 4px solid var(--green);
      position: relative;
      overflow: hidden;
      transition: 0.35s;
      border-radius: 10px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      width: 140px;
      height: 140px;
      background: rgba(15,107,58,0.05);
      border-radius: 50%;
      top: -40px;
      right: -40px;
    }

    .stat-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

    .stat-card h2 {
      color: var(--green);
      font-size: clamp(44px, 3.6vw, 52px);
      line-height: 1;
      margin-bottom: 14px;
      font-family: 'Poppins', sans-serif;
      position: relative;
      z-index: 2;
      max-width: 100%;
      overflow-wrap: anywhere;
    }

    .stat-card p {
      font-size: 16px;
      font-weight: 600;
      color: var(--charcoal);
      position: relative;
      z-index: 2;
      max-width: 260px;
    }

    .stat-label {
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #888888;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }

    section {
      padding: 40px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 38px;
      color: var(--green);
      font-family: 'Poppins', sans-serif;
      margin-bottom: 12px;
    }

    .section-title::after {
      content: '';
      width: 80px;
      height: 3px;
      background: var(--red);
      display: block;
      margin: 18px auto 0;
    }

    .vision-content {
      max-width: 950px;
      margin: auto;
      text-align: center;
      font-size: 18px;
      color: var(--charcoal);
    }

    .vision-content p:first-child {
      margin-bottom: 26px;
    }

    .services {
      background: white;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 30px;
      margin-top: 20px;
    }

    .service-description {
      margin-top: 16px;
      color: var(--charcoal);
    }

    .service-card {
      background: var(--bg);
      padding: 36px 28px;
      text-decoration: none;
      color: var(--charcoal);
      border: 1px solid #d9d9d9;
      transition: 0.35s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--green);
    }

    .service-card:hover {
      border-color: rgba(15,107,58,0.2);
      transform: translateY(-8px);
      box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

    .service-card h3 {
      position: relative;
      padding-bottom: 18px;
      font-size: 24px;
      line-height: 1.4;
      transition: 0.3s;
      font-family: 'Poppins', sans-serif;
    }

     .approach{
      background: linear-gradient(135deg, var(--charcoal), var(--charcoal));
      color: white;
    }

    .approach-wrapper{
      max-width:950px;
      margin:auto;
      text-align:center;
    }

    .approach-wrapper h2{
      font-size:48px;
      margin-bottom:26px;
      font-family:'Poppins',sans-serif;
    }

    .approach-wrapper p{
      font-size:19px;
      color:#c9ccc0;
      margin-bottom:40px;
    }

    .approach-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:24px;
      margin-top:40px;
    }

    .approach-card{
      background: rgba(255,255,255,0.05);
      padding: 32px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      text-align: left;
      color: white;
    }

    .approach-card h3{
      color:#79d9a4;
      margin-bottom:12px;
      font-size:22px;
      font-family:'Poppins',sans-serif;
    }

    .infrastructure {
      position: relative;
      background: linear-gradient(to bottom, #eef2ef, #f8f9f7);
    }

    .infra-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .infra-image {
      position: relative;
    }

    .infra-image::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border: 2px solid rgba(15,107,58,0.15);
      top: 18px;
      left: 18px;
      border-radius: 8px;
    }

    .infra-image img {
      width: 100%;
      border-radius: 6px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .infra-content h2 {
      font-size: 38px;
      margin-bottom: 18px;
      color: var(--green);
      font-family: 'Poppins', sans-serif;
    }

    .infra-content p {
      margin-bottom: 32px;
      font-size: 18px;
    }

    .cta {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal) 100%);
      text-align: center;
      color: white;
    }

    .cta h2 {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      font-size: 42px;
      margin-bottom: 24px;
      font-family: 'Poppins', sans-serif;
      line-height: 1.3;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.05);
      background: #1a1e22;
      color: #d5d5d5;
      padding: 44px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr 1.15fr 0.85fr;
      gap: 42px;
    }

    footer h3,
    footer h4 {
      color: white;
      margin-bottom: 16px;
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
    }

    footer ul {
      list-style: none;
    }

    footer li {
      margin-bottom: 8px;
      font-size: 14px;
    }

    footer a {
      color: #d5d5d5;
      text-decoration: none;
    }

    footer a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
      flex-shrink: 0;
    }

    /* Hide the text labels — icon only */
    .social-link span {
      display: none;
    }

    .social-link svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .social-link:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.08);
    }

    .youtube-link {
      color: #ff4b4b;
    }

    .youtube-link:hover {
      color: #ff6b6b;
    }

    .linkedin-link {
      color: #0a66c2;
    }

    .linkedin-link:hover {
      color: #0955a3;
    }

    .whatsapp {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1100;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: #25D366;
      color: white;
      text-decoration: none;
      font-size: 0;
      border-radius: 50%;
      border: 3px solid white;
      box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38), 0 4px 14px rgba(0,0,0,0.18);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .whatsapp::before {
      display: none;
    }

    .whatsapp svg {
      width: 26px;
      height: 26px;
      fill: white;
      display: block;
    }

    .whatsapp:hover {
      background: #1EBE5D;
      transform: translateY(-5px) scale(1.04);
      box-shadow: 0 18px 42px rgba(37, 211, 102, 0.46), 0 10px 24px rgba(0,0,0,0.26);
    }

    .whatsapp:focus-visible {
      outline: 3px solid rgba(15,107,58,0.4);
      outline-offset: 4px;
    }

    /* ============================================
       RESPONSIVE UTILITY CLASSES (Reusable across all pages)
       ============================================ */

    /* Responsive Text Classes */
    .text-responsive-lg {
      font-size: 44px;
    }

    .text-responsive-md {
      font-size: 32px;
    }

    .text-responsive-sm {
      font-size: 20px;
    }

    /* Responsive Grid */
    .grid-auto {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    /* Responsive Flexbox */
    .flex-responsive {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* Responsive Padding */
    .p-responsive {
      padding: 60px 20px;
    }

    /* Responsive Margin */
    .m-responsive {
      margin: 30px auto;
    }

    /* Hide/Show Classes */
    .hide-mobile {
      display: block;
    }

    .show-mobile {
      display: none;
    }

    /* Image Responsiveness */
    img {
      max-width: 100%;
      height: auto;
    }

    /* ============================================
       TABLET BREAKPOINT (768px - 1024px)
       ============================================ */
    @media (max-width: 1024px) {
      .text-responsive-lg {
        font-size: 38px;
      }

      .text-responsive-md {
        font-size: 28px;
      }

      .text-responsive-sm {
        font-size: 18px;
      }

      .container {
        width: 92%;
      }

      /* Header & Navigation */
      .navbar {
        min-height: 116px;
        padding: 0;
      }

      .logo img {
        width: 190px;
        max-height: 96px;
      }

      .logo:hover img {
        transform: scale(1.03);
      }

      .nav-links {
        gap: 4px;
      }

      .nav-links a {
        font-size: 14px;
        padding: 9px 13px;
      }

      

      /* Hero Section */
      .hero {
        margin-top: 116px;
        min-height: 80vh;
      }

      .hero-content {
        max-width: 600px;
      }

      .hero h1 {
        font-size: 48px;
        margin-bottom: 14px;
      }

      .hero p {
        font-size: 18px;
        margin-bottom: 32px;
      }

      /* Stats Grid */
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: -70px;
      }

      .stat-card {
        padding: 35px 28px;
        min-height: auto;
      }

      .stat-card h2 {
        font-size: clamp(36px, 5vw, 42px);
      }

      /* Sections */
      section {
        padding: 36px 0;
      }

      .section-title {
        margin-bottom: 50px;
      }

      .section-title h2 {
        font-size: 32px;
      }

      .vision-content {
        max-width: 800px;
        font-size: 18px;
      }

      /* Services Grid */
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .service-card {
        padding: 35px 28px;
      }

      .service-card h3 {
        font-size: 22px;
      }

      /* Infrastructure Section */
      .infra-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
      }

      .infra-image::before {
        top: 12px;
        left: 12px;
      }

      .infra-content h2 {
        font-size: 38px;
        margin-bottom: 20px;
      }

      .infra-content p {
        font-size: 16px;
        margin-bottom: 28px;
      }

      /* CTA Section */
      .cta h2 {
        font-size: 42px;
        margin-bottom: 25px;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      footer {
        padding: 44px 0 28px;
      }

      /* WhatsApp Button */
      .whatsapp {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
      }
    }

    /* ============================================
       MOBILE BREAKPOINT (< 768px)
       ============================================ */
    @media (max-width: 768px) {
      .text-responsive-lg {
        font-size: 28px;
      }

      .text-responsive-md {
        font-size: 22px;
      }

      .text-responsive-sm {
        font-size: 16px;
      }

      .hide-mobile {
        display: none;
      }

      .show-mobile {
        display: block;
      }

      .grid-auto {
        grid-template-columns: 1fr;
      }

      .p-responsive {
        padding: 40px 20px;
      }

      body {
        font-size: 14px;
      }

      .container {
        width: 94%;
      }

      /* Header & Navigation */
      header {
        padding: 0 20px;
      }

      .navbar {
        min-height: 96px;
        padding: 0;
      }

      .logo {
        padding-right: 12px;
      }

      .logo img {
        width: 140px;
        max-height: 78px;
        padding: 3px;
      }

      .logo:hover img {
        transform: scale(1.03);
      }

      .nav-links {
        display: none;
        gap: 0;
        position: absolute;
        top: 96px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #d9d9d9;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links li {
        position: relative;
        width: 100%;
      }

      .nav-links a {
        display: block;
        padding: 16px 20px !important;
        font-size: 15px;
      }

      .nav-links a::after {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      /* Hero Section */
      .hero {
        margin-top: 96px;
        min-height: 60vh;
        background-attachment: scroll;
      }

      .hero-content {
        max-width: 100%;
      }

      .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
      }

      .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 16px;
      }

      .hero p {
        font-size: 16px;
        margin-bottom: 24px;
      }

      .hero-buttons {
        gap: 12px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
      }

      /* Stats Section */
      .stats {
        margin-top: -50px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -50px;
      }

      .stat-card {
        padding: 28px 20px;
        min-height: auto;
        border-top-width: 3px;
      }

      .stat-card::before {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
      }

      .stat-card h2 {
        font-size: 36px;
        margin-bottom: 12px;
      }

      .stat-card p {
        font-size: 15px;
        max-width: 100%;
      }

      /* Sections */
      section {
        padding: 28px 0;
      }

      .section-title {
        margin-bottom: 40px;
      }

      .section-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
      }

      .section-title::after {
        width: 60px;
        height: 2px;
        margin-top: 14px;
      }

      .vision-content {
        max-width: 100%;
        font-size: 16px;
      }

      .vision-content p:first-child {
        margin-bottom: 18px;
      }

      /* Services Grid */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .service-card {
        padding: 28px 20px;
      }

      .service-card h3 {
        font-size: 20px;
        padding-bottom: 14px;
      }

      .service-card p {
        font-size: 14px;
        margin-top: 12px !important;
      }

      /* Infrastructure Section */
      .infrastructure {
        padding: 60px 0;
      }

      .infra-grid {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .infra-image {
        order: 2;
      }

      .infra-image::before {
        top: 8px;
        left: 8px;
      }

      .infra-content {
        order: 1;
      }

      .infra-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
      }

      .infra-content p {
        font-size: 15px;
        margin-bottom: 24px;
      }

      /* CTA Section */
      .cta {
        padding: 60px 0;
      }

      .cta h2 {
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 1.3;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      footer {
        padding: 36px 0 24px;
      }

      footer h3,
      footer h4 {
        font-size: 16px;
        margin-bottom: 16px;
      }

      footer p,
      footer li {
        font-size: 14px;
        margin-bottom: 10px;
      }

      /* WhatsApp Button */
      .whatsapp {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
      }
    }

    /* ============================================
       SMALL MOBILE BREAKPOINT (< 480px)
       ============================================ */
    @media (max-width: 480px) {
      .container {
        width: 95%;
      }

      header {
        padding: 0 15px;
      }

      .navbar {
        min-height: 82px;
        padding: 0;
      }

      .logo img {
        width: 112px;
        max-height: 64px;
        padding: 3px;
      }

      .logo:hover img {
        transform: scale(1.03);
      }

      .nav-links {
        top: 82px;
      }

      .hero {
        margin-top: 82px;
        min-height: 55vh;
      }

      .hero-subtitle {
        font-size: 11px;
      }

      .hero h1 {
        font-size: 28px;
        margin-bottom: 14px;
      }

      .hero p {
        font-size: 14px;
        margin-bottom: 20px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 10px 18px;
        font-size: 13px;
        flex: 1;
        text-align: center;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .section-title h2 {
        font-size: 24px;
      }

      .stat-card h2 {
        font-size: 32px;
      }

      .service-card h3 {
        font-size: 18px;
      }

      .infra-content h2 {
        font-size: 24px;
      }

      .cta h2 {
        font-size: 22px;
      }

      .whatsapp {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
      }

      .whatsapp::before {
        width: 24px;
        height: 24px;
      }

    }

    /* ============================================
       PAGE-SPECIFIC STYLES (About, Services, Contact, Leadership)
       ============================================ */

    .page-banner {
      height: 55vh;
      margin-top: 130px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('../images/photo-1494412574643-ff11b0a5c1c3.avif') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
      padding: 60px 0;
    }

    .page-banner h1 {
      font-size: 68px;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 20px;
    }

    .page-banner p {
      max-width: 800px;
      margin: auto;
      font-size: 20px;
      color: #d7d7d7;
    }

    /* About Page Specific */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-image img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

    .about-content h2 {
      font-size: 46px;
      line-height: 1.2;
      margin-bottom: 28px;
      font-family: 'Poppins', sans-serif;
      color: var(--charcoal);
    }

    .about-content p {
      margin-bottom: 22px;
      color: var(--charcoal);
      font-size: 18px;
    }

    .what-we-do {
      background: white;
    }

    /* Services Page Specific */
    .service-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 48px;
    }

    .service-section.reverse .service-image {
      order: 2;
    }

    .service-section.reverse .service-content {
      order: 1;
    }

    .service-image img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 20px 55px rgba(0,0,0,0.12);
    }

    .service-tag {
      display: inline-block;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .service-content h2 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 24px;
      font-family: 'Poppins', sans-serif;
      color: var(--charcoal);
    }

    .service-content p {
      font-size: 18px;
      color: var(--charcoal);
      margin-bottom: 28px;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      margin-bottom: 16px;
      padding-left: 30px;
      position: relative;
      color: var(--charcoal);
      font-weight: 500;
    }

    .service-list li::before {
      content: '▸';
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--green);
      font-size: 16px;
      line-height: 1.7;
    }

    .highlight-section {
      background: linear-gradient(135deg, var(--charcoal), var(--charcoal));
      color: white;
      text-align: center;
    }

    .highlight-section h2 {
      font-size: 50px;
      margin-bottom: 24px;
      font-family: 'Poppins', sans-serif;
    }

    .highlight-section p {
      max-width: 850px;
      margin: auto;
      color: #c9ccc0;
      font-size: 19px;
    }

    .cta-box {
      margin-top: 50px;
    }

    /* Contact Page Specific */
    .contact-grid {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 70px;
      align-items: start;
    }

    .contact-info {
      background: linear-gradient(135deg, var(--charcoal), var(--charcoal));
      padding: 50px;
      border-radius: 14px;
      color: white;
      position: sticky;
      top: 120px;
    }

    .contact-info h2 {
      font-size: 42px;
      margin-bottom: 18px;
      font-family: 'Poppins', sans-serif;
    }

    .contact-info p {
      color: #c9ccc0;
      margin-bottom: 34px;
    }

    .info-box {
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .info-box:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .info-box h3 {
      color: #79d9a4;
      margin-bottom: 12px;
      font-size: 20px;
      font-family: 'Poppins', sans-serif;
    }

    .contact-form-wrapper {
      background: white;
      padding: 60px;
      border-radius: 14px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    }

    .form-title {
      margin-bottom: 40px;
    }

    .form-title h2 {
      font-size: 46px;
      margin-bottom: 16px;
      color: var(--green);
      font-family: 'Poppins', sans-serif;
    }

    .form-title p {
      color: var(--charcoal);
      font-size: 18px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group.full {
      grid-column: 1/-1;
    }

    label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--charcoal);
    }

    input,
    textarea {
      width: 100%;
      padding: 16px 18px;
      border: 1px solid #dfe4df;
      border-radius: 6px;
      background: var(--bg);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      transition: 0.3s;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: var(--green);
      background: white;
    }

    textarea {
      min-height: 160px;
      resize: vertical;
    }

    .map-section {
      padding-top: 0;
    }

    .map-wrapper {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 20px 55px rgba(0,0,0,0.08);
    }

    .map-wrapper iframe {
      width: 100%;
      height: 480px;
      border: 0;
    }

    /* Leadership Page Specific */
    .leadership-wrapper {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 80px;
      align-items: center;
    }

    .leader-image {
      position: relative;
    }

    .leader-image::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border: 2px solid rgba(15,107,58,0.15);
      top: 20px;
      left: 20px;
      border-radius: 12px;
    }

    .leader-image img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center top;
      border-radius: 12px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.12);
      position: relative;
      z-index: 2;
    }

    .leader-tag {
      display: inline-block;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .leadership-content h2 {
      font-size: 56px;
      line-height: 1.15;
      margin-bottom: 14px;
      font-family: 'Poppins', sans-serif;
      color: var(--charcoal);
    }

    .designation {
      font-size: 20px;
      color: var(--green);
      font-weight: 600;
      margin-bottom: 28px;
    }

    .leadership-content p {
      font-size: 18px;
      color: var(--charcoal);
      margin-bottom: 22px;
    }

    .why-section {
      background: white;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 24px;
    }

    .why-card {
      background: var(--bg);
      padding: 42px 28px;
      border-radius: 12px;
      text-align: center;
      border-top: 4px solid var(--green);
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: 0.35s;
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    }

    .why-card h3 {
      font-size: 22px;
      line-height: 1.4;
      font-family: 'Poppins', sans-serif;
      color: var(--charcoal);
    }

    /* ============================================
       PAGE-SPECIFIC RESPONSIVE (About, Services, Contact, Leadership)
       ============================================ */

    @media (max-width: 992px) {
      .about-grid,
      .approach-grid,
      .service-section,
      .contact-grid,
      .leadership-wrapper,
      .why-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      /* On mobile, constrain & center the leader photo */
      .leader-image {
        max-width: 320px;
        margin: 0 auto;
      }

      .leader-image::before {
        top: 12px;
        left: 12px;
      }

      .service-section.reverse .service-image,
      .service-section.reverse .service-content {
        order: unset;
      }

      .contact-info {
        position: relative;
        top: auto;
      }

      .page-banner h1 {
        font-size: 54px;
      }

      .page-banner {
        margin-top: 116px;
      }

      .why-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .approach-card {
        padding: 28px;
      }
    }

    @media (max-width: 768px) {
      .page-banner h1,
      .service-content h2,
      .highlight-section h2,
      .form-title h2 {
        font-size: 38px;
      }

      .contact-form-wrapper,
      .contact-info {
        padding: 36px;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .approach-grid {
        gap: 16px;
      }

      .approach-wrapper {
        text-align: left;
      }

      .approach-wrapper h2 {
        font-size: 38px;
      }

      .approach-wrapper p {
        font-size: 16px;
      }

      .approach-card {
        padding: 24px;
      }

      .approach-card h3 {
        font-size: 19px;
      }

      .page-banner {
        margin-top: 96px;
        padding: 40px 0;
      }
    }

    @media (max-width: 480px) {
      .page-banner h1 {
        font-size: 32px;
      }

      .page-banner {
        margin-top: 82px;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .leadership-wrapper,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-form-wrapper,
      .contact-info {
        padding: 24px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }
    }
  
