/**
 * Board of Directors landing page styles
 * CSS variables (--bod-cover-image, etc.) are defined in templates/board-of-directors.php
 */

/* Cinematic staggered scroll reveal */
   
   
   
   /* Universal Responsive Fixes */
    * {
      box-sizing: border-box;
    }
    
    body {
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }
    
    h2.about-title{
      font-family: 'GCGatuzoDemo', sans-serif !important;
    }
    .container-fluid, .container {
      max-width: 100%;
    }
    
    .row {
      margin-left: 0;
      margin-right: 0;
    }
    
    [class*="col-"] {
      padding-left: 15px;
      padding-right: 15px;
    }
    
    /* Ensure images don't overflow */
    img {
      max-width: 100%;
      height: auto;
    }
    
     /* Enhanced responsive utilities */
     .d-none-mobile {
       display: block;
     }
     
     .d-block-mobile {
       display: none;
     }
     
     /* Ensure tags are visible on desktop and tablet */
     .experts-badge {
       display: block;
     }
     
     @media (max-width: 768px) {
       .d-none-mobile {
         display: none;
       }
       
       .d-block-mobile {
         display: block;
       }
       
       /* Hide tags on mobile */
       .experts-badge {
         display: none !important;
       }
     }
    
    /* Smooth scrolling + prevent horizontal overflow without nested scrollbars */
    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }
    
    body {
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }
    
    /* Enhanced container responsiveness */
    .container-fluid {
      width: 100%;
      max-width: 100%;
    }

    .section-title {
    margin: 0;
    padding: 22px 25px 24px 0px !important;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    color: #323336;
    border-left: #323336 2px solid;
  }
    
    /* Enhanced Mobile-first responsive utilities */
    @media (max-width: 1200px) {
      .container, .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
      }
    }
    
    @media (max-width: 992px) {
      .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
      }
      
      [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
      }
    }
    
    @media (max-width: 768px) {
      .container, .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
      }
      
      [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
      }
    }
    
    @media (max-width: 576px) {
      .container, .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
      }
      
      [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
      }
    }
    
    @media (max-width: 480px) {
      .container, .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
      }
      
      [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
      }
    }
    
    /* Hero Section Styles */
    .hero-section {
      background: var(--bod-cover-image);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 0 60px 0;
      font-family: 'Inter', sans-serif;
      background-color: #E8FAF0;
      overflow: hidden;
    }
    .whtieGradient{
      background-image: var(--bod-white-gradient);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 60px 0;
    }
    
    .hero-section-container{
      text-align: center; 
      font-size: 72px; 
      font-weight: 600; 
      line-height: 1.3; 
      letter-spacing: -2px; 
      padding-bottom: 20px;
      font-family: 'Inter', sans-serif;
      color: #000000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .hero-line-1 {
      display: block;
      line-height: 1.2;
      margin-bottom: 0;
      text-align: center;
    }

    .hero-line-2 {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      line-height: 1.2;
      margin-top: 0;
      text-align: center;
    }

    .hero-rotated-logo {
      max-width: 300px;
      width: auto;
      height: auto;
      max-height: 200px;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      /* transform: rotate(180deg); */
    }

    .around-text {
      color: #000000 !important;
      display: inline-block;
      vertical-align: middle;
    }

    .hero-section-container-2{
      text-align: center; 
      font-size: 24px; 
      font-weight: 400; 
      line-height: 1.3; 
      letter-spacing: 0px; 
      padding-bottom: 15px;
      font-family: 'Inter', sans-serif;
      color: #000000;
      margin: 0;
    }

    .hero-section-container-3{
      text-align: center; 
      font-size: 18px; 
      font-weight: 400; 
      line-height: 1.3; 
      letter-spacing: 0px; 
      padding-bottom: 0;
      font-family: 'Inter', sans-serif;
      color: #000000;
      margin: 0;
    }

    /* About Company Section Styles */
    .about-company-section {
      position: relative;
      overflow: hidden;
      background: #ffffff;
      padding: 100px 0 110px;
      font-family: 'Inter', sans-serif;
    }

    .about-company-bg {
      position: absolute;
      top: 50%;
      width: min(38vw, 520px);
      height: min(92vh, 680px);
      transform: translateY(-50%);
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: center;
      pointer-events: none;
      z-index: 0;
      opacity: 1;
      filter: contrast(1.35) brightness(0.85);
    }

    .about-company-bg--left {
      left: -2%;
      background-image: var(--bod-about-bg-left);
      background-position: left center;
    }

    .about-company-bg--right {
      right: -2%;
      background-image: var(--bod-about-bg-right);
      background-position: right center;
    }

    .about-company-section .container {
      position: relative;
      z-index: 1;
    }

    .about-company-section:not(.about-company-section-2) .about-content {
      text-align: center;
      margin: 0 auto;
      max-width: 80%;
    }

    .about-company-section:not(.about-company-section-2) .about-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 3px !important;
      color: #059669;
      margin: 0 0 30px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .about-title {
      font-family: 'GCGatuzoDemo', sans-serif !important;
    }

    .about-company-section:not(.about-company-section-2) .about-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 500;
      line-height: 1.15;
      margin: 0 0 28px;
      letter-spacing: -0.02em !important;
      padding-bottom: 0;
    }

    .about-company-section:not(.about-company-section-2) .about-title-dark {
      color: #161C29;
    }

    .about-company-section:not(.about-company-section-2) .about-title-accent {
      color: #059669;
    }

    .about-company-section:not(.about-company-section-2) .about-description {
      font-size: 16px;
      font-weight: 400;
      color: #304F40;
      line-height: 1.4;
      margin: 0 auto;
      text-align: center;
      letter-spacing: 0 !important;
      max-width: 100%;
    }

    .about-company-section-2 {
      background: #ffffff;
      padding: 80px 0;
      font-family: 'Inter', sans-serif;
    }

    /* Bring your ambition */
    .bring-your-ambition-section {
      position: relative;
      overflow: hidden;
      background: #ffffff;
      padding: 100px 0 110px;
      font-family: 'Inter', sans-serif;
    }

    .bring-your-ambition-section .container {
      position: relative;
      z-index: 1;
    }

    .bring-your-ambition-header-col {
      position: relative;
    }

    .bring-your-ambition-bg {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      width: 100%;
      height: min(28vw, 240px);
      transform: translateY(-50%);
      background-image: var(--bod-what-makes-overlay);
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center center;
      pointer-events: none;
      z-index: 0;
      opacity: 1;
      filter: contrast(1.35) brightness(0.85);
    }

    .bring-your-ambition-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 15px;
    }

    .bring-your-ambition-text {
      font-family: 'Inter', sans-serif;
      font-size: 32px;
      font-weight: 500;
      color: #223A2E;
      line-height: 1.4;
      margin: 0 0 36px;
      max-width: 100%;
    }

    .bring-your-ambition-title {
      font-size: 46px;
      font-weight: 500;
      line-height: 1.4;
      color: #059669 !important;
      margin: 0 0 36px;
      letter-spacing: -0.1px !important;
      padding: 0;
    }

    .bring-your-ambition-btn {
      display: inline-block;
      background: #059669;
      color: #ffffff;
      border: none;
      padding: 14px 32px;
      border-radius: 9999px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .bring-your-ambition-btn:hover,
    .bring-your-ambition-btn:focus {
      background: #047857;
      color: #ffffff;
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
    }

    /* Our Mission */
    .our-mission-section {
      position: relative;
      overflow: hidden;
      background: #fafafa;
      padding: 100px 0 110px;
      font-family: 'Inter', sans-serif;
    }

    .our-mission-section .container {
      position: relative;
      z-index: 1;
    }

    .our-mission-bg {
      position: absolute;
      top: 0;
      right: 0;
      width: min(220px, 28vw);
      height: min(320px, 42vw);
      background-image: var(--bod-mission-overlay);
      background-repeat: no-repeat;
      background-position: top right;
      background-size: contain;
      pointer-events: none;
      z-index: 0;
      opacity: 1;
    }

    .our-mission-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 0 15px;
    }

    .our-mission-heading {
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 500;
      line-height: 1.15;
      margin: 0 0 32px;
      letter-spacing: -0.02em !important;
      padding: 0;
      color: inherit;
    }

    .our-mission-heading-dark {
      color: #161C29;
      font-family: var(--GCGatuzoDemo-font-family)!important;
      font-weight: 500;
      line-height: 1.4;
      font-size: 46px;
    }

    .our-mission-heading-accent {
      color: #059669;
      font-family: var(--GCGatuzoDemo-font-family)!important;
      font-weight: 500;
      line-height: 1.4;
      font-size: 46px;
    }

    .our-mission-text {
      font-family: 'Inter', sans-serif;
      font-size: 22px;
      font-weight: 400;
      color: #545F58;
      line-height: 1.4;
      margin: 0 auto;
      max-width: 100%;
    }

    /* What makes us different — overlay header (mirrors ABOUT XELPMOC) */
    .what-makes-different-section {
      position: relative;
      overflow: hidden;
      background: #fafafa;
      padding: 100px 0 80px;
      font-family: 'Inter', sans-serif;
    }

    .what-makes-different-header-col {
      position: relative;
    }

    .what-makes-different-bg {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      width: 100%;
      height: min(28vw, 240px);
      transform: translateY(-50%);
      background-image: var(--bod-what-makes-overlay);
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: center center;
      pointer-events: none;
      z-index: 0;
      opacity: 1;
      filter: contrast(1.35) brightness(0.85);
    }

    .what-makes-different-section .container {
      position: relative;
      z-index: 1;
    }

    #companies-section .what-makes-different-header {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin: 0 auto 56px;
      max-width: 820px;
      width: 100%;
      padding: 0 15px;
      z-index: 1;
    }

    .what-makes-different-header .what-makes-eyebrow,
    .what-makes-different-header .what-makes-us-different-title,
    .what-makes-different-header .what-makes-us-different-description {
      position: relative;
      z-index: 1;
    }

    .what-makes-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      letter-spacing: 3px !important;
      color: #059669;
      margin: 0 0 30px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .what-makes-different-header .about-title-dark {
      color: #161C29;
    }

    .what-makes-different-header .about-title-accent {
      color: #059669;
    }

    .what-makes-different-header .what-makes-us-different-title {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 500;
      line-height: 1.15;
      margin: 0 0 28px;
      letter-spacing: -0.02em !important;
      padding: 0;
      text-align: center;
      color: inherit;
      width: 100%;
    }

    .what-makes-different-header .what-makes-us-different-description {
      font-size: 17px;
      font-weight: 400;
      color: #545F58;
      line-height: 1.7;
      margin: 0;
      text-align: center;
      letter-spacing: 0 !important;
      max-width: 720px;
      width: 100%;
    }

    .what-makes-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: flex-start;
      align-items: stretch;
      margin: 0;
      padding: 0;
      width: 100%;
    }

    .what-makes-card {
      flex: 1 1 calc(33.333% - 16px);
      max-width: calc(33.333% - 16px);
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
      padding: 40px 28px 36px;
      text-align: center;
    }

    .what-makes-card__title {
      font-family: var(--GCGatuzoDemo-font-family)!important;
      font-size: 22px;
      font-weight: 600;
      color: #059669;
      margin: 0 0 20px;
      line-height: 1.4;
      text-align: center;
    }

    .what-makes-card__description {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: #304F40;
      line-height: 1.4;
      letter-spacing: 0 !important;
      margin: 0 0 28px;
      text-align: center;
    }

    .what-makes-card__features {
      list-style: disc;
      list-style-position: outside;
      margin: 0;
      padding-left: 20px;
      display: block;
      width: 100%;
      text-align: left;
    }

    .what-makes-card__features li {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: #545F58;
      line-height: 1.8;
      margin: 0;
    }

    @media (max-width: 992px) {
      .what-makes-card {
        flex: 1 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
      }
    }

    @media (max-width: 768px) {
      .what-makes-card {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    .justify-space-between{
      display: flex;
      justify-content: space-between;
      margin: 0;
      padding: 0;
    }

    /* what makes us different */
    .what-makes-us-different-section {
      font-size: 18px;
      font-weight: 400;
      color: #545F58;
      line-height: 1.6;
    }

    .what-makes-us-different-title{
      font-size: 48px;
      font-weight: 500;
      color: #2c3e50;
      margin: 0;
      padding: 5px 0px 30px 0px;
      letter-spacing: -3px !important;
    }

    .what-makes-us-different-title-2{
      font-size: 48px;
      font-weight: 300;
      color: #2c3e50;
      margin: 0;
      padding: 80px 0px 80px 0px;
      line-height: 1.5;
      letter-spacing: -3px !important;
      text-align: center;
    }

    .what-makes-us-different-description {
      font-size: 18px;
      font-weight: 400;
      color: #545F58;
      line-height: 1.6;
      letter-spacing: 0px !important;
    }

    /* selection box */
    ::selection {
      background-color: #059669;
      color: #ffffff;
    }

    /* ::selection {
      background-color: #065F46;
      color: #ffffff;
    }

    ::selection {
      background-color: #EFA790;
      color: #ffffff;
    } */

    
    /* Responsive styles for what makes us different section */
    @media (max-width: 1200px) {
      .what-makes-us-different-title {
        font-size: 42px;
        padding: 5px 0px 25px 0px;
      }
      
      .what-makes-us-different-title-2 {
        font-size: 42px;
        padding: 60px 0px 60px 0px;
      }
      
      .what-makes-us-different-description {
        font-size: 17px;
        letter-spacing: 0px !important;
      }
    }
    
    @media (max-width: 992px) {
      .what-makes-us-different-title {
        font-size: 36px;
        padding: 5px 0px 20px 0px;
      }
      
      .what-makes-us-different-title-2 {
        font-size: 36px;
        padding: 50px 0px 50px 0px;
      }
      
      .what-makes-us-different-description {
        font-size: 16px;
      }
    }
    
    @media (max-width: 768px) {
      .what-makes-us-different-title {
        font-size: 32px;
        padding: 5px 0px 15px 0px;
        text-align: center;
      }
      
      .what-makes-us-different-title-2 {
        font-size: 28px;
        padding: 40px 15px 40px 15px;
        line-height: 1.5;
        letter-spacing: -0.5px !important;
        word-spacing: 2px;
      }
      
      .what-makes-us-different-description {
        font-size: 15px;
        text-align: center;
        padding: 0 15px;
      }
    }
    
    @media (max-width: 576px) {
      .what-makes-us-different-title {
        font-size: 28px;
        padding: 5px 0px 15px 0px;
        text-align: center;
      }
      
      .what-makes-us-different-title-2 {
        font-size: 22px;
        padding: 30px 10px 30px 10px;
        line-height: 1.5;
        letter-spacing: 0px !important;
        word-spacing: 3px;
      }
      
      .what-makes-us-different-description {
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
      }
    }
    
    @media (max-width: 480px) {
      .what-makes-us-different-title {
        font-size: 24px;
        padding: 5px 0px 10px 0px;
        text-align: center;
      }
      
      .what-makes-us-different-title-2 {
        font-size: 18px;
        padding: 25px 8px 25px 8px;
        line-height: 1.6;
        letter-spacing: 0.2px !important;
        word-spacing: 3px;
      }
      
      .what-makes-us-different-description {
        font-size: 13px;
        text-align: center;
        padding: 0 8px;
      }
    }

    .what-makes-us-different-description{
      font-size: 18px;
      font-weight: 400;
      color: #545F58;
      line-height: 1.6;
    }
    
    .hero-tabs {
      /* background: rgba(255, 255, 255, 0.95); */
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
      /* backdrop-filter: blur(10px); */
      border-radius: 15px;
      padding: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .tech-futurists-title{
      color: #ffffff !important; 
      font-weight: 400; 
      text-align: center; 
      font-weight: 300; 
      font-size: 54px !important; 
      line-height: 140%; 
      letter-spacing: -3px !important;
      padding: 80px 0px 80px 0px;
    }
    
    /* Enhanced Tech futurists responsive styles */
    @media (max-width: 1200px) {
      .tech-futurists-section {
        min-height: 80vh;
        padding: 50px 0;
      }
      
      .tech-futurists-title {
        font-size: 48px !important;
        padding: 0 20px;
        letter-spacing: -2.5px;
      }
    }
    
    @media (max-width: 992px) {
      .tech-futurists-section {
        min-height: 70vh;
        padding: 45px 0;
      }
      
      .tech-futurists-title {
        font-size: 42px !important;
        padding: 0 15px;
        letter-spacing: -2px;
      }
    }
    
    @media (max-width: 768px) {
      .tech-futurists-section {
        min-height: auto !important;
        padding: 40px 0 !important;
      }
      
      .tech-futurists-title {
        font-size: 36px !important;
        padding: 0 15px;
        letter-spacing: -2px;
        line-height: 1.3;
      }
    }
    
    @media (max-width: 576px) {
      .tech-futurists-section {
        padding: 30px 0 !important;
      }
      
      .tech-futurists-title {
        font-size: 28px !important;
        padding: 0 10px;
        letter-spacing: -0.3px !important;
        line-height: 1.4;
      }
    }
    
    @media (max-width: 480px) {
      .tech-futurists-section {
        padding: 25px 0 !important;
      }
      
      .tech-futurists-title {
        font-size: 24px !important;
        padding: 0 10px;
        letter-spacing: 0px !important;
        line-height: 1.4;
      }
    }
    
    @media (max-width: 360px) {
      .tech-futurists-title {
        font-size: 20px !important;
        padding: 0 8px;
        letter-spacing: -0.3px;
        line-height: 1.3;
      }
    }
    
    .font-gradient {
      background: linear-gradient(135deg, #065F46, #059669, #EFA790);
      /* background: linear-gradient(135deg, #065F46, #059669, #EFA790); */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }

    .font-style-right{
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      text-align: left;
      text-decoration: underline;
      margin: 12px 0px 30px 0px;
      font-family: 'Inter', sans-serif;
    }

    .underline-text {
      display: inline-block; /* Use inline-block for better control */
      position: relative; /* needed for ::after positioning */
      white-space: nowrap; /* Prevent text wrapping */
      width: fit-content; /* Ensure width matches content exactly */
    }

    .underline-text::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;   /* gap (like text-underline-offset) */
      width: 100%;    /* same as text width */
      height: 3px;    /* underline thickness */
      background: linear-gradient(135deg, #065F46, #059669, #EFA790);
    }

    .hero-tabs .nav-tabs {
      border: none;
      margin-bottom: 30px;
    }
    
    .hero-tabs .nav-tabs > li > a {
      border: none;
      background: transparent;
      color: #666;
      font-weight: 600;
      padding: 15px 25px;
      margin-right: 10px;
      border-radius: 25px;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .hero-tabs .nav-tabs > li > a:hover {
      background: #f8f9fa;
      color: #333;
      border: none;
    }
    
    .hero-tabs .nav-tabs > li.active > a,
    .hero-tabs .nav-tabs > li.active > a:hover,
    .hero-tabs .nav-tabs > li.active > a:focus {
      /* background: linear-gradient(45deg, #667eea, #764ba2);
      color: white;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
      border: none; */

      background: linear-gradient(135deg, #065F46, #059669, #EFA790);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent; 
    }
    .tab-pane {
      background-color: transparent !important;
    }

    .hero-tabs .tab-content {
      flex: 1;
      width: 100%;
      min-height: 400px;
      padding: 10px;
      position: relative;
    }
    
     .hero-tabs .tab-pane {
       width: 100%;
       height: 100%;
       min-height: 380px;
       position: absolute;
       top: 0;
       left: 0;
       padding: 0px 50px 0px 50px;
       opacity: 0;
       transition: opacity 0.8s ease-in-out;
     }
     
     .hero-tabs .tab-pane.active {
       opacity: 1;
     }
     
     .hero-tabs .tab-pane.in {
       opacity: 1;
     }
    
    .hero-tabs .tab-pane img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      max-height: 380px;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      object-fit: cover;
    }
    
    .hero-tabs .tab-pane img:hover {
      transform: scale(1.05);
    }
    
    .hero-right-column {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      height: 100%;
      padding: 0;
      flex-direction: column;
    }
    
    .hero-right-column img {
      width: 100%;
      height: auto;
      max-height: 400px;
      transition: transform 0.3s ease;
      object-fit: contain;
      margin-top: 20px;
    }
    .border-left{
      border-left: 1px solid #e0e0e0;
      padding-left: 40px;
    }

    .nav-link{
      font-size: 18px !important;
    }
    
    .hero-right-column img:hover {
      transform: scale(1.05);
    }
    
    /* Explore Solutions Button */
    .explore-solutions-btn-container {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 30px;
      width: 100%;
    }
    
    .get-in-touch-btn {
      background: transparent;
      color: #065F46;
      border: 2px solid #065F46;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      transition: all 0.3s ease;
      display: inline-block;
    }
    
    .get-in-touch-btn:hover {
      background: #065F46;
      color: white;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(6, 95, 70, 0.3);
    }
    
    /* Equal height columns */
    .hero-row {
      display: flex;
      align-items: flex-start;
      min-height: 60vh;
      gap: 10px;
      padding: 40px 0;
    }
    
    .hero-row > div {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    
     /* Enhanced Mobile Responsive Styles */
     @media (max-width: 1200px) {
       .hero-section {
         min-height: 80vh;
         padding: 60px 0 40px 0;
       }
       
       .hero-section-container {
         font-size: 60px;
         padding: 0 20px;
       }
       
       .hero-section-container-2 {
         font-size: 22px;
         padding: 0 20px;
       }
       
       .hero-section-container-3 {
         font-size: 17px;
         padding: 0 20px;
       }
     }
     
     @media (max-width: 992px) {
       .hero-section {
         min-height: 70vh;
         padding: 50px 0 30px 0;
       }
       
       .hero-section-container {
         font-size: 48px;
         padding: 0 15px;
       }
       
       .hero-section-container-2 {
         font-size: 20px;
         padding: 0 15px;
       }
       
       .hero-section-container-3 {
         font-size: 16px;
         padding: 0 15px;
       }
       
       .about-company-section {
         padding: 60px 0;
       }
       
       .about-title {
         font-size: 42px;
         margin-bottom: 25px;
       }
       
       .about-description {
         font-size: 16px;
         line-height: 1.4;
       }
     }
     
    @media (max-width: 768px) {
      .hero-section {
        min-height: 60vh;
        padding: 40px 0 20px 0;
      }
      
      .hero-section-container {
        font-size: 36px;
        padding: 0 15px;
        line-height: 1.2;
        letter-spacing: -1px !important;
        gap: 0;
      }

      .hero-line-2 {
        gap: 8px;
      }

      .hero-rotated-logo {
        max-width: 120px;
        max-height: 72px;
      }
      
      .hero-section-container-2 {
        font-size: 18px;
        padding: 0 15px;
        letter-spacing: 0.3px !important;
      }
      
      .hero-section-container-3 {
        font-size: 15px;
        padding: 0 15px;
        letter-spacing: 0.3px !important;
      }

      .about-company-section {
        padding: 50px 0;
      }

      .about-title {
        font-size: 36px;
        margin-bottom: 25px;
        letter-spacing: -1.5px !important;
      }

      .about-description {
        font-size: 16px;
        letter-spacing: 0.2px !important;
      }
      
      .hero-row {
        min-height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
      }
      
      .hero-tabs {
        margin-bottom: 20px;
        padding: 15px;
        height: auto;
      }
      
      .hero-tabs .nav-tabs {
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .hero-tabs .nav-tabs > li {
        flex: 1;
        min-width: 120px;
        text-align: center;
      }
      
      .hero-tabs .nav-tabs > li > a {
        padding: 12px 8px;
        font-size: 13px;
        margin-right: 5px;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
        display: block;
      }
      
      .hero-tabs .tab-content {
        min-height: 250px;
        padding: 10px;
      }
      
      .hero-tabs .tab-pane {
        min-height: 230px;
        padding: 0px 30px 0px 30px !important;
      }
      
      .hero-tabs .tab-pane img {
        border-radius: 8px;
        min-height: 220px;
        max-height: 250px;
        object-fit: cover;
      }
      
      .hero-right-column {
        padding: 0;
        height: auto;
        min-height: 250px;
        align-items: center;
      }
      
      .hero-right-column img {
        border-radius: 8px;
        max-height: 250px;
        object-fit: contain;
        margin-top: 10px;
      }
      
      .explore-solutions-btn-container {
        margin-top: 20px;
      }
      
      .explore-solutions-btn {
        font-size: 14px;
        padding: 10px 20px;
      }
    
     @media (max-width: 576px) {
       .hero-section {
         padding: 30px 0 15px 0;
         min-height: auto;
       }
       
       .hero-section-container {
         font-size: 28px !important;
         padding: 0 15px;
         line-height: 1.2;
         padding-bottom: 15px;
         letter-spacing: -0.5px !important;
         gap: 0;
       }

       .hero-line-2 {
         gap: 6px;
       }

       .hero-rotated-logo {
         max-width: 100px;
         max-height: 60px;
       }
       
       .hero-section-container-2 {
         font-size: 16px !important;
         padding: 0 15px 10px 15px;
         letter-spacing: 0.4px !important;
       }
       
       .hero-section-container-3 {
         font-size: 14px !important;
         padding: 0 15px;
         letter-spacing: 0.4px !important;
       }

       .about-company-section {
         padding: 40px 15px;
       }
       
       .about-company-section-2 {
         padding: 40px 15px;
       }

       .about-content {
         padding: 0 15px;
       }

       .about-subtitle {
         font-size: 16px;
         margin-bottom: 15px;
         letter-spacing: 0.3px !important;
       }

       .about-title {
         font-size: 28px;
         margin-bottom: 20px;
         line-height: 1.3;
         letter-spacing: -1px !important;
       }

       .about-description {
         font-size: 15px;
         line-height: 1.5;
         letter-spacing: 0.3px !important;
       }
       
       .bring-your-ambition-content {
         padding: 40px 0px !important;
       }
       
       .bring-your-ambition-content .about-description {
         width: 100% !important;
         padding: 0 15px 15px 15px !important;
         letter-spacing: 0.3px !important;
       }
       
       .bring-your-ambition-content .about-title {
         font-size: 32px !important;
         letter-spacing: -1px !important;
       }
       
       .bring-your-ambition-content .about-title .font-gradient {
         font-size: 32px !important;
         letter-spacing: -1px !important;
       }
     }
      
      .hero-tabs {
        padding: 10px;
        margin-bottom: 15px;
      }
      
      .hero-tabs .nav-tabs {
        flex-direction: column;
        margin-bottom: 15px;
      }
      
      .hero-tabs .nav-tabs > li {
        width: 100%;
        margin-bottom: 5px;
      }
      
      .hero-tabs .nav-tabs > li > a {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
        text-align: center;
        padding: 10px;
        font-size: 12px;
      }
      
      .hero-tabs .tab-content {
        min-height: 200px;
        padding: 5px;
      }
      
      .hero-tabs .tab-pane {
        min-height: 185px;
        padding: 0px 15px 0px 15px !important;
      }
      
      .hero-tabs .tab-pane img {
        min-height: 180px;
        max-height: 200px;
        border-radius: 6px;
        object-fit: cover;
      }
      
      .hero-right-column {
        padding: 0;
        min-height: 200px;
        align-items: center;
      }
      
      .hero-right-column img {
        max-height: 200px;
        border-radius: 6px;
        object-fit: contain;
        margin-top: 10px;
      }
      
      .explore-solutions-btn-container {
        margin-top: 15px;
      }
      
      .explore-solutions-btn {
        font-size: 13px;
        padding: 8px 16px;
      }
      
      /* .hero-section-container {
        font-size: 24px !important;
        padding: 0 15px;
        line-height: 1.3;
        letter-spacing: -1px;
        font-family: 'Inter', sans-serif;
      }

      .hero-section-container-2 {
        font-size: 16px !important;
        padding: 0 15px;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
      }

      .hero-section-container-3 {
        font-size: 16px !important;
        padding: 0 15px;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
      } */
      
      .font-style-right {
        font-size: 16px !important;
        padding: 0 15px;
        text-align: center !important;
        font-family: 'Inter', sans-serif;
      }
    }
    
     /* Extra small devices (phones, 320px and up) */
     @media (max-width: 480px) {
       .hero-section-container {
         font-size: 20px !important;
         padding: 0 10px;
         letter-spacing: -0.5px;
         font-family: 'Inter', sans-serif;
       }

       .about-company-section {
         padding: 30px 10px;
       }

       .about-content {
         padding: 0 10px;
       }

       .about-subtitle {
         font-size: 14px;
         margin-bottom: 12px;
       }

       .about-title {
         font-size: 24px;
         margin-bottom: 18px;
         line-height: 1.2;
       }

       .about-description {
         font-size: 14px;
         line-height: 1.4;
       }

      /* .hero-section-container-2 {
        font-size: 14px !important;
        padding: 0 10px;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
      }

      .hero-section-container-3 {
        font-size: 14px !important;
        padding: 0 10px;
        line-height: 1.4;
        font-family: 'Inter', sans-serif;
      } */
      
      .font-style-right {
        font-size: 14px !important;
        padding: 0 10px;
        font-family: 'Inter', sans-serif;
      }
      
      .hero-tabs .tab-pane {
        padding: 0px 10px 0px 10px !important;
      }
      
      .border-left {
        border-left: none !important;
        padding-left: 0 !important;
        padding-top: 15px;
      }
      
      .explore-solutions-btn-container {
        margin-top: 10px;
      }
      
      .explore-solutions-btn {
        font-size: 12px;
        padding: 6px 12px;
      }
    }
    
     /* Simple fade animations for tab transitions */
     .hero-tabs .tab-pane img {
       transition: transform 0.3s ease;
     }
    
    /* Smooth tab button transitions */
    .hero-tabs .nav-tabs > li > a {
      transition: all 0.4s ease;
    }
    
    /* Loading indicator for auto-cycling */
    .hero-tabs .nav-tabs > li.active > a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(135deg, #065F46, #059669, #EFA790);
      border-radius: 2px;
      animation: progressBar 4s linear infinite;
    }
    
    @keyframes progressBar {
      from {
        width: 0%;
      }
      to {
        width: 100%;
      }
     }
     
     /* Core Solutions Section Styles */
     .core-solutions-section {
       background-color: #f8f9fa;
       padding: 80px 0;
       margin-top: 0;
     }
     
     .core-solutions-section .section-title {
       font-size: 48px;
       font-weight: 700;
       color: #333;
       text-align: left;
       margin-bottom: 60px;
       line-height: 1.2;
     }
     
     .solutions-block {
       margin-bottom: 60px;
     }
     
     .solutions-block:last-child {
       margin-bottom: 0;
     }
     
     .subsection-title {
       font-size: 32px;
       font-weight: 600;
       color: #333;
       margin-bottom: 15px;
     }
     
     .subsection-description {
       font-size: 16px;
       color: #666;
       margin-bottom: 40px;
       line-height: 1.6;
     }
     
     .solution-card {
       background: white;
       border-radius: 16px;
       padding: 20px;
       margin-bottom: 30px;
       border: 1px solid #E7E8E7;
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       height: 400px;
       display: flex;
       flex-direction: column;
       position: relative;
       overflow: hidden;
       cursor: pointer;
     }
     
     .solution-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background-image: var(--bod-box-gradient);
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: 1;
     }
     
     .solution-card:hover {
       transform: translateY(-4px);
       box-shadow: 0 12px 24px rgba(6, 95, 70, 0.15);
       border-color: rgba(6, 95, 70, 0.2);
     }
     
     .solution-card:hover::before {
       opacity: 1;
     }
     
     .solution-image {
       position: relative;
       z-index: 2;
       margin-bottom: 16px;
       border-radius: 12px;
       overflow: hidden;
       height: auto;
       display: flex;
       align-items: center;
       justify-content: center;
       background: #F8F9FA;
     }
     
     .solution-image img {
       width: 100%;
       height: 100%;
       /* object-fit: contain; */
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       position: relative;
       z-index: 2;
     }
     
     .solution-image::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background-image: var(--bod-box-gradient);
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: 3;
       border-radius: 12px;
     }
     
     .solution-image::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       /* background: linear-gradient(135deg, 
         rgba(6, 95, 70, 0.8) 0%, 
         rgba(5, 150, 105, 0.6) 25%,
         rgba(239, 167, 144, 0.4) 50%,
         rgba(6, 95, 70, 0.8) 75%,
         rgba(5, 150, 105, 0.6) 100%); */
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: 4;
       border-radius: 12px;
       mix-blend-mode: overlay;
     }
     
     .solution-card:hover .solution-image::before,
     .solution-card:hover .solution-image::after {
       opacity: 1;
     }
     
     .solution-card:hover .solution-image img {
       filter: brightness(1) contrast(1);
       transform: translateY(10%); /* move image upward */
       transform-origin: bottom;   /* crop from bottom */
       /* transform: scaleY(0.9);
       transform-origin: center; */
     }

     .solution-image {
        overflow: hidden; /* ensures cropped effect */
      }
     
     .solution-content {
       position: relative;
       z-index: 2;
       flex-grow: 1;
     }
     
     .solution-content h4 {
       font-size: 20px;
       font-weight: 600;
       line-height: 1.3;
       letter-spacing: -0.5px;
       color: #161C29;
       margin-bottom: 6px;
       transition: color 0.4s ease;
     }
     
     /* .solution-card:hover .solution-content h4 {
       color: #065F46;
     } */
     
     .solution-tagline {
       font-size: 14px;
       font-weight: 400;
       line-height: 1.4;
       color: #545F58;
       margin-bottom: 8px;
       transition: color 0.4s ease;
     }
     
     /* .solution-card:hover .solution-tagline {
       color: #065F46;
     } */
     
     .solution-description {
       font-size: 12px;
       font-weight: 400;
       line-height: 1.4;
       color: #6C6C6C;
       margin-bottom: 12px;
       opacity: 0;
       max-height: 0;
       overflow: hidden;
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     }
     
     .solution-card:hover .solution-description {
       opacity: 1;
       max-height: 60px;
       margin-bottom: 12px;
     }
     
     .solution-link {
       display: inline-flex;
       align-items: center;
       gap: 4px;
       color: #065F46;
       text-decoration: none;
       font-size: 14px;
       font-weight: 700;
       opacity: 0;
       transform: translateY(8px);
       transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     }
     
     .solution-card:hover .solution-link {
       opacity: 1;
       transform: translateY(0);
     }
     
     .solution-link:hover {
       color: #065F46;
       transform: translateX(2px);
     }
     
     .solution-link svg {
       width: 10px;
       height: 10px;
       transition: transform 0.3s ease;
     }
     
     .solution-link:hover svg {
       transform: translate(1px, -1px);
     }
     
     .saas-card {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
     }
     
     .saas-card .solution-content h4 {
       color: white;
     }
     
     .saas-card .solution-content p {
       color: rgba(255, 255, 255, 0.9);
     }

     .solution-card:hover .solution-content p {
      color: #000000;
    }

    .solution-card:hover .solution-content h4 {
      color: #000000;
    }
     
     /* Mobile Responsive Styles */
     @media (max-width: 768px) {
       .core-solutions-section {
         padding: 60px 0;
       }
       
       .core-solutions-section .section-title {
         font-size: 36px;
         margin-bottom: 40px;
       }
       
       .subsection-title {
         font-size: 28px;
         text-align: center;
       }
       
       .subsection-description {
         text-align: center;
         margin-bottom: 30px;
       }
       
       .solution-card {
         padding: 16px;
         margin-bottom: 20px;
         height: 280px;
       }
       
       .solution-image {
         height: 120px;
         margin-bottom: 12px;
       }
       
       .solution-content h4 {
         font-size: 18px;
       }
       
       .solution-tagline {
         font-size: 13px;
       }
       
       .solution-description {
         font-size: 11px;
       }
       
       .solution-link {
         font-size: 11px;
       }
     }
     
     @media (max-width: 576px) {
       .core-solutions-section {
         padding: 40px 15px;
       }
       
       .core-solutions-section .container {
         padding-left: 15px;
         padding-right: 15px;
       }
       
       .core-solutions-section .section-title {
         font-size: 30px;
         margin-bottom: 30px;
         padding: 0 10px;
         text-align: center;
       }
       
       .subsection-title {
         font-size: 24px;
         text-align: center;
         padding: 0 10px;
       }
       
       .subsection-description {
         text-align: center;
         padding: 0 10px;
         font-size: 14px;
       }
       
       .solutions-block {
         margin-bottom: 40px;
       }
       
       .solution-card {
         padding: 14px;
         height: auto;
         min-height: 350px;
         margin: 0 10px 20px 10px;
       }
       
       .solution-image {
         height: auto;
         margin-bottom: 10px;
       }
       
       .solution-content h4 {
         font-size: 16px;
       }
       
       .solution-tagline {
         font-size: 12px;
       }
       
       .solution-description {
         font-size: 11px;
       }
       
       .solution-link {
         font-size: 11px;
       }
     }
     
     /* Extra small devices for core solutions */
     @media (max-width: 480px) {
       .core-solutions-section {
         padding: 30px 10px;
       }
       
       .core-solutions-section .section-title {
         font-size: 26px;
         padding: 0 5px;
       }
       
       .subsection-title {
         font-size: 20px;
         padding: 0 5px;
       }
       
       .subsection-description {
         font-size: 13px;
         padding: 0 5px;
       }
       
       .solution-card {
         margin: 0 5px 15px 5px;
         padding: 12px;
         min-height: 320px;
       }
       
       .solution-content h4 {
         font-size: 14px;
       }
       
       .solution-tagline {
         font-size: 11px;
       }
       
       .solution-description {
         font-size: 10px;
       }
       
       .solution-link {
         font-size: 10px;
       }
     }
     
     /* Equal height cards */
     .ai-solutions-row,
     .saas-solutions-row {
       display: flex;
       flex-wrap: wrap;
     }
     
     .ai-solutions-row > div,
     .saas-solutions-row > div {
       display: flex;
       flex-direction: column;
     }
     
     @media (max-width: 767px) {
       .ai-solutions-row,
       .saas-solutions-row {
         display: block;
       }
       
       .ai-solutions-row > div,
       .saas-solutions-row > div {
         display: block;
       }
     }
     
     /* Xelp Media Section Styles */
     .xelp-media-section {
       background-color: white;
       padding: 80px 0;
     }
     
     .media-title-container {
       display: flex;
       align-items: center;
       height: 100%;
       padding: 20px 0;
     }
     
     .media-title {
       font-size: 64px;
       font-weight: 700;
       color: #333;
       line-height: 1;
       margin: 0;
       /* writing-mode: vertical-rl;
       text-orientation: mixed;
       transform: rotate(180deg); */
     }
     
     .title-line {
       display: block;
       margin-bottom: 10px;
     }
     
     .media-cards-grid {
       padding-left: 20px;
     }
     
     .media-card {
       background: white;
       border-radius: 12px;
       overflow: hidden;
       /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
       transition: all 0.3s ease;
       margin-bottom: 30px;
       height: 100%;
     }
     
     /* .media-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
     } */

     .left-border {
        border-left: 2px solid #065F46; /* width + color */                 /* height of the border */
      }
     
     .media-card-image {
       width: 100%;
       height: 200px;
       overflow: hidden;
       position: relative;
     }
     
     .media-card-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.3s ease;
     }
     
     .media-card:hover .media-card-image img {
       transform: scale(1.05);
     }
     
     .media-card-content {
       padding: 20px;
     }
     
     .media-card-content h4 {
       font-size: 16px;
       font-weight: 600;
       color: #333;
       line-height: 1.4;
       margin-bottom: 12px;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
     }
     
     .media-meta {
       font-size: 12px;
       color: #999;
       margin-bottom: 15px;
       display: flex;
       align-items: center;
       gap: 8px;
     }
     
     .media-meta span:not(:last-child) {
       margin-right: 4px;
     }
     
     .read-more-link {
       color: #007bff;
       text-decoration: none;
       font-size: 14px;
       font-weight: 500;
       display: inline-flex;
       align-items: center;
       gap: 6px;
       transition: color 0.3s ease;
     }
     
     .read-more-link:hover {
       color: #0056b3;
       text-decoration: none;
     }
     
     .read-more-link svg {
       transition: transform 0.3s ease;
     }
     
     .read-more-link:hover svg {
       transform: translate(2px, -2px);
     }
     
     /* Mobile Responsive Styles for Media Section */
     @media (max-width: 768px) {
       .xelp-media-section {
         padding: 60px 0;
       }
       
       .media-title {
         font-size: 48px;
         writing-mode: horizontal-tb;
         text-orientation: initial;
         transform: none;
         text-align: center;
         margin-bottom: 40px;
       }
       
       .title-line {
         display: inline;
         margin-right: 10px;
         margin-bottom: 0;
       }
       
       .media-cards-grid {
         padding-left: 0;
       }
       
       .media-card {
         margin-bottom: 20px;
       }
       
       .media-card-image {
         height: 180px;
       }
       
       .media-card-content {
         padding: 15px;
       }
       
       .media-card-content h4 {
         font-size: 14px;
       }
       
       .media-meta {
         font-size: 11px;
       }
       
       .read-more-link {
         font-size: 13px;
       }
     }
     
     @media (max-width: 576px) {
       .xelp-media-section {
         padding: 40px 15px;
       }
       
       .xelp-media-section .container {
         padding-left: 15px;
         padding-right: 15px;
       }
       
       .media-title {
         font-size: 36px;
         margin-bottom: 30px;
         text-align: center;
         padding: 0 10px;
       }
       
       .media-cards-grid {
         padding-left: 0;
       }
       
       .media-card {
         margin: 0 10px 20px 10px;
       }
       
       .media-card-image {
         height: 160px;
       }
       
       .media-card-content {
         padding: 12px;
       }
       
       .media-card-content h4 {
         font-size: 13px;
         -webkit-line-clamp: 3;
       }
       
       .media-meta {
         font-size: 10px;
       }
       
       .read-more-link {
         font-size: 12px;
       }
     }
     
     /* Extra small devices for media section */
     @media (max-width: 480px) {
       .xelp-media-section {
         padding: 30px 10px;
       }
       
       .media-title {
         font-size: 30px;
         padding: 0 5px;
       }
       
       .media-card {
         margin: 0 5px 15px 5px;
       }
       
       .media-card-image {
         height: 140px;
       }
       
       .media-card-content {
         padding: 10px;
       }
       
       .media-card-content h4 {
         font-size: 12px;
         -webkit-line-clamp: 2;
       }
       
       .media-meta {
         font-size: 9px;
       }
       
       .read-more-link {
         font-size: 11px;
       }
     }
     
     .blue-gradient {
           background: linear-gradient(135deg, #a66df8 0%, #3155cc 100%);
           color: white;
           padding: 60px 0 30px;
           font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     }

     /* Get In Touch Section */
     .get-in-touch-section {
       position: relative;
       overflow: hidden;
       background: #fafafa;
       padding: 100px 0 110px;
       font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     }

     .get-in-touch-bg {
       position: absolute;
       display: block;
       width: min(220px, 28vw);
       height: auto;
       max-width: none;
       pointer-events: none;
       z-index: 0;
       object-fit: contain;
     }

     .get-in-touch-bg--top-left {
       top: 0;
       left: 0;
     }

     .get-in-touch-bg--bottom-right {
       bottom: 0;
       right: 0;
       transform: rotate(180deg);
     }

     .get-in-touch-section .container {
       position: relative;
       z-index: 1;
     }

     .get-in-touch-title {
       font-family: 'GCGatuzoDemo', sans-serif !important;
       font-size: clamp(36px, 5vw, 48px);
       font-weight: 500;
       line-height: 1.4;
       color: #059669;
       text-align: center;
       margin: 0 0 56px;
       letter-spacing: -0.02em;
     }

     .get-in-touch-cards {
       display: grid;
       grid-template-columns: repeat(3, minmax(0, 1fr));
       gap: 28px;
       max-width: 1120px;
       margin: 0 auto;
     }

     .get-in-touch-card {
       background: #ffffff;
       border-radius: 16px;
       box-shadow: 0 4px 24px rgba(22, 28, 41, 0.08);
       border: 1px solid rgba(22, 28, 41, 0.06);
       padding: 32px 28px 28px;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
       min-height: 100%;
       transition: box-shadow 0.25s ease, transform 0.25s ease;
     }

     .get-in-touch-card:hover {
       box-shadow: 0 8px 32px rgba(22, 28, 41, 0.12);
       transform: translateY(-2px);
     }

     .get-in-touch-card__icon {
       width: 60px;
       height: 60px;
       margin-bottom: 24px;
       flex-shrink: 0;
     }

     .get-in-touch-card__icon img {
       display: block;
       width: 60px;
       height: 60px;
       object-fit: contain;
     }

     .get-in-touch-card__title {
       font-family: 'Inter', sans-serif;
       font-size: 20px;
       font-weight: 700;
       color: #161C29;
       margin: 0 0 12px;
       line-height: 1.3;
     }

     .get-in-touch-card__description {
       font-size: 15px;
       font-weight: 400;
       color: #545F58;
       line-height: 1.55;
       margin: 0 0 24px;
       flex-grow: 1;
     }

     .get-in-touch-card__link {
       margin-top: auto;
       text-decoration: none;
       min-height: 0;
       min-width: 0;
       justify-content: flex-start;
     }

     .get-in-touch-card__link:hover,
     .get-in-touch-card__link:focus {
       text-decoration: none;
     }

     @media (max-width: 991px) {
       .get-in-touch-section {
         padding: 72px 0 80px;
       }

       .get-in-touch-cards {
         grid-template-columns: 1fr;
         max-width: 480px;
         gap: 20px;
       }

       .get-in-touch-title {
         margin-bottom: 40px;
       }

       .get-in-touch-bg {
         width: min(160px, 36vw);
         height: auto;
         opacity: 0.85;
       }

       .get-in-touch-card__link,
       .get-in-touch-card .bod-team-read-more {
         min-height: 0;
         min-width: 0;
         justify-content: flex-start;
       }
     }

     @media (max-width: 575px) {
       .get-in-touch-section {
         padding: 56px 0 64px;
       }

       .get-in-touch-bg {
         width: min(120px, 32vw);
         height: auto;
         opacity: 0.75;
       }

       .get-in-touch-card {
         padding: 24px 20px 22px;
       }

       .get-in-touch-card__title {
         font-size: 18px;
       }

       .get-in-touch-card__description,
       .get-in-touch-card__link {
         font-size: 14px;
       }
     }
     
     /* Enhanced Responsive Styles for Experts/Leadership Sections */
     @media (max-width: 1200px) {
       .meet-our-Experts {
         padding: 60px 0;
       }
       
       .meet-our-Experts h2 {
         font-size: 42px;
         margin-bottom: 20px;
       }
       
       .meet-our-Experts p {
         font-size: 17px;
         margin-bottom: 30px;
       }
       
       .expert-Cards {
         margin-bottom: 30px;
       }
     }
     
     /* Hide tags on mobile and show full image */
     @media (max-width: 768px) {
       .experts-badge {
         display: none !important;
       }
       
       .expert-Cards figure img {
         max-height: none !important;
         height: auto !important;
         width: 100% !important;
         object-fit: cover !important;
         border-radius: 8px;
       }
       
       /* Ensure full image display on mobile */
       .expert-Cards figure {
         height: auto !important;
         min-height: 200px;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
         border-radius: 8px;
       }
       
       /* Better mobile card layout */
       .expert-Cards {
         display: flex;
         flex-direction: column;
         height: auto;
         min-height: auto;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       }
       
       .expert-Cards .card-body {
         flex: 1;
         display: flex;
         flex-direction: column;
         justify-content: space-between;
         padding: 15px;
       }
       
       /* Ensure proper image aspect ratio on mobile */
       .expert-Cards figure {
         aspect-ratio: 4/3;
         overflow: hidden;
       }
       
       .expert-Cards figure img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.3s ease;
       }
       
       .expert-Cards:hover figure img {
         transform: scale(1.05);
       }
     }
     
     @media (max-width: 992px) {
       .meet-our-Experts {
         padding: 50px 0;
       }
       
       .meet-our-Experts h2 {
         font-size: 36px;
         margin-bottom: 18px;
         text-align: center;
       }
       
       .meet-our-Experts p {
         font-size: 16px;
         margin-bottom: 25px;
         text-align: center;
       }
       
       .expert-Cards {
         margin-bottom: 25px;
       }
       
       .experts-badge li {
         font-size: 12px;
         padding: 4px 8px;
       }
       
       .expert-Cards h6 {
         font-size: 16px;
       }
       
       .expert-Cards label {
         font-size: 14px;
       }
       
       .expert-Cards p {
         font-size: 13px;
       }
       
       .expert-Cards button {
         font-size: 13px;
       }
     }
     
    @media (max-width: 768px) {
      .meet-our-Experts {
        padding: 40px 0;
      }
      
      .meet-our-Experts h2 {
        font-size: 32px;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 15px;
        letter-spacing: -1px !important;
      }
      
      .meet-our-Experts p {
        font-size: 15px;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 15px;
        letter-spacing: 0.2px !important;
      }
      
      .expert-Cards {
        margin-bottom: 20px;
        padding: 15px !important;
      }
      
      .experts-badge {
        display: none !important;
      }
      
      .expert-Cards h6 {
        font-size: 15px;
        letter-spacing: 0.2px !important;
      }
      
      .expert-Cards label {
        font-size: 13px;
        letter-spacing: 0.2px !important;
      }
      
      .expert-Cards p {
        font-size: 12px;
        letter-spacing: 0.3px !important;
      }
      
      .expert-Cards button {
        font-size: 12px;
        letter-spacing: 0.2px !important;
      }
      
      .expert-Cards figure img {
        max-height: none !important;
        height: auto !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 8px;
      }
    }
     
     @media (max-width: 576px) {
       .meet-our-Experts {
         padding: 30px 0;
       }
       
       .meet-our-Experts h2 {
         font-size: 28px;
         margin-bottom: 12px;
         text-align: center;
         padding: 0 10px;
       }
       
       .meet-our-Experts p {
         font-size: 14px;
         margin-bottom: 18px;
         text-align: center;
         padding: 0 10px;
       }
       
       .expert-Cards {
         margin-bottom: 15px;
         padding: 12px !important;
       }
       
       .experts-badge {
         display: none !important;
       }
       
       .expert-Cards h6 {
         font-size: 14px;
       }
       
       .expert-Cards label {
         font-size: 12px;
       }
       
       .expert-Cards p {
         font-size: 11px;
       }
       
       .expert-Cards button {
         font-size: 11px;
       }
       
       .expert-Cards figure img {
         max-height: none !important;
         height: auto !important;
         width: 100% !important;
         object-fit: cover !important;
         border-radius: 8px;
       }
     }
     
     @media (max-width: 480px) {
       .meet-our-Experts {
         padding: 25px 0;
       }
       
       .meet-our-Experts h2 {
         font-size: 24px;
         margin-bottom: 10px;
         text-align: center;
         padding: 0 8px;
       }
       
       .meet-our-Experts p {
         font-size: 13px;
         margin-bottom: 15px;
         text-align: center;
         padding: 0 8px;
       }
       
       .expert-Cards {
         margin-bottom: 12px;
         padding: 10px !important;
       }
       
       .experts-badge {
         display: none !important;
       }
       
       .expert-Cards h6 {
         font-size: 13px;
       }
       
       .expert-Cards label {
         font-size: 11px;
       }
       
       .expert-Cards p {
         font-size: 10px;
       }
       
       .expert-Cards button {
         font-size: 10px;
       }
       
       .expert-Cards figure img {
         max-height: none !important;
         height: auto !important;
         width: 100% !important;
         object-fit: cover !important;
         border-radius: 8px;
       }
     }
     
     /* Enhanced Modal responsive styles */
     @media (max-width: 768px) {
       .modal-dialog {
         margin: 15px;
         max-width: calc(100% - 30px);
       }
       
       .modal-content {
         border-radius: 12px;
       }
       
       .modal-body {
         padding: 20px !important;
       }
       
       .modal-image {
         height: auto !important;
         margin-bottom: 15px !important;
       }
       
       .modal-image img {
         border-radius: 8px !important;
         object-fit: cover;
       }
       
       .modal-content-wrapper h5 {
         font-size: 20px !important;
         margin-bottom: 8px !important;
       }
       
       .modal-content-wrapper span {
         font-size: 14px !important;
         margin-bottom: 15px !important;
       }
       
       .expert-full-content {
         font-size: 14px !important;
         line-height: 1.6 !important;
         padding: 0 !important;
       }
       
       .linkedin-modal-link {
         font-size: 13px !important;
       }
       
       .linkedin-modal-link svg {
         width: 18px !important;
         height: 18px !important;
       }
     }
     
     @media (max-width: 576px) {
       .modal-dialog {
         margin: 10px;
         max-width: calc(100% - 20px);
       }
       
       .modal-body {
         padding: 15px !important;
       }
       
       .modal-image {
         margin-bottom: 12px !important;
       }
       
       .modal-content-wrapper h5 {
         font-size: 18px !important;
         margin-bottom: 6px !important;
       }
       
       .modal-content-wrapper span {
         font-size: 13px !important;
         margin-bottom: 12px !important;
       }
       
       .expert-full-content {
         font-size: 13px !important;
         line-height: 1.6 !important;
       }
       
       .linkedin-modal-link {
         font-size: 12px !important;
       }
       
       .linkedin-modal-link svg {
         width: 16px !important;
         height: 16px !important;
       }
     }
     
     @media (max-width: 480px) {
       .modal-dialog {
         margin: 8px;
         max-width: calc(100% - 16px);
       }
       
       .modal-body {
         padding: 12px !important;
       }
       
       .modal-content-wrapper h5 {
         font-size: 16px !important;
       }
       
       .modal-content-wrapper span {
         font-size: 12px !important;
       }
       
       .expert-full-content {
         font-size: 12px !important;
       }
       
       .linkedin-modal-link {
         font-size: 11px !important;
       }
     }
     
     /* Desktop modal improvements */
     @media (min-width: 769px) {
       .modal-dialog {
         max-width: 900px;
       }
       
       .modal-body {
         padding: 40px !important;
       }
       
       .modal-image img {
         max-height: 400px;
         object-fit: cover;
       }
       
       .linkedin-modal-link:hover {
         transform: translateX(3px);
         color: #1e3a8a;
       }
     }
     
     /* Enhanced touch and accessibility improvements */
     @media (max-width: 768px) {
       /* Improve touch targets */
       button, .btn, a {
         min-height: 44px;
         min-width: 44px;
         display: inline-flex;
         align-items: center;
         justify-content: center;
       }
       
       /* Better spacing for touch devices */
       .expert-Cards {
         margin-bottom: 20px;
       }
       
       .get-in-touch-card {
         margin-bottom: 20px;
       }
       
       /* Improve readability */
       .hero-section-container,
       .hero-section-container-2,
       .hero-section-container-3 {
         text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
       }
     }
     
     /* Landscape orientation improvements */
     @media (max-width: 768px) and (orientation: landscape) {
       .hero-section {
         min-height: 100vh;
         padding: 20px 0;
       }
       
       .tech-futurists-section {
         min-height: 100vh;
         padding: 20px 0;
       }
       
       .about-company-section,
       .about-company-section-2 {
         padding: 40px 0;
       }
       
       .meet-our-Experts {
         padding: 30px 0;
       }
       
       .get-in-touch-section {
         padding: 40px 0;
       }
     }
     
     /* Tablet specific improvements */
     @media (min-width: 768px) and (max-width: 1024px) {
       .hero-section {
         min-height: 80vh;
         padding: 50px 0 40px 0;
       }
       
       .hero-section-container {
         font-size: 54px;
         letter-spacing: -1.5px;
       }
       
       .hero-section-container-2 {
         font-size: 20px;
       }
       
       .hero-section-container-3 {
         font-size: 16px;
       }
       
       .about-company-section,
       .about-company-section-2 {
         padding: 60px 0;
       }
       
       .about-title {
         font-size: 40px;
       }
       
       .about-description {
         font-size: 16px;
       }
       
       .tech-futurists-title {
         font-size: 44px !important;
         padding: 60px 0px !important;
       }
       
       .meet-our-Experts {
         padding: 50px 0;
       }
       
       .get-in-touch-section {
         padding: 50px 0;
       }
       
       .technology-scroll-wrapper {
         height: 280px !important;
       }
       
       .technology-image-container {
         height: 280px !important;
       }
     }
     
     /* Extra responsive fixes for very small screens */
     @media (max-width: 360px) {
       .hero-section-container {
         font-size: 22px !important;
         letter-spacing: -0.5px;
       }
       
       .hero-section-container-2 {
         font-size: 14px !important;
       }
       
       .hero-section-container-3 {
         font-size: 12px !important;
       }
       
       .about-title {
         font-size: 22px;
       }
       
       .about-subtitle {
         font-size: 14px;
       }
       
       .about-description {
         font-size: 13px;
       }
       
       .what-makes-us-different-title {
         font-size: 18px !important;
       }
       
       .what-makes-us-different-title-2 {
         font-size: 16px !important;
       }
       
       .tech-futurists-title {
         font-size: 20px !important;
       }
       
       .get-in-touch-title {
         font-size: 28px !important;
       }
       
       .bring-your-ambition-content .about-title .font-gradient {
         font-size: 24px !important;
       }
     }
     
     /* High DPI display optimizations */
     @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
       .hero-section {
         background-attachment: scroll;
       }
     }
     
     /* Print styles */
     @media print {
       .hero-section,
       .tech-futurists-section {
         background: none !important;
         color: #000 !important;
       }
       
       .expert-Cards {
         break-inside: avoid;
         margin-bottom: 20px;
       }
     }
     
     /* Expert Preview Tooltip Styles */
     
     .expert-preview-tooltip {
       position: absolute;
       bottom: 100%;
       left: 50%;
       transform: translateX(-50%);
       background: rgba(0, 0, 0, 0.9);
       color: white;
       padding: 15px;
       border-radius: 8px;
       width: 280px;
       z-index: 1000;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
       backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.1);
     }
     
     .expert-preview-tooltip::after {
       content: '';
       position: absolute;
       top: 100%;
       left: 50%;
       transform: translateX(-50%);
       border: 6px solid transparent;
       border-top-color: rgba(0, 0, 0, 0.9);
     }
     
     .tooltip-content h6 {
       font-size: 16px;
       font-weight: 600;
       margin-bottom: 5px;
       color: #fff;
     }
     
     .tooltip-content p {
       font-size: 14px;
       margin-bottom: 8px;
       color: #e0e0e0;
     }
     
     .preview-text {
       font-size: 13px;
       line-height: 1.4;
       color: #f0f0f0;
       font-style: italic;
     }
     
     /* Enhanced Modal Styles */
     .modal-lg {
       max-width: 900px;
     }
     
     .modal-image {
       width: 100%;
       height: auto;
       overflow: hidden;
       border-radius: 12px;
       margin-bottom: 0;
     }
     
     .modal-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 0.3s ease;
       border-radius: 12px;
     }
     
     .modal-image:hover img {
       transform: scale(1.02);
     }
     
     .expert-full-content {
       background: transparent;
       padding: 0;
       border-radius: 0;
       border: none;
       line-height: 1.7;
       font-size: 15px;
       color: #545F58;
     }
     
     /* Expert Card Content Styling */
     .expert-card-content {
       background: #f8f9fa;
       padding: 15px;
       border-radius: 8px;
       border-left: 3px solid #065F46;
       margin-bottom: 15px;
     }
     
     .expert-card-content p {
       font-size: 12px;
       line-height: 1.5;
       color: #6c757d;
       margin: 0;
     }
     
     /* Read More Button Styling */
     .read-more-btn {
       background: transparent;
       color: #065F46;
       border: none;
       padding: 0;
       font-size: 14px;
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s ease;
       margin-top: 10px;
       text-decoration: none;
       display: inline-flex;
       align-items: center;
       gap: 6px;
     }
     
     .read-more-btn:hover {
       color: #1e3a8a;
       transform: translateX(2px);
       text-decoration: none;
     }
     
     .read-more-btn svg {
       transition: transform 0.3s ease;
     }
     
     .read-more-btn:hover svg {
       transform: translate(2px, -2px);
     }
     
     /* LinkedIn Link Styling */
     .linkedin-link {
       color: #065F46;
       text-decoration: none;
       transition: all 0.3s ease;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 24px;
       height: 24px;
     }
     
     .linkedin-link:hover {
       color: #1e3a8a;
       transform: scale(1.1);
       text-decoration: none;
     }
     
     /* Enhanced Modal Styling for Better Visibility */
     .modal {
       z-index: 1055 !important;
     }
     
     .modal-backdrop {
       z-index: 1050 !important;
       background-color: rgba(0, 0, 0, 0.6) !important;
     }
     
     .modal-dialog {
       z-index: 1055 !important;
       margin: 30px auto;
       max-width: 800px;
     }
     
     .modal-content {
       border: none;
       border-radius: 12px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
       background: #fff;
       overflow: hidden;
     }
     
     /* Modal Close Button Styling for Bootstrap 3 */
     .modal .close {
       position: absolute;
       top: 15px;
       right: 20px;
       z-index: 1060 !important;
       color: #000 !important;
       opacity: 0.8 !important;
       font-size: 32px !important;
       font-weight: bold;
       line-height: 1;
       text-shadow: 0 1px 0 #fff;
       background: rgba(255, 255, 255, 0.9) !important;
       border: none;
       border-radius: 50%;
       width: 40px !important;
       height: 40px !important;
       display: flex !important;
       align-items: center !important;
       justify-content: center !important;
       cursor: pointer;
       transition: all 0.3s ease;
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     }
     
     .modal .close:hover,
     .modal .close:focus {
       color: #000 !important;
       text-decoration: none;
       opacity: 1 !important;
       transform: scale(1.1);
       background: rgba(255, 255, 255, 1) !important;
     }
     
     .modal .close span {
       font-size: 24px !important;
       line-height: 1 !important;
     }
     
     /* Touch-friendly button on mobile */
     @media (max-width: 768px) {
       .read-more-btn {
         min-height: 44px;
         min-width: 44px;
         display: inline-flex;
         align-items: center;
         justify-content: center;
         padding: 8px 16px;
         border-radius: 6px;
         background: rgba(6, 95, 70, 0.1);
         color: #065F46;
         transition: all 0.2s ease;
       }
       
       .read-more-btn:active {
         background: rgba(6, 95, 70, 0.2);
         transform: scale(0.98);
       }
     }
     
     /* Mobile responsive tooltip */
     @media (max-width: 768px) {
       .expert-preview-tooltip {
         width: 250px;
         padding: 12px;
         font-size: 12px;
       }
       
       .tooltip-content h6 {
         font-size: 14px;
       }
       
       .tooltip-content p {
         font-size: 12px;
       }
       
       .preview-text {
         font-size: 11px;
       }
       
       .modal-lg {
         max-width: 95%;
         margin: 10px auto;
       }
       
       .modal-image {
         height: auto;
         max-height: 250px;
         margin-bottom: 15px;
       }
       
       .modal-image img {
         max-height: 250px;
         width: 100%;
         object-fit: cover;
       }
       
       .expert-full-content {
         padding: 0;
         font-size: 14px;
       }
       
       /* Mobile responsive expert card content */
       .expert-card-content {
         padding: 12px;
         margin-bottom: 12px;
       }
       
       .expert-card-content p {
         font-size: 11px;
       }
       
       /* Enhanced mobile modal styling */
       .modal-dialog {
         margin: 15px !important;
         max-width: calc(100% - 30px) !important;
       }
       
       .modal .close {
         top: 10px !important;
         right: 15px !important;
         width: 36px !important;
         height: 36px !important;
         font-size: 28px !important;
       }
       
       .modal .close span {
         font-size: 22px !important;
       }
     }
     
     @media (max-width: 576px) {
       .expert-preview-tooltip {
         width: 220px;
         padding: 10px;
         font-size: 11px;
       }
       
       .tooltip-content h6 {
         font-size: 13px;
       }
       
       .tooltip-content p {
         font-size: 11px;
       }
       
       .preview-text {
         font-size: 10px;
       }
       
       .modal-lg {
         max-width: 98%;
         margin: 8px auto;
       }
       
       .modal-image {
         height: auto;
         max-height: 220px;
         margin-bottom: 12px;
       }
       
       .modal-image img {
         max-height: 220px;
         width: 100%;
         object-fit: cover;
       }
       
       .expert-full-content {
         padding: 0;
         font-size: 13px;
       }
       
       /* Small screen expert card content */
       .expert-card-content {
         padding: 10px;
         margin-bottom: 10px;
       }
       
      .expert-card-content p {
        font-size: 10px;
      }
    }
    
    /* Additional responsive fixes for Companies Section */
    @media (max-width: 1200px) {
      #companies-section {
        padding: 60px 0;
      }
      
      #companies-section .container {
        padding-left: 20px;
        padding-right: 20px;
      }
    }
    
    @media (max-width: 992px) {
      #companies-section {
        padding: 50px 0;
      }
      
      #companies-section .col-lg-6 {
        width: 100%;
        padding: 0 15px;
      }
      
      #companies-section .what-makes-eyebrow {
        text-align: center;
      }
      
      #companies-section .what-makes-us-different-title {
        text-align: center;
      }
    }
    
    @media (max-width: 768px) {
      #companies-section {
        padding: 40px 0;
      }
      
      #companies-section .container {
        padding-left: 15px;
        padding-right: 15px;
      }
      
      #companies-section .what-makes-us-different-title-2 {
        padding: 40px 15px !important;
        font-size: 28px !important;
        line-height: 1.5 !important;
        letter-spacing: -0.5px !important;
        word-spacing: 2px;
      }
      
      .grey-line1, .grey-line2, .grey-line3, .grey-line4, .grey-line5 {
        display: none !important;
      }
    }
    
    @media (max-width: 576px) {
      #companies-section {
        padding: 30px 0;
      }
      
      #companies-section .what-makes-us-different-title-2 {
        padding: 30px 10px !important;
        font-size: 22px !important;
        line-height: 1.5 !important;
        letter-spacing: 0px !important;
        word-spacing: 3px;
      }
      
      #companies-section .col-lg-12 {
        padding: 0 10px;
      }
    }
    
    @media (max-width: 480px) {
      #companies-section {
        padding: 25px 0;
      }
      
      #companies-section .what-makes-us-different-title-2 {
        padding: 25px 8px !important;
        font-size: 18px !important;
        line-height: 1.6 !important;
        letter-spacing: 0.2px !important;
        word-spacing: 3px;
      }
    }
    
    /* Responsive fixes for get-in-touch button */
    @media (max-width: 768px) {
      .get-in-touch-btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .explore-solutions-btn-container {
        margin-top: 20px;
      }
    }
    
    @media (max-width: 576px) {
      .get-in-touch-btn {
        padding: 8px 18px;
        font-size: 13px;
      }
    }
    
    @media (max-width: 480px) {
      .get-in-touch-btn {
        padding: 8px 16px;
        font-size: 12px;
      }
    }
    
    /* Meet our Experts section responsive improvements */
    @media (max-width: 992px) {
      .meet-our-Experts {
        padding: 50px 15px;
      }
      
      .experts-space {
        padding: 0 15px;
      }
    }
    
    @media (max-width: 768px) {
      .meet-our-Experts {
        padding: 40px 15px;
      }
      
      .meet-our-Experts .container {
        padding-left: 15px;
        padding-right: 15px;
      }
      
      .expert-Cards {
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 576px) {
      .meet-our-Experts {
        padding: 30px 10px;
      }
      
      .meet-our-Experts h2 {
        font-size: 26px;
      }
      
      .expert-Cards {
        margin-bottom: 15px;
      }
    }
    
    @media (max-width: 480px) {
      .meet-our-Experts {
        padding: 25px 8px;
      }
      
      .meet-our-Experts h2 {
        font-size: 22px;
      }
    }

/* DocuXray shell offsets */
.bod-page-main {
  scroll-behavior: smooth;
  overflow-x: clip;
  /* Smaller reveal distance — avoids overflow flicker during scroll animations */
  --fade-distance: 28px;
  --fade-distance-sm: 20px;
}

.bod-team-section {
  scroll-margin-top: 7rem;
  padding: 80px 0;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .bod-team-section {
    scroll-margin-top: 70px;
  }
}

.bod-team-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.bod-team-section-title {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: 42px;
  font-weight: 500;
  color: #161C29;
  margin: 0 0 12px;
  line-height: 1.4;
  letter-spacing: -1px;
}

.bod-team-section-desc {
  font-size: 18px;
  color: #545F58;
  margin: 0 auto;
  max-width: 640px;
}

.bod-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bod-team-grid--center-last-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bod-team-grid--center-last-row .bod-team-card {
  grid-column: span 2;
}

@media (min-width: 992px) {
  .bod-team-grid--center-last-row .bod-team-card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .bod-team-grid--center-last-row .bod-team-card:nth-last-child(1) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 991px) {
  .bod-team-grid,
  .bod-team-grid--center-last-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .bod-team-grid--center-last-row .bod-team-card,
  .bod-team-grid--center-last-row .bod-team-card:nth-last-child(2),
  .bod-team-grid--center-last-row .bod-team-card:nth-last-child(1) {
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .bod-team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .bod-team-section-title {
    font-size: 28px;
  }

  .bod-team-section {
    padding: 48px 0;
  }
}

.bod-team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(22, 28, 41, 0.08);
  padding: 28px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(22, 28, 41, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bod-team-card:hover {
  box-shadow: 0 8px 32px rgba(22, 28, 41, 0.12);
  transform: translateY(-2px);
}

.bod-team-card-photo {
  margin: 0 0 20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bod-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bod-team-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.bod-team-card-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.bod-team-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #161C29;
  margin: 0;
  line-height: 1.3;
}

.bod-team-card-linkedin {
  color: #0A66C2;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.bod-team-card-linkedin:hover {
  color: #004182;
}

.bod-team-card-role {
  font-size: 14px;
  color: #545F58;
  margin: 0 0 16px;
  line-height: 1.5;
}

.bod-team-read-more {
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  color: #059669;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bod-team-read-more svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bod-team-read-more:hover,
.bod-team-read-more:focus {
  color: #047857;
  text-decoration: none;
}

.bod-team-read-more:hover svg,
.bod-team-read-more:focus svg {
  transform: translate(2px, -2px);
}

.bod-team-modal.modal {
  z-index: 10100 !important;
}

body.modal-open .modal-backdrop.in {
  z-index: 10050 !important;
}

.bod-team-modal.modal.in {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bod-team-modal .bod-team-modal-dialog {
  margin: 0 auto;
  width: 100%;
  max-width: 822px;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.bod-team-modal .modal-content {
  border-radius: 16px;
  border: none;
  max-height: min(520px, calc(100vh - 32px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bod-team-modal.author-Modals .modal-body.bod-team-modal-body {
  padding: 32px 28px 28px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  position: relative;
}

.bod-team-modal-row {
  margin: 0;
  min-height: min(380px, calc(100vh - 160px));
}

.bod-team-modal-row::before,
.bod-team-modal-row::after {
  display: table;
  content: " ";
}

.bod-team-modal-photo-col {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .bod-team-modal-photo-col {
    text-align: left;
    padding-right: 20px;
  }

  .bod-team-modal-details {
    height: min(380px, calc(100vh - 160px));
  }

  .bod-team-modal-scroll {
    height: 100%;
    max-height: min(380px, calc(100vh - 160px));
  }
}

.bod-team-modal-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #b8c4be transparent;
}

.bod-team-modal.author-Modals .modal-content button.close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30 !important;
  opacity: 0.7;
  font-size: 28px;
  line-height: 1;
  color: #161C29;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bod-team-modal.author-Modals .modal-content button.close:hover,
.bod-team-modal.author-Modals .modal-content button.close:focus {
  opacity: 1;
  color: #161C29;
  outline: none;
}

.bod-team-modal.author-Modals .modal-body figure.bod-team-modal-photo img {
  height: auto;
  object-fit: cover;
}

.bod-team-modal-scroll::-webkit-scrollbar {
  width: 4px;
}

.bod-team-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.bod-team-modal-scroll::-webkit-scrollbar-thumb {
  background-color: #b8c4be;
  border-radius: 4px;
}

.bod-team-modal-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #8fa399;
}

.bod-team-modal-photo {
  margin: 0;
  width: 100%;
  max-width: 280px;
}

.bod-team-modal-photo img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.bod-team-modal-name {
  font-size: 24px;
  font-weight: 700;
  color: #161C29;
  margin: 0 0 8px;
}

.bod-team-modal-role {
  font-size: 16px;
  font-weight: 600;
  color: #059669;
  margin: 0 0 16px;
}

.bod-team-modal-content {
  font-size: 15px;
  line-height: 1.7;
  color: #545F58;
}

.bod-team-modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.bod-team-modal-linkedin:hover {
  color: #047857;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .bod-team-modal .modal-content {
    max-height: min(580px, calc(100vh - 24px));
  }

  .bod-team-modal-row {
    min-height: min(480px, calc(100vh - 100px));
  }

  .bod-team-modal-photo-col {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .bod-team-modal-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .bod-team-modal-photo img {
    max-height: 200px;
  }

  .bod-team-modal-scroll {
    max-height: min(300px, calc(100vh - 280px));
  }
}

@media screen and (max-width: 575px) {
  .bod-team-modal.modal.in {
    padding: 12px;
  }

  .bod-team-modal.author-Modals .modal-body.bod-team-modal-body {
    padding: 20px 16px 16px;
  }

  .bod-team-modal .modal-content {
    max-height: min(520px, calc(100vh - 24px));
  }

  .bod-team-modal-row {
    min-height: min(420px, calc(100vh - 80px));
  }

  .bod-team-modal-name {
    font-size: 20px;
  }

  .bod-team-modal-role {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .bod-team-modal-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .bod-team-modal-photo {
    max-width: 140px;
  }

  .bod-team-modal-photo img {
    max-height: 140px;
  }

  .bod-team-modal-scroll {
    max-height: min(260px, calc(100vh - 300px));
    padding-right: 6px;
  }

  .bod-team-modal.author-Modals .modal-content button.close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }
}

.hero-section {
  margin-top: 0;
  min-height: calc(100svh - 7rem);
}

@media screen and (max-width: 768px) {
  .hero-section {
    min-height: calc(100svh - 70px);
  }

  .bod-team-section {
    scroll-margin-top: 70px;
  }

  .about-company-section:not(.about-company-section-2) {
    padding: 72px 0 80px;
  }

  .about-company-section:not(.about-company-section-2) .about-company-bg {
    width: min(44vw, 240px);
    height: min(62vh, 420px);
    opacity: 1;
    filter: contrast(1.35) brightness(0.85);
  }

  .about-company-section:not(.about-company-section-2) .about-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.15;
  }

  .about-company-section:not(.about-company-section-2) .about-title-accent {
    color: #059669;
  }

  .about-company-section:not(.about-company-section-2) .about-description {
    font-size: 16px;
    padding: 0 8px;
    text-align: center;
  }

  .what-makes-different-section {
    padding: 72px 0 60px;
  }

  .what-makes-different-bg {
    width: 100%;
    height: min(36vw, 180px);
    opacity: 1;
    filter: contrast(1.35) brightness(0.85);
  }

  .what-makes-different-header {
    margin-bottom: 40px;
  }

  .what-makes-different-header .what-makes-us-different-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .what-makes-different-header .what-makes-us-different-description {
    font-size: 16px;
    padding: 0 8px;
  }

  .what-makes-cards {
    gap: 20px;
    padding: 0;
  }

  .what-makes-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 32px 24px 28px;
  }

  .what-makes-card__title {
    font-size: 20px;
  }

  .what-makes-card__description,
  .what-makes-card__features li {
    font-size: 14px;
  }

  .bring-your-ambition-section {
    padding: 72px 0 80px;
  }

  .bring-your-ambition-bg {
    height: min(36vw, 180px);
  }

  .bring-your-ambition-text {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .bring-your-ambition-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 28px;
  }

  .bring-your-ambition-btn {
    font-size: 14px;
    padding: 12px 28px;
  }

  .our-mission-section {
    padding: 72px 0 80px;
  }

  .our-mission-bg {
    width: min(160px, 36vw);
    height: min(240px, 48vw);
    opacity: 0.85;
  }

  .our-mission-heading {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 24px;
  }

  .our-mission-text {
    font-size: 16px;
    padding: 0 8px;
  }
}

.bod-page-main .fade-section .container,
.bod-page-main .fade-section .container-fluid {
  overflow: visible;
}

.bod-page-main .grey-line1,
.bod-page-main .grey-line2,
.bod-page-main .grey-line3,
.bod-page-main .grey-line4,
.bod-page-main .grey-line5 {
  position: absolute;
  top: 0;
  bottom: 0;
  border-right: 1px solid rgba(231, 232, 231, 1);
  pointer-events: none;
}

.bod-page-main .grey-line1 { left: 0; transform: translateX(-0%); }
.bod-page-main .grey-line2 { left: 25%; transform: translateX(-25%); }
.bod-page-main .grey-line3 { left: 50%; transform: translateX(-50%); }
.bod-page-main .grey-line4 { left: 75%; transform: translateX(-75%); }
.bod-page-main .grey-line5 { left: 100%; transform: translateX(-100%); }

/* ── Scroll reveal extensions (pairs with css/fade-section.css + js/fade-section.js) ── */
.fade-section .about-title,
.fade-section .what-makes-us-different-title,
.fade-section .bring-your-ambition-title,
.fade-section .get-in-touch-title,
.fade-section .bod-team-section-title,
.fade-section .hero-line-1,
.fade-section .hero-line-2,
.fade-section .hero-rotated-logo {
  opacity: 0;
  transform: translateY(var(--fade-distance-sm, 32px));
  transition:
    opacity var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1));
  will-change: opacity, transform;
}

.fade-section .about-description,
.fade-section .what-makes-us-different-description,
.fade-section .bod-team-section-desc,
.fade-section .our-mission-text,
.fade-section .bring-your-ambition-text {
  opacity: 0;
  transform: translateY(var(--fade-distance-sm, 32px));
  transition:
    opacity var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1));
  will-change: opacity, transform;
}

.fade-section .bring-your-ambition-btn {
  opacity: 0;
  transform: translateY(var(--fade-distance-sm, 32px));
  transition:
    opacity var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--fade-duration, 1.05s) var(--fade-ease, cubic-bezier(0.22, 1, 0.36, 1));
  will-change: opacity, transform;
}

.fade-section.is-visible .about-title,
.fade-section.is-visible .what-makes-us-different-title,
.fade-section.is-visible .bring-your-ambition-title,
.fade-section.is-visible .get-in-touch-title,
.fade-section.is-visible .bod-team-section-title,
.fade-section.is-visible .our-mission-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 2);
}

.fade-section.is-visible .about-description,
.fade-section.is-visible .what-makes-us-different-description,
.fade-section.is-visible .bod-team-section-desc,
.fade-section.is-visible .our-mission-text,
.fade-section.is-visible .bring-your-ambition-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 3);
}

.fade-section.is-visible .bring-your-ambition-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 4);
}

.fade-section.is-visible .hero-line-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 1);
}

.fade-section.is-visible .hero-line-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 2);
}

.fade-section.is-visible .hero-rotated-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--fade-stagger, 0.18s) * 3);
}

@media (prefers-reduced-motion: reduce) {
  .fade-section .about-title,
  .fade-section .what-makes-us-different-title,
  .fade-section .bring-your-ambition-title,
  .fade-section .get-in-touch-title,
  .fade-section .bod-team-section-title,
  .fade-section .hero-line-1,
  .fade-section .hero-line-2,
  .fade-section .hero-rotated-logo,
  .fade-section .about-description,
  .fade-section .what-makes-us-different-description,
  .fade-section .bod-team-section-desc,
  .fade-section .our-mission-text,
  .fade-section .bring-your-ambition-text,
  .fade-section .bring-your-ambition-btn {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
