  /* @font-face {
      font-family: "Saans Trial";
      src: url("./fonts/SaansTrial-Regular.woff2") format("woff2"),
           url("./fonts/SaansTrial-Regular.woff") format("woff");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    } */
      :root{
    --md-teal: #1fa3b0;
    --md-teal-dark: #14818c;
    --md-brown: #7a6a4f;
    --md-black: #111111;
   }
    * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    }
    body {
    font-family: "Inter", Arial, sans-serif;
    }
    h1, h2, h3, h4, h5, h6{
    font-family: "Inter", Arial, sans-serif;
    }
    .d-none{
      display: none;
    }
 
    /* Header */
     .top-strip{
    background:#111111;
    height:8px;
    width:100%;
  }
  .site-container {
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding-left: clamp(1rem, 4vw, 2.5rem);
      padding-right: clamp(1rem, 4vw, 2.5rem);
    }
  .site-header{
    background:#ffffff;
    /* border-bottom: 3px solid #3aa9d8; */
    padding-top: .6rem;
    padding-bottom: .6rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    will-change: padding, box-shadow;
    transition:
      padding-top .35s cubic-bezier(.4,0,.2,1),
      padding-bottom .35s cubic-bezier(.4,0,.2,1),
      box-shadow .35s cubic-bezier(.4,0,.2,1);
    }
 
  /* state applied via JS once the page is scrolled past a threshold */
  .site-header.is-stuck{
    padding-top: .25rem;
    padding-bottom: .25rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
  }
 
  .brand-wrap svg{
    transition: width .35s cubic-bezier(.4,0,.2,1), height .35s cubic-bezier(.4,0,.2,1);
  }
 
  .site-header.is-stuck .brand-wrap img{
    max-width: 120px;
  }
 
  .site-header.is-stuck .brand-text .medhavi{
    font-size: 1.5rem;
  }
 
  .brand-text .medhavi{
    transition: font-size .35s cubic-bezier(.4,0,.2,1);
  }
 
  .brand-wrap{
    display:flex;
    align-items:center;
    gap:.6rem;
    text-decoration:none;
  }
 
  .brand-text{
    line-height:1;
  }
 
  .brand-text .medhavi{
    font-family: 'Brush Script MT', cursive;
    font-size:1.9rem;
    color: var(--md-teal);
    font-weight:600;
    letter-spacing:.5px;
  }
 
  .brand-text .foundation{
    display:block;
    font-size:.62rem;
    letter-spacing:4px;
    color:#8a8a8a;
    text-transform:lowercase;
    margin-top:-2px;
    margin-left:2px;
  }
 
  .navbar-nav .nav-link{
    color:#1c1c1c !important;
    font-weight:600;
    font-size:.92rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    white-space:nowrap;
  }
 
  .navbar-nav .nav-link:hover{
    color: var(--md-teal) !important;
  }
 
  .navbar-toggler{
    border-color: var(--md-teal);
  }
 
  .navbar-toggler:focus{
    box-shadow: 0 0 0 .2rem rgba(31,163,176,.35);
  }
 
  @media (max-width: 991.98px){
    .navbar-nav .nav-link{
      padding: .55rem 0 !important;
      border-bottom: 1px solid #eee;
    }
    .navbar-collapse{
      margin-top: .75rem;
    }
  }
    /* Header end */
    .hero-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #111;
    }

    .slide {
      display: none;
      position: relative;
      width: 100%;
      min-height: 480px;
      height: 90vh;
      /* max-height: 620px; */
    }

    .slide.active { display: block; }

    .slide-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: brightness(0.9);
    }

    /* Dark gradient over left portion for text legibility */
    .slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.42) 50%,
        rgba(0,0,0,0.10) 100%
      );
    }

    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      top: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 110px !important;
      /* padding: 2.5rem clamp(1.25rem, 5vw, 4rem); */
      /* max-width: 560px; */
    }

    .slide-title {
      font-family: "Bricolage Grotesque", sans-serif;
      font-size: 54px;
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 0.85rem;
      text-shadow: 0 2px 12px rgba(0,0,0,0.35);
      margin-top: 30px;
    }

    .slide-subtitle {
      font-size: clamp(0.78rem, 1.8vw, 1.2rem);
      color: rgba(255,255,255,0.88);
      line-height: 1.55;
      max-width: 540px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    }

    /* Nav arrows */
    .slider-btn {
      position: absolute;
      top: 80%;
      transform: translateY(-50%);
      z-index: 10;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: transparent;
      background: rgb(255 255 255 / 13%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      font-size: 18px;
      line-height: 1;
      padding: 0;
    }

    .slider-btn:hover {
      background: rgba(0,0,0,0.65);
      border-color: #fff;
    }

    .slider-btn.prev { left: 110px; }
    .slider-btn.next { left: 160px; }

    /* Dots */
    /* .slider-dots {
      position: absolute;
      bottom: 16px;
      left: clamp(1.25rem, 5vw, 4rem);
      z-index: 10;
      display: flex;
      gap: 7px;
      display: none;
    } */

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      border: none;
      padding: 0;
    }

    .dot.active {
      background: #fff;
      transform: scale(1.25);
    }

    /* Fade transition */
    .slide {
      animation: none;
    }
    .slide.fade-in {
      animation: fadeIn 0.55s ease forwards;
    }
    .nsdc-logo{
      position: absolute;
      right: 100px;
      bottom: 100px;
      z-index: 1;
    }
    .nsdc-img{
      max-width: 170px;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* Responsive tweaks */
    @media (max-width: 576px) {
      .slide {
        min-height: 340px;
        height: 72vw;
        max-height: 420px;
      }

      .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
      }

      .slider-btn.prev { left: 30px; }
      .slider-btn.next { left: 70px; }
      .slide-title{
      font-size: 32px;
      }
      .slide-content{
        padding: 0 20px !important;
      }
      .nsdc-img{
      max-width: 80px;
    }
    .nsdc-logo{
      right: 20px;
      bottom: 50px;
    }
    }
   

/* Stats */
 .stats-strip {
      background: #fff;
      padding: 1.5rem 0;
    }
 
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
 
    .stat-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      border: 1px solid #e6f2fa;
      border-radius: 10px;
      padding: 1.5rem 1.25rem;
      /* background: #fff; */
      background: linear-gradient(356.72deg, #0476b316 -73.31%, #ffffff16 124.92%);

    }
 
    .stat-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #1a6faf;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .stat-icon svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }
 
    .stat-number {
      font-size: 1.3rem;
      font-weight: 600;
      color: #0475B3;
      line-height: 1.2;
    }
 
    .stat-label {
      font-size: 0.8rem;
      color: #666;
      line-height: 1.4;
      margin-top: 2px;
    }
 
    @media (max-width: 640px) {
      .stats-grid { grid-template-columns: 1fr; }
    }
    /* About Section */
  /* ── About Section ── */
.about-section {
  background: #fff;
  padding: 4rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 1.25rem;
}

.about-left p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-left p:last-child {
  margin-bottom: 0;
}

/* ── Right: card slider ── */
.about-right {
  background: #1a6faf;
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
  overflow: hidden;
}

.cards-viewport {
  overflow: hidden;
  width: 100%;
}

.cards-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s ease;
}

.activity-card {
  flex: 0 0 calc(50% - 0.5rem);
  background: #1a6faf;
  border-radius: 10px;
  overflow: hidden;
}

.activity-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.activity-card-body {
  padding: 0.85rem 0.25rem 0.5rem;
}

.activity-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #F1F916;
  text-transform: uppercase;
  /* margin-bottom: 0.3rem; */
}

.activity-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  /* margin-bottom: 0.4rem; */
}

.activity-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}

/* About section dots */
#sliderDots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.about-dot.active {
  background: #2fbaff;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .activity-card {
    flex: 0 0 100%;
  }
}

/* core philosophy */
    .core-philosophy {
      min-height: 576px;
      padding: 110px 0 0px;
      color: #ffffff;
      overflow: hidden;
      background: #fff;
    }

    .core-title {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 800;
      text-align: center;
      margin-bottom: 4px;
      color: #000;
    }

    .core-quote {
      text-align: center;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(28px, 4.5vw, 40px);
      font-weight: 700;
      font-style: italic;
      color: #0475b3;
      line-height: 1.2;
      margin-bottom: 48px;
    }
.core-philosophy-wrap{
  padding-bottom: 110px!important;
}
    .philosophy-layout {
      display: grid;
      grid-template-columns: minmax(222px, 300px) minmax(305px, 600px) minmax(220px, 280px);
      grid-template-areas:
        "card1 tree card2"
        "card3 tree card4";
      gap: 12px 56px;
      align-items: center;
      justify-content: space-between;
    }

    .philosophy-card {
      min-height: 170px;
      padding: 52px 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 76px 0px #0091E333;
      opacity: 0;
      transform: translateY(18px);
      transition: 0.7s ease;
    }

    .core-philosophy.show .philosophy-card {
      opacity: 1;
      transform: translateY(0);
    }

    .card-1 {
      grid-area: card1;
      border-radius: 0 133px 0 133px;
    }

    .card-2 {
      grid-area: card2;
      border-radius: 133px 0 133px 0;
    }

    .card-3 {
      grid-area: card3;
      border-radius: 133px 0 133px 0;
    }

    .card-4 {
      grid-area: card4;
      border-radius: 0 133px 0 133px;
    }

    .icon-circle {
      width: 60px;
      height: 60px;
      margin: 0 auto 18px;
      border-radius: 50%;
      background: #0475b3;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 22px;
    }
    .icon-circle img{
    padding: 16px;
    }
    .philosophy-card h4 {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
      color: #000;
    }

    .philosophy-card p {
      font-size: 12px;
      line-height: 1.35;
      margin: 0;
      color: #000000CC;
    }

    .tree-wrap {
      grid-area: tree;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 330px;
    }

    .tree-svg {
      width: min(100%, 390px);
      height: auto;
      fill: #ffffff;
      filter: drop-shadow(0 0 2px rgba(255,255,255,0.15));
      opacity: 0;
      transform: scale(0.94);
      transition: 0.8s ease 0.15s;
    }

    .core-philosophy.show .tree-svg {
      opacity: 1;
      transform: scale(1);
    }

    @media (max-width: 991px) {
      .core-philosophy {
        padding: 48px 0;
      }

      .core-quote {
        margin-bottom: 34px;
      }

      .philosophy-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
          "tree tree"
          "card1 card2"
          "card3 card4";
        gap: 18px;
      }

      .tree-wrap {
        min-height: auto;
      }

      .philosophy-card {
        min-height: 155px;
      }
    }

    @media (max-width: 575px) {
      .site-container {
        padding: 0 16px;
      }

      .philosophy-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "tree"
          "card1"
          "card2"
          "card3"
          "card4";
      }

      .philosophy-card,
      .card-1,
      .card-2,
      .card-3,
      .card-4 {
        border-radius: 26px;
      }

      .tree-svg {
        width: 280px;
      }
    }
    /* founders message */
    .founders-message-wrap{
      background: radial-gradient(#014C77, #081E2D);
      padding: 110px 0;
    }
    .founders-message-section {
      min-height: 590px;
      padding: 20px 0 30px;
      color: #ffffff;
      background:
        radial-gradient(circle at center, rgba(0, 145, 210, 0.12), transparent 46%),
        linear-gradient(180deg, #07334a 0%, #062436 100%);
      overflow: hidden;
    }

.founders-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}

.founders-heading span {
  display: inline-block;
  width: 145px;
  height: 5px;
  background: #089de5;
}

.founder-message {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  max-width: fit-content;
  margin: auto;
}

.founder-message-bottom {
  grid-template-columns: 1fr 190px;
  margin-top: 84px;
}

.founder-image-wrap {
  position: relative;
  width: 180px;
  height: 180px;
}

.founder-img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  left: 34px;
  top: 26px;
  z-index: 2;
}

.founder-image-right .founder-img {
  left: 0;
}

.quote-mark {
  position: absolute;
  font-family: math;
  font-size: 250px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #00b956;
  opacity: 0.95;
  z-index: 1;
}

.quote-left {
  left: -10px;
  top: -6px;
}

.quote-right {
  right: -8px;
  top: -18px;
}

.founder-content {
  position: relative;
  max-width: 730px;
}

.message-text {
  max-width: 730px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.founder-meta {
  margin-top: 22px;
  font-size: 12px;
}

.founder-meta-right {
  text-align: right;
}

.founder-meta-left {
  text-align: left;
}

.founder-meta h5 {
  display: inline-block;
  margin: 0 0 5px;
  color: #03a9ff;
  font-size: 13px;
  font-weight: 700;
}

.founder-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  line-height: 1.9;
}

.founder-meta .line {
  display: inline-block;
  width: 145px;
  height: 1px;
  margin: 0 16px 4px;
  background: rgba(255, 255, 255, 0.08);
}

.founders-message-section .founder-message {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.founders-message-section.show .founder-message {
  opacity: 1;
  transform: translateY(0);
}

.founders-message-section.show .founder-message-bottom {
  transition-delay: 0.15s;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .founder-message,
  .founder-message-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    margin-top: 45px;
  }

  .founder-message-bottom .founder-content {
    order: 2;
  }

  .founder-message-bottom .founder-image-wrap {
    order: 1;
  }

  .founder-image-wrap {
    margin: 0 auto;
  }

  .message-text {
    max-width: 100%;
  }

  .founder-meta,
  .founder-meta-right,
  .founder-meta-left {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .founders-message-section {
    padding: 28px 0 42px;
  }

  .founder-message-bottom {
    margin-top: 58px;
  }

  .founder-image-wrap {
    width: 150px;
    height: 150px;
  }

  .founder-img {
    width: 122px;
    height: 122px;
    left: 28px;
    top: 24px;
  }

  .founder-image-right .founder-img {
    left: 0;
  }

  .quote-mark {
    font-size: 120px;
  }

  .message-text {
    font-size: 14px;
    line-height: 1.75;
  }

  .founder-meta .line {
    display: block;
    margin: 12px auto;
  }
}

.leadership-section {
  padding: 110px 0;
  background: #ffffff;
  color: #000;
  font-family: "Inter", Arial, sans-serif;
}

.leadership-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.leadership-header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.leadership-controls {
  display: flex;
  gap: 8px;
  position: relative;
}

.leadership-controls.slider-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.25s ease;
  
}

.leadership-controls .slider-btn{
  display:none;
}
.leadership-controls.slider-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.leadership-controls .leadership-prev{
  left: -100px;
}
.leadership-controls .leadership-next{
  left: -50px;
}
.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.leadership-viewport {
  overflow: hidden;
}

.leadership-track {
  display: flex;
  transition: transform 0.45s ease;
}

.leader-slide {
  flex: 0 0 33.3333%;
  padding: 0 10px;
}

.leader-card {
  height: 100%;
  min-height: 310px;
  background: #fff4e3;
  border-radius: 8px;
  padding: 29px 28px 26px;
  text-align: center;
}
.leader-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.leader-photo-box {
  position: relative;
  width: 240px;
  height: 220px;
  margin: 0 auto 17px;
  background: #fff;
  overflow: hidden;
}

.orange-shape {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 150px;
  transform: translateX(-50%);
  background: #ffa300;
  border-bottom-left-radius: 58px;
  border-bottom-right-radius: 58px;
  z-index: 1;
}

.leader-photo-box img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 230px;
  object-fit: contain;
  transform: translateX(-50%);
  z-index: 2;
}

.leader-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}
.leader-title img{
    max-width: 16px;
}

.leader-card h3 a {
  color: #0077b5;
  font-size: 12px;
  margin-left: 3px;
  text-decoration: none;
}

.leader-card h6 {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  color: #111;
}

.leader-card p {
    max-width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.2;
    color: #111;
}

.leader-card p a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .leader-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .leadership-section {
    padding: 44px 0;
  }

  .leadership-header {
    margin-bottom: 20px;
  }

  .leader-slide {
    flex: 0 0 100%;
    padding: 0;
  }

  .leader-card {
    min-height: 300px;
    padding: 28px 22px;
  }
}

.areas-work-section {
  padding: 110px 0 40px;
  background: #ffffff;
  color: #000;
  font-family: "Inter", Arial, sans-serif;
}

.areas-title {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.area-card {
  min-height: 289px;
  height: 100%;
  padding: 26px 16px 24px;
  border-radius: 8px;
  transition: 0.35s ease;
  opacity: 0;
  transform: translateY(22px);
}

.area-card.show {
  opacity: 1;
  transform: translateY(0);
}

.area-card:hover {
  transform: translateY(-6px);
}

.area-green {
  background: #cef9df;
}

.area-blue {
  background: #d8e9ff;
}

.area-purple {
  background: #f0d8f8;
}

.area-yellow {
  background: #fff3c8;
}

.area-icon {
    width: 80px;
    height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-icon i {
  font-size: 23px;
  line-height: 1;
}
.area-icon img{
padding: 14px;
}

.area-green .area-icon i {
  color: #00b98b;
}

.area-blue .area-icon i {
  color: #237bff;
}

.area-purple .area-icon i {
  color: #b148e8;
}

.area-yellow .area-icon i {
  color: #f4a000;
}

.area-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.area-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: #111111;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .areas-work-section {
    padding: 36px 0 56px;
  }

  .area-card {
    min-height: 270px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .areas-title {
    margin-bottom: 22px;
  }

  .area-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .area-card p {
    font-size: 10.5px;
  }
}

.problems-section {
  padding: 110px 0 110px;
  background: #087db2;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.problems-title {
  margin: 0 0 32px;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.6px;
}

.problem-card {
  min-height: 198px;
  height: 100%;
  padding: 30px 20px 22px;
  background: #ffffff;
  color: #101828;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: 0.35s ease;
  opacity: 0;
  transform: translateY(22px);
}

.problem-card.show {
  opacity: 1;
  transform: translateY(0);
}

.problem-card:hover {
  transform: translateY(-6px);
}

.problem-icon {
    width: 80px;
    height: 80px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #087db2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}
.problem-icon img{
padding: 14px;
}
.problem-card h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #111827;
}

.problem-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    color: #374151;
    max-width: 250px;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .problems-section {
    padding: 48px 0 58px;
  }

  .problem-card {
    min-height: 185px;
  }

  .problem-card p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .problems-section {
    padding: 42px 0 48px;
  }

  .problems-title {
    margin-bottom: 24px;
  }

  .problem-card {
    min-height: auto;
    padding: 20px 18px 24px;
  }

  .problem-icon {
    width: 50px;
    height: 50px;
  }

  .problem-card p {
    font-size: 10.5px;
  }
}

.sectors-cover-section {
  padding: 66px 0 64px;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
}

.sectors-content h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #050505;
}

.sectors-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #344054;
}

.sectors-image-wrap {
  width: 100%;
  margin-left: auto;
  border-radius: 14px;
  overflow: hidden;
}

.sectors-image-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .sectors-cover-section {
    padding: 52px 0;
  }

  .sectors-content {
    text-align: center;
  }

  .sectors-content p {
    max-width: 100%;
  }

  .sectors-image-wrap {
    margin: 0 auto;
    max-width: 620px;
  }

  .sectors-image-wrap img {
    height: auto;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .sectors-cover-section {
    padding: 42px 0;
  }

  .sectors-content h2 {
    margin-bottom: 12px;
  }

  .sectors-content p {
    font-size: 11.5px;
    line-height: 1.75;
  }

  .sectors-image-wrap,
  .sectors-image-wrap img {
    border-radius: 10px;
  }
}

.industries-section {
  padding: 28px 0 64px;
  background: #ffffff;
  color: #071b3d;
}

.industries-title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #000000;
}

.industries-grid {
  row-gap: 12px;
}

.industry-card {
    height: 60px;
    padding: 44px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #ffe0ad;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(255, 163, 0, 0.08);
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: #ff9d00;
  box-shadow: 0 14px 28px rgba(255, 163, 0, 0.16);
}

.industry-icon {
    width: 60px;
    height: 60px;
    min-width: 46px;
  border-radius: 5px;
  background: #ff9d00;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon i {
  font-size: 16px;
  line-height: 1;
}
.industry-icon img{
  padding: 0px;
  max-width: 24px;
  width: 30px;
}
.industry-card span {
  font-size: 14px;
  font-weight: 600;
  color: #071b3d;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .industries-section {
    padding: 34px 0 56px;
  }

  .industry-card {
    height: 58px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .industries-section {
    padding: 30px 0 46px;
  }

  .industries-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .industry-card {
    height: 56px;
  }
}

.focus-section {
  padding: 54px 0 62px;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.focus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.focus-header h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.7px;
  color: #000;
}

.focus-controls {
  display: flex;
  gap: 8px;
}

.focus-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgb(60 58 58 / 8%);
  background: rgba(255, 255, 255, 0.06);
  color: #8d8d8d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: 0.25s ease;
}

.focus-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.focus-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.focus-viewport {
  overflow: hidden;
}

.focus-track {
  display: flex;
  transition: transform 0.45s ease;
}

.focus-slide {
  flex: 0 0 33.3333%;
  padding-right: 14px;
}

.focus-card {
  height: 100%;
}

.focus-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 18px;
}

.focus-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #000;
}

.focus-card p {
    max-width: 360px;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    color: #312d2d;
}

.focus-card .focus-highlight {
  color: #13a8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.focus-section .focus-slide {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.6s ease;
}

.focus-section.show .focus-slide {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .focus-section {
    padding: 0px 0 56px;
  }

  .focus-slide {
    flex: 0 0 50%;
  }

  .focus-card img {
    height: 210px;
  }

  .focus-card p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .focus-section {
    padding: 42px 0 48px;
  }

  .focus-header {
    margin-bottom: 20px;
  }

  .focus-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .focus-card img {
    height: 210px;
  }

  .focus-card p {
    font-size: 10.5px;
  }
}

.associations-main-title {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.6px;
}

.association-block {
  margin-bottom: 54px;
}

.association-block:last-of-type {
  margin-bottom: 14px;
}

.association-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.association-heading h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.assoc-controls {
  display: flex;
  gap: 8px;
}

.assoc-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #d4e8f5;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: 0.25s ease;
}

.assoc-btn:hover {
  background: #087db2;
  color: #fff;
  border-color: #087db2;
}

.assoc-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.assoc-viewport {
  overflow: hidden;
}

.assoc-track {
  display: flex;
  transition: transform 0.45s ease;
}

.assoc-slide {
  flex: 0 0 25%;
  padding-right: 14px;
}

.assoc-card {
  min-height: 164px;
  height: 100%;
  padding: 22px 20px 20px;
  background: #fff;
  border: 1px solid #99d0ed;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 0 rgba(8, 125, 178, 0.08);
  transition: 0.3s ease;
}

.assoc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(8, 125, 178, 0.13);
}

.assoc-logo {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-bottom: 1px dashed #bfe5f8;
}

.assoc-logo img {
  max-width: 120px;
  max-height: 54px;
  object-fit: contain;
}

.assoc-card p {
    max-width: 200px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.35;
    color: #101828;
}

.association-stats {
  margin-top: -2px;
}

.impact-card {
  min-height: 120px;
  height: 100%;
  padding: 30px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #087db2;
  color: #fff;
  border-radius: 8px;
}

.impact-icon {
width: 50px;
    height: 50px;
    min-width: 50px;
  border-radius: 50%;
  background: #fff;
  color: #087db2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon i {
  font-size: 17px;
  line-height: 1;
}

.impact-card h4 {
  margin: 0 0 2px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.impact-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
}
.associations-section {
    padding: 36px 0 42px;
    
  }
@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .assoc-slide {
    flex: 0 0 50%;
  }

  .associations-section {
    padding: 36px 0 42px;
    
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .association-heading {
    gap: 16px;
    align-items: flex-start;
  }

  .association-heading h3 {
    font-size: 18px;
  }

  .assoc-slide {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .association-block {
    margin-bottom: 42px;
  }
  .association-block:nth-last-child(2) {
    margin-bottom: 0;
  }
  .assoc-card {
    min-height: 155px;
  }

  .impact-card {
    justify-content: flex-start;
  }
}
.impact-section {
  padding: 64px 0 58px;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
}

.impact-heading {
  margin-bottom: 30px;
}

.impact-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #000000;
}

.impact-heading p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #344054;
}

/* Cards */
.impact-main-card,
.impact-small-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* Images */
.impact-main-img,
.impact-small-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.impact-main-img {
  height: 522px;
}

.impact-small-card img {
  height: 250px;
}

/* Gradient overlay on images */
.impact-main-card::before,
.impact-small-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.48) 38%,
    rgba(0, 0, 0, 0.12) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Text above gradient */
.impact-text,
.impact-content-wrap {
  position: absolute;
  z-index: 2;
  color: #ffffff;
}

/* Main image text */
.impact-text {
  bottom: 30px;
  left: 30px;
  right: 30px;
}

.impact-text h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.impact-text p {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    color: #e7e7e7cf;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Side cards */
.impact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.impact-content-wrap {
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.impact-small-card h4 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.impact-small-card p {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
    color: #e7e7e7cf;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Animation */
.impact-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.impact-section.show .impact-animate {
  opacity: 1;
  transform: translateY(0);
}

.impact-section.show .impact-small-card:nth-child(2) {
  transition-delay: 0.12s;
}

/* Tablet */
@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .impact-section {
    padding: 52px 0;
  }

  .impact-main-img,
  .impact-small-card img {
    height: auto;
    max-height: 360px;
  }

  .impact-text {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .impact-content-wrap {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .impact-text p {
    max-width: 100%;
    font-size: 10px;
  }

  .impact-side {
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .impact-section {
    padding: 42px 0;
  }

  .impact-heading {
    margin-bottom: 22px;
  }

  .impact-heading h2 {
    font-size: 24px;
  }

  .impact-main-img,
  .impact-small-card img {
    min-height: 240px;
    max-height: 320px;
  }

  .impact-text {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .impact-content-wrap {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }

  .impact-small-card h4,
  .impact-text h3 {
    font-size: 12.5px;
  }

  .impact-text p,
  .impact-small-card p {
    font-size: 9.8px;
    line-height: 1.6;
  }
}
.success-stories-section {
      padding: 24px 0 54px;
      background: #ffffff;
      color: #000000;
      overflow: hidden;
    }

    .success-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 26px;
    }

    .success-header h2 {
      margin: 0;
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 900;
      letter-spacing: -0.8px;
    }

    .success-controls {
      display: flex;
      gap: 8px;
    }

    .success-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid #ececec;
      background: #ffffff;
      color: #111111;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: 0.25s ease;
    }

    .success-btn:hover {
      background: #111111;
      color: #ffffff;
      border-color: #111111;
    }

    .success-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }

    .success-viewport {
      overflow: hidden;
    }

    .success-track {
      display: flex;
      transition: transform 0.45s ease;
    }

    .success-slide {
      flex: 0 0 33%;
      padding-right: 14px;
    }

    .story-card {
      position: relative;
      height: 240px;
      border-radius: 7px;
      overflow: hidden;
      background: #f2f2f2;
      cursor: pointer;
      border: 1px solid transparent;
      transition: 0.3s ease;
    }

    .story-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: 0.4s ease;
    }

    .story-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(2, 20, 31, 0.08) 0%,
        rgba(2, 20, 31, 0.42) 55%,
        rgba(2, 20, 31, 0.82) 100%
      );
      opacity: 1;
      transition: 0.3s ease;
      z-index: 1;
    }

    .story-card:hover {
      border-color: #0f3347;
    }

    .story-card:hover img {
      transform: scale(1.04);
    }

    .story-card:hover::after,
    .story-card:focus-within::after {
      opacity: 1;
    }

    .story-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: end;
      opacity: 1;
      transform: translateY(14px);
      transition: 0.3s ease;
      pointer-events: none;
      bottom: 30px;
    }

    .story-card:hover .story-overlay,
    .story-card:focus-within .story-overlay {
      opacity: 1;
      transform: translateY(0);
    }

    .play-btn {
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 50%;
      background: #ffffff;
      color: #087db2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      transition: 0.25s ease;
      pointer-events: auto;
    }

    .play-btn:hover {
      transform: scale(1.1);
    }

    .story-overlay span {
      margin-top: 16px;
      font-size: 14px;
      font-weight: 500;
      color: #ffffff;
    }

    .story-video-modal .modal-content {
      position: relative;
      background: #000000;
      border: 0;
      border-radius: 12px;
      overflow: hidden;
    }

    .video-close-btn {
      position: absolute;
      top: -38px;
      right: 0;
      z-index: 5;
      background-color: #ffffff;
      opacity: 1;
      border-radius: 50%;
    }

    @media (max-width: 991px) {
      .site-container {
        padding: 0 32px;
      }

      .success-slide {
        flex: 0 0 50%;
      }

      .story-card {
        height: 280px;
      }
    }

    @media (max-width: 575px) {
      .site-container {
        padding: 0 18px;
      }

      .success-stories-section {
        padding: 38px 0 46px;
      }

      .success-header {
        margin-bottom: 22px;
      }

      .success-slide {
        flex: 0 0 100%;
        padding-right: 0;
      }

      .story-card {
        height: 310px;
      }
    }

    .success-list-section {
  padding: 60px 0 60px;
  background: #eef9ff;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
}

.success-list-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.success-person-card {
  height: 100%;
  transition: 0.3s ease;
}

.success-person-card:hover {
  transform: translateY(-5px);
}

.success-person-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 18px;
}

.success-person-content h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #000000;
}

.success-person-content .designation {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #454545;
}

.success-person-content .location {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #4b5563;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .success-list-section {
    padding: 48px 0 64px;
  }

  .success-person-card img {
    height: 190px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .success-list-section {
    padding: 40px 0 52px;
  }

  .success-list-title {
    margin-bottom: 22px;
  }

  .success-person-card img {
    height: 220px;
    margin-bottom: 14px;
  }

  .success-person-content h3 {
    font-size: 14px;
  }

  .success-person-content .designation,
  .success-person-content .location {
    font-size: 10.5px;
  }
}

.rozgar-section {
  padding: 0 0 64px;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.rozgar-content {
  max-width: 940px;
}

.rozgar-content h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: #000;
}

.rozgar-content h6 {
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

.rozgar-content p {
  max-width: 910px;
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.rozgar-slider {
  position: relative;
  margin-top: 44px;
}

.rozgar-viewport {
  overflow: hidden;
  width: 100%;
}

.rozgar-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.rozgar-slide {
  flex: 0 0 680px;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  
}
.rozgar-slide:after{
     content: "";
    width: 96%;
    height: 96%;
    top: 50%;
    left: 50%;
    border: 1px solid #ffffffb5;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.rozgar-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.rozgar-slide:hover img {
  transform: scale(1.05);
}

.rozgar-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.rozgar-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.rozgar-prev {
  left: 18px;
}

.rozgar-next {
  right: 18px;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .rozgar-section {
    padding: 48px 0 58px;
  }

  .rozgar-track {
    gap: 18px;
  }

  .rozgar-slide {
    flex-basis: 280px;
    height: 155px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .rozgar-section {
    padding: 42px 0 50px;
  }

  .rozgar-content h6 {
    margin-bottom: 18px;
  }

  .rozgar-content p {
    font-size: 10.5px;
    line-height: 1.7;
  }

  .rozgar-slider {
    margin-top: 32px;
  }

  .rozgar-track {
    gap: 14px;
  }

  .rozgar-slide {
    flex: 0 0 82vw;
    height: 165px;
  }

  .rozgar-btn {
    width: 30px;
    height: 30px;
  }

  .rozgar-prev {
    left: 10px;
  }

  .rozgar-next {
    right: 10px;
  }
}

.recognition-section {
  padding: 60px 0 60px;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.recognition-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.recognition-header h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.recognition-controls {
  display: flex;
  gap: 8px;
}

.recognition-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.25s ease;
}

.recognition-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.recognition-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.recognition-slider {
  width: 100%;
}

.recognition-viewport {
  overflow: hidden;
  width: 100%;
}

.recognition-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.recognition-slide {
  flex: 0 0 660px;
}

.recognition-card {
  position: relative;
  height: 454px;
  border-radius: 7px;
  overflow: hidden;
  background: #e9eef3;
}

.recognition-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.recognition-card:hover img {
  transform: scale(1.05);
}

.recognition-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 20%,
    rgba(0, 0, 0, 0.32) 68%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
}

.recognition-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .recognition-track {
    padding-left: calc((100vw - 1052px) / 2 - 170px);
  }
}

@media (max-width: 1199px) {
  .recognition-track {
    padding-left: 56px;
  }
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .recognition-section {
    padding: 48px 0 36px;
  }

  .recognition-track {
    padding-left: 32px;
  }

  .recognition-slide {
    flex: 0 0 320px;
  }

  .recognition-card {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .recognition-section {
    padding: 42px 0 34px;
  }

  .recognition-header {
    margin-bottom: 24px;
  }

  .recognition-track {
    gap: 12px;
    padding-left: 18px;
  }

  .recognition-slide {
    flex: 0 0 82vw;
  }

  .recognition-card {
    height: 220px;
  }

  .recognition-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 11px;
  }
}

.industry-partners-section {
  padding: 48px 0 54px;
  background: #f0fbff;
  font-family: "Inter", Arial, sans-serif;
  color: #000000;
}

.partners-heading {
  margin-bottom: 38px;
}

.partners-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.partners-heading h2 span {
  color: #087db2;
}

.partners-heading p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #507184;
}
.site-container {
  padding: 0 40px;
}

.industry-partners-section {
  padding: 54px 0 60px;
}

.partners-heading {
  margin-bottom: 36px;
}

/* partner section */
.partners-logo-grid {
  --logo-height: 77px;
  --slider-speed: 500s;
  --logo-item-width: 190px;

  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #dff2fb;
  border-left: 1px solid #dff2fb;
}

.partner-logo-row {
  width: 100%;
  overflow: hidden;
}

.partner-logo-track {
  display: flex;
  width: max-content;
  animation-duration: 230s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

@media (max-width: 767px) {
  .partner-logo-track {
    animation-duration: 1550s;
  }
}
.partner-logo-row.row-left-to-right .partner-logo-track {
  animation-name: partners-scroll-left-to-right;
}

.partner-logo-row.row-right-to-left .partner-logo-track {
  animation-name: partners-scroll-right-to-left;
}

.partner-logo-set {
  display: flex;
  flex-shrink: 0;
}

.partner-logo {
  width: var(--logo-item-width);
  min-width: var(--logo-item-width);
  max-width: var(--logo-item-width);
  height: var(--logo-height);
  padding: 0;
  flex: 0 0 var(--logo-item-width);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-right: 1px solid #dff2fb;
  border-bottom: 1px solid #dff2fb;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  background: #f8fdff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(8, 125, 178, 0.08);
  z-index: 2;
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

@keyframes partners-scroll-right-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes partners-scroll-left-to-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.partners-logo-grid:hover .partner-logo-track {
  animation-play-state: paused;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .industry-partners-section {
    padding: 44px 0 50px;
  }

  .partners-logo-grid {
    --logo-height: 82px;
    --slider-speed: 45s;
  }

  .partner-logo {
    padding: 14px 16px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .industry-partners-section {
    padding: 38px 0 42px;
  }

  .partners-heading {
    margin-bottom: 28px;
  }

  .partners-logo-grid {
    --logo-height: 78px;
    --slider-speed: 35s;
  }

  .partner-logo {
    padding: 12px;
  }

  .partner-logo img {
    max-height: 80px;
  }
}

/* partner section end*/
.presence-section {
  padding: 70px 0 58px;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", Arial, sans-serif;
  overflow: hidden;
}

.presence-content {
  max-width: 520px;
}

.presence-content h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.presence-content p {
  margin: 0;
  max-width: 510px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  color: #111111;
}

.presence-content p strong {
  font-weight: 800;
}

.presence-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.presence-stat-card {
  min-width: 150px;
  height: 62px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f8fd;
  border: 1px solid #e2f0f8;
  border-radius: 8px;
  transition: 0.3s ease;
}

.presence-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(8, 125, 178, 0.1);
}

.presence-stat-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #087db2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presence-stat-icon i {
  font-size: 15px;
  line-height: 1;
}
.stat-icon img{
  padding: 14px;
}
.presence-stat-card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #000000;
}

.presence-map-wrap {
  max-width: 430px;
  margin: auto;
  text-align: center;
}

.presence-map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .presence-section {
    padding: 54px 0;
  }

  .presence-content {
    max-width: 100%;
    text-align: center;
  }

  .presence-content p {
    max-width: 100%;
  }

  .presence-stats {
    justify-content: center;
  }

  .presence-map-wrap {
    margin: 28px auto 0;
    max-width: 380px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .presence-section {
    padding: 42px 0;
  }

  .presence-content h2 {
    margin-bottom: 14px;
  }

  .presence-content p {
    font-size: 10.5px;
    line-height: 1.7;
  }

  .presence-stats {
    gap: 12px;
  }

  .presence-stat-card {
    width: 100%;
    justify-content: center;
  }

  .presence-map-wrap {
    max-width: 310px;
  }
}

.footer-section {
  padding: 48px 0 30px;
  background: #062635;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 250px 1fr 220px;
  gap: 54px;
  align-items: flex-start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
}

.footer-brand p {
    max-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #0aa6ff;
}

.footer-newsletter h4 {
  margin: 0 0 18px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form input {
  width: 100%;
  height: 40px;
  padding: 0 18px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 3px;
  outline: none;
  background: #ffffff2e;
  color: #fff;
  font-size: 11px;
}

.newsletter-form input::placeholder {
  color: #8a8f98;
}

.newsletter-form .wpcf7-submit {
  min-width: 104px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: #0784bd;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}
 .newsletter-form .wpcf7-not-valid-tip{
       bottom: -90px;
       font-size: 12px;
 }
 .newsletter-form .wpcf7-response-output{
   display: none;
 }
.newsletter-form .wpcf7-submit:hover {
  background: #0aa6ff;
}

.footer-divider {
  height: 1px;
  margin: 58px 0 30px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.contact-item span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-item i {
  font-size: 13px;
}

.footer-social-wrap {
  min-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 58px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: #0784bd;
  border-color: #0784bd;
}

.footer-social i {
  font-size: 14px;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.footer-links .footer-title{
  color: #9FB2C4;
}
@media (max-width: 991px) {
  .site-container {
    padding: 0 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-social-wrap {
    align-items: flex-start;
    min-width: auto;
  }

  .footer-social {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .site-container {
    padding: 0 18px;
  }

  .footer-section {
    padding: 40px 0 28px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-divider {
    margin: 36px 0 26px;
  }

  .contact-row {
    gap: 16px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .footer-social {
    gap: 8px;
    flex-wrap: wrap;
  }
}
 
  .thematic-areas__title {
    margin: 0 0 24px;
    font-size: 34px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.01em;
  }
 
  .thematic-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
 
  .thematic-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    background: #d9d9d9;
    cursor: pointer;
  }
 
  .thematic-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
 
  .thematic-card:hover .thematic-card__img {
    transform: scale(1.06);
  }
 
  .thematic-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 70%);
  }
 
  .thematic-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0 12px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }
 
  @media (max-width: 900px) {
    .thematic-areas__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 480px) {
    .thematic-areas {
      padding: 32px 20px 48px;
    }
    .thematic-areas__grid {
      grid-template-columns: 1fr;
    }
  }
  
  
#cardsTrack {
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

#cardsTrack.dragging {
  cursor: grabbing;
}

#cardsTrack.dragging,
#cardsTrack.dragging * {
  user-select: none;
}

#cardsTrack img {
  -webkit-user-drag: none;
  user-select: none;
}

.leader-read-more {
  border: none;
  background: transparent;
  color: #087db2;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}

.leader-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.leader-modal.active {
  display: flex;
}

.leader-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.leader-modal-box {
  position: relative;
  background: #fff;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 35px 30px;
  border-radius: 12px;
  z-index: 2;
}
.pop-up-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop-up-wrap .leader-photo-box{
position: relative;
    width: 1417px;
    height: 220px;
    margin: 0 auto 17px;
    background: #fff;
    overflow: hidden;
}
.leader-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.leader-modal-box h3 {
  margin-bottom: 5px;
}

.leader-modal-box h6 {
  margin-bottom: 20px;
  color: #666;
}

.leader-modal-content p:last-child {
  margin-bottom: 0;
}

  .contact-section {
      min-height: 100vh;
      background: #eef9fc;
      display: flex;
      align-items: center;
      padding: 70px 0;
    }

    .contact-title {
      font-size: 38px;
      font-weight: 800;
      line-height: 1.2;
      color: #000;
      margin-bottom: 25px;
    }

    .contact-text {
      font-size: 14px;
      line-height: 1.5;
      color: #111;
      max-width: 560px;
    }

    .form-label {
      font-size: 16px;
      font-weight: 400;
      color: #000;
      margin-bottom: 10px;
    }

    .form-control,
    .form-select {
      height: 64px;
      border: 1px solid #9bd0f0;
      border-radius: 8px;
      font-size: 16px;
      padding: 0 18px;
      color: #666;
      box-shadow: none;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #0d7db5;
      box-shadow: none;
    }

    textarea.form-control {
      height: 150px;
      padding-top: 18px;
      resize: none;
    }

    .phone-group {
      height: 64px;
      border: 1px solid #9bd0f0;
      border-radius: 8px;
      background: #fff;
      display: flex;
      align-items: center;
      
    }
    .phone-group .wpcf7-not-valid-tip{
          bottom: -50px;
    }

    .phone-code {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 18px;
      height: 100%;
      color: #555;
      font-size: 16px;
      border-right: 0;
      white-space: nowrap;
    }

    .phone-input {
      border: none;
      height: 100%;
      flex: 1;
      padding: 0 18px;
      font-size: 16px;
      outline: none;
      color: #666;
      max-width: 270px;
    }

    .submit-btn {
      background: #087db5 !important;
      color: #fff;
      border: none;
      height: 58px;
      border-radius: 5px;
      font-size: 17px;
      font-weight: 700;
      padding: 0 70px;
      min-width: 300px;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
      background: #066b9c;
    }

    .button-wrap {
      display: flex;
      justify-content: flex-end;
      margin-top: 38px;
    }

    @media (max-width: 991px) {
      .contact-section {
        padding: 50px 0;
      }

      .contact-title {
        font-size: 40px;
      }

      .contact-left {
        margin-bottom: 40px;
      }
      .pop-up-wrap .leader-photo-box{
      display:none;
      }
    }

    @media (max-width: 576px) {
      .contact-title {
        font-size: 34px;
      }

      .contact-text {
        font-size: 16px;
      }

      .form-control,
      .form-select,
      .phone-group {
        height: 56px;
      }

      textarea.form-control {
        height: 130px;
      }

      .button-wrap {
        justify-content: center;
      }

      .submit-btn {
        width: 100%;
        min-width: auto;
      }
    }
    
    .wpcf7-form p{
      margin-bottom: 0px;
    }
    
    .focus-viewport {
      overflow: hidden;
    }
    
    .focus-track {
      display: flex;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    
    .focus-slide {
      flex: 0 0 33.333%;
    }
    
    .focus-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    
    @media (max-width: 991px) {
      .focus-slide {
        flex-basis: 50%;
      }
    }
    
    @media (max-width: 575px) {
      .focus-slide {
        flex-basis: 100%;
      }
    }
    
    .phone-row{
    display: flex;
    gap:10px;
    }
    .contact-item p{
        color: #fff;
    font-size: 14px;
    }
    
    .wpcf7-spinner{
    display:none;
    }
