:root {
    /* Font Families */
    --font-primary: "Figtree", sans-serif !important;
    --font-secondary: 'Calibri', sans-serif !important;

    /* Headings Font Sizes */
    --h1-size: 55px;
    --h2-size: 38px;
    --h3-size: 32px;
    --h4-size: 26px;
   

    /* Subheading */
    --subheading-size: 24px;
    --subheading-font-weight: 600 ;

    /* Description / Paragraphs */
    --description-size: 20px;
    --description-line-height: 24px;
    --inner-cards-description-size:18px;
    --inner-cards-description-line-height:24px;

   /* subtitles */
     
     --subtitle-size:24px;
     --subtitle-line-height:28px;

    /* Button Text */
    --button-font-size: 20px;
    --button-font-weight: 500;
    --button-line-height: 22px;


   /* Headings Font Weight */
   
    --h1-weight: 600;
    --h2-weight: 600;
    --h3-weight: 500;
    --h4-weight: 600;
   

    /* Headings line Height */

    --h1-line-height: 1.1;
    --h2-line-height: 1.2;
    --h3-line-height: 34px;
    --h4-line-height: 28px;

}


/* ABOUT US HERO SECTION */
.about-section {
  position: relative;
  width: 100%;
  height: 45vh; /* slightly shorter for balance */
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.163); /* darker overlay for better contrast */
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 60px;
}

.about-content h1 {
 font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 700;
  /* margin-bottom:30px; */
  margin: 16px 0;
}



/* Buttons */
.about-content .breadcrumb-btn {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #fff;
  padding: 8px 20px;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
 transition: transform 0.3s ease ;
  font-weight: 500; 
  text-decoration: none;  cursor: text;
font-family: var(--font-secondary);

}
.about-content .breadcrumb-btn:hover {
 background: rgba(255, 255, 255, 0.25);
  transform: scale(1.01);
}

/* ABOUT INFO SECTION */

    
    .about-info-section {
      background-color: #ffffff;
      color: #1c0d45;
      padding: 0 60px;
      align-items: center;
      max-width: 1600px;
      width: 100%;
      margin: 0 auto;
      padding: 60px;
    }
    .about-info-section .container-fluid{
      padding: 0px !important;
    }

    .about-info-section h1 {
      
      margin-bottom: 15px;
      color: #1c0d45;
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 

    }

    .about-info-section p {
     
      margin-bottom: 1.7rem;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
    }
.about-text div{
margin-bottom: 15px;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.about-image-row {
  display: flex;
  justify-content: center;
  gap: 45px; /* increased spacing between images */
   /* equal left/right spacing */
}
.about-text{
  font-size: 18px;
  color: #000;
}

.image-col {
  flex: 0.9; 
}

.image-col-wide {
  flex: 1.25; /* slightly wider first image */
}

.about-info-section .img-fluid {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




    

    /* Pill Button with Play Icon */
    .view-journey-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: #fff;
      color: #091d3e;
      border: none;
      
      padding: 10px 22px;
      border-radius: 50px;
      
      text-decoration: none;
   
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      
      margin-right: 90px !important;
font-family: var(--font-secondary);
font-size: 16px;
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
    }

   

    /* Round Play Icon inside button */
    .view-journey-btn .play-icon {
      display: inline-flex;
      position: absolute;
     
      justify-content: center;
      align-items: center;
      width:45px;
      height: 40px;
      border-radius: 50%;
      background-color: #fff;
      color: #091d3e;
      font-size: 1.1rem;
      margin-left: 150px;
    }

    /* .view-journey-btn .play-icon::before {
      content: "";
      border-left: 10px solid #091d3e;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      margin-left: 2px;
    } */


    /* Video Popup Overlay */
    .video-popup {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.7);
      z-index: 9999;
    }

    .video-popup-content {
      position: relative;
      max-width: 800px;
      width: 90%;
      background: black;
      border-radius: 8px;
      overflow: hidden;
    }

    .video-popup video {
      width: 100%;
      display: block;
    }

    .video-popup-close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 28px;
      color: white;
      cursor: pointer;
      z-index: 2;
    }

/* Milestones */

.milestone-section {
 
  background: #f0f0f0;
}
.milestone-section-inner-container{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 60px;
}
.milestone-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;

  margin-bottom: 40px;
}

.milestone-header h2 {
 
  color: #1c0d45;
  flex: 1;
  margin: 0;
  max-width: 480px;
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
}

.milestone-header p {
  flex: 1;
 
  max-width: 500px;
  color: #000;
  line-height: 1.7;
  margin: 0;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 40px 0;
}

.milestone-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

.milestone-item {
  flex: 1 1 22%;
  background: transparent;
}

.milestone-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #091d3e;
  margin-bottom: 10px;
}

.milestone-item strong {
  display: block;
  
  margin-bottom: 8px;
  font-weight: 700;
  color: #000000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.milestone-item p {
  
  line-height: 1.5;
  color: #000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.milestone-item .counter {
  font-size: 65px;
  font-weight: 500;
  color: #000000;
  font-family: var(--font-primary) !important;
}

@media (max-width: 768px) {
  .milestone-header {
    flex-direction: column;
    text-align: center;
  }

  .milestone-row {
    flex-direction: column;
    align-items: center;
  }

  .milestone-item {
    flex: 1 1 100%;
    max-width: 500px;
  }
}

/* Mission Section */
.mission-section {
  background-color: #fff;
  color: #091d3e;
  padding: 60px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.mission-content {
  /* padding-left: 30px; */
}
.mission-section h2 {
 
 
  /* line-height: 1.3; */
  color: #1c0d45;
  margin-bottom: 15px;
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height);
}

.mission-section p {
 
  color: #000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.mission-section .btn-read {
  
  background: #f96e46;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-transform: capitalize;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
max-width: fit-content;
}


.mission-section img {
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .mission-section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .mission-section p {
    text-align: center;
  }

  .mission-section .btn-read {
    justify-content: center;
  }
}

/* Vision Section */
.Vision-section {
  background-color: #fff;
  color: #091d3e;
  padding: 60px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.Vision-content {
  /* padding-right: 30px; */
}
.Vision-section h2 {
  
  /* line-height: 1.3; */
  color: #1c0d45;
  margin-bottom: 15px;
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
}

.Vision-section p {

  color: #000;
  font-weight: 400;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.Vision-section .btn-read {
  
  background: #f96e46;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-transform: capitalize;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
max-width: fit-content;
}


.Vision-section img {
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* leadership-spotlight */

.leadership-spotlight {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px !important;
  /* margin: 50px 0; */
  align-items: center;
  padding-bottom: 30px;
}
.leadership-spotlight-inner-container{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.leadership-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}

.leadership-text {
  flex: 1 1 45%;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}

.leadership-text h2 {
  font-size: 40px ;
  font-weight: 400 ;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
   max-width: 700px;
font-family: var(--font-primary);

}

.leadership-text p {
  
  color: #fff;
  margin-bottom: 20px;
  max-width: 800px;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

/* Buttons */
.leadership-text .btn-journey {
  background: rgba(255, 255, 255, 0.22);
 border: none;
  color: #fff;
  padding: 6px 12px; /* reduced padding */
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  backdrop-filter: blur(9px);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content; /* auto width based on text */
  min-width: unset; /* removes any default min-width */
  cursor: pointer;
  transition: all 0.3s ease;
 
 
}

.leadership-text .btn-journey:hover {
  background: rgba(255, 255, 255, 0.3);

  
}






.leadership-image img {
  width: 100%;
  height: 550px;

  object-fit: contain;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .leadership-spotlight {
    flex-direction: column;
    text-align: center;
  }

  .leadership-quote {
    font-size: 1.2rem;
  }

  .leadership-text h2 {
    font-size: 1.8rem;
  }

  .leadership-text p {
    font-size: 1rem;
  }
}

.team-section {
   text-align: center;
  margin: 0 auto;
  padding: 60px;
  max-width: 1600px;
  width: 100%;
  
}

.team-section h2 {
 
  color: #1c0d45;
  margin-bottom: 15px;
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height);
}



.team-intro {
 
   color: #000;
  max-width: 500px;
  margin: 0 auto 40px;
  /* line-height: 1.6; */
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.team-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.team-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
  gap: 15px; /* Define the gap between cards here */
}

.team-card {
  flex-shrink: 0;
  flex-basis: calc((100% - (4 * 15px)) / 5); 
  max-width: calc((100% - (4 * 15px)) / 5);
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border-radius: 12px;
  padding: 20px 0 10px;
  margin-right: 0; /* Important: Remove margin-right from the card itself */
}
.team-card:last-child {
  margin-right: 0;
}

.team-card img {
  width: 100%;
  max-width: 95%;
  height: auto;
  margin: 0 10px 25px 10px;
  display: block;
  
}

.member-header {
  display: flex;
  justify-content: space-between;
  margin: 0 10px;
  align-items: flex-start;
}

.member-info {
  flex: 1;
}

.member-info h4 {
  
  font-weight: 600;
  margin: 0 0 4px;
  color: #1c0d45;
font-family: var(--font-primary);
font-size: 22px;
line-height: 22px;

}

.member-info p {
 
  color: #000;
  margin: 0;
font-family: var(--font-secondary);
font-size: 18px;
line-height: 24px;
}

.linkedin-icon {
  margin-left: 10px;
  display: flex;
  align-items: center;
  text-decoration:none;
}
.linkedin-icon:focus,
.linkedin-icon:hover,
.linkedin-icon:visited {
  text-decoration: none; 
}

.linkedin-icon  .fa-linkedin {
  font-size: 25px;
  color: #007ab5;
  background-color: transparent;
}


/* Controls */
.team-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* bring controls closer to cards */
  gap: 10px; /* reduced space between arrows and dots */
}

.team-controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  color: #000;
}

.team-controls .arrow-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08);
}

/* Dots */
/* Dots */
.team-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* Tight spacing between dots */
}

.team-dots button {
  all: unset; /* resets default browser button styles */
  display: block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.team-dots button.active {
  background: #222;
  transform: scale(1.25);
}

/* Trusted Section Logo Slider */
.trusted-section .logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.trusted-section .logo-track {
    display: flex;
    align-items: center;
    width: max-content; /* CRITICAL: Allows track to be as wide as the logos */
    animation-name: trustedScroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* Duration is calculated by JS */
}

.trusted-section .logo-item {
    flex-shrink: 0; /* Prevents logos from shrinking */
    margin: 0 40px; /* Adjust spacing between logos */
}

.trusted-section .logo-item img {
    max-height: 60px; /* Ensure consistent height */
    width: auto;
    display: block;
}

@keyframes trustedScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move exactly half the distance (original set) */
}

@media (max-width: 992px) {
  .team-card {
    flex-basis: calc((100% - (1 * 15px)) / 2);
    max-width: calc((100% - (1 * 15px)) / 2);
  }
}

@media (max-width: 576px) {
  .team-card {
    flex-basis: 100%; /* Or keep the calc above for 2 cards */
    max-width: 100%;
    margin-right: 0;
  }
}


/* ============================= */
/* 📱 Tablet (max-width: 992px)  */
/* ============================= */

@media (max-width: 992px) {

  /* Header / Hero */
  .about-section {
    height: 65vh;
  }
  .about-content h1 {
    font-size: 32px;
  }
 
  /* About Info Section */
  .about-info-section {
    padding: 40px 30px;
     align-items: left;

  }
  .about-image-row {
    flex-direction: column;
    gap: 25px;
  }
  .about-info-section .img-fluid {
    height: 320px;
  }
  .about-text {
    text-align: left;
  }
  .about-info-section h1 {
    font-size: 28px;
  }

  /* Milestones */
  .milestone-section {
    padding: 60px 30px;
  }
  .milestone-header {
    flex-direction: column;
    text-align: center;
 
  }
  .milestone-item {
    flex: 1 1 45%;
    text-align: center;
  }



  /* Mission & Vision */
  .mission-section {
    padding: 20px 30px;
  }
  .Vision-section {
    padding: 0 30px;
  }
  .mission-section img{ 
    margin-bottom: 20px;
  }
    .Vision-section img{
      margin-left: -30px;
        margin-bottom: 0;
    }
  .mission-section h2,
  .Vision-section h2 {
    font-size: 28px;
    text-align: left;
  }
  .mission-section p,
  .Vision-section p {
    text-align: left;
  }

  /* Leadership Spotlight */
  .leadership-content {
    flex-direction: column;
    text-align:left;
    gap: 20px;
  }
  .leadership-text {
    text-align: left;
  }
  .leadership-image img {
    height: 400px;
  }

  /* Team Section */
 
    /* padding: 0 20px 60px;
  }
  .team-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  } */

  /* Trusted Section */
  .trusted-section {
    padding: 40px 20px;
  }
  .trusted-section h2 {
    /* font-size: 24px; */
  }
  .milestone-header h2{
    max-width: 100%;
  }
  .milestone-header p{
     max-width: 100%;
     text-align: left;
  }
  .milestone-header{
    gap: 20px;
  }
}


/* ============================= */
/* 📲 Mobile (max-width: 576px)  */
/* ============================= */

@media (max-width: 576px) {

  /* Hero */
  .about-section {
    height: 320px;
  }
  .about-content h1 {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .about-content .breadcrumb-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* About Info Section */
  .about-info-section {
    padding: 30px 10px;
   align-items: left !important;
  }
  .about-info-section h1 {
    font-size: 25px;
    text-align: left;
   
  }
  .about-text p {
    font-size: 15px;
    text-align: left;
    margin-bottom: 0;
     
  }
  .about-info-section .img-fluid {
    height: 250px;
  }

  /* View Journey Button */
  .view-journey-btn {
    font-size: 13px;
    padding: 8px 18px;
    margin-right:10px !important;
  }
  .view-journey-btn .play-icon {
    display: none;
  }

  /* Milestones */
  .milestone-section {
    padding: 40px 20px;
  }
  .milestone-header h2 {
    width: 100%;
    font-size: 25px;
    margin-bottom: 0;
    text-align: left;
   
  }


  

   .milestone-header p {
    width: 100%;
    font-size: 15px;
      text-align: left;
      line-height: 1.1;
     margin: -15px 0;
      padding: 0;
  }
  .milestone-item {
    flex: 1 1 100%;
    text-align:left;
 
  }

    .divider {
   display: none;
}

.milestone-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  text-align: left;
}

  .milestone-item h3 {
    font-size: 23px;
  }

  .milestone-item .counter {
  font-size: 45px;

  /* font-family: "Figtree", sans-serif !important; */
}

  /* Mission / Vision */
  .mission-section {
    padding: 20px 10px;
  }
  .mission-section h2, .Vision-section h2 {
    font-size: 25px;
    text-align: left;
  }
  .mission-section p, .Vision-section p {
    font-size: 15px;
    text-align: left;
  }
  .mission-section img {
    width: 100%;
    height: auto;
    text-align: left;
    margin-bottom:10px;
  }

  .Vision-section img {
    width: 120%;

    height: auto;
    text-align: left;
    margin-left: -35px !important;
    margin-bottom: 0;
    margin-top: -10px;
  }


  .Vision-section {
  background-color: #fff;
  color: #091d3e;
  padding: 0 15px !important;
margin-top: -40px;
}
  /* Leadership Spotlight */
  .leadership-spotlight {
    padding: 30px 20px;
  }
  .leadership-image img {
    height: 350px;
    object-fit:contain !important;
    width: 100%;
    max-width: 500px;
    margin-bottom: -30px;
  }
  .leadership-text h2 {
    font-size: 25px;
    text-align: left;
     width: 100%;
  }
.leadership-text p {
  font-size: 15px;
  font-weight: 300 !important;
  line-height: 1.5;
 text-align: left;
  margin-bottom: 10px;
 width: 100%;
}
  /* Team Section */
  /* .team-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .member-info h4 {
    font-size: 18px;
  }
  .member-info p {
    font-size: 14px;
  } */

  /* Trusted Logos */
  /* .trusted-section h2 {
    font-size: 2px;
    text-align: center;
  }
  .logo-slider .logo-item img {
    width: 80px;
  } */

  /* General Fixes */
  /* h1, h2, h3 {
    word-break: break-word;
  } */
}

@media (max-width: 576px) {
  .team-section {
    padding:0 15px;
    margin-top: -10px;
  }


  .team-section h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  color: #091d3e;
  text-align: left;
    padding-left: 10px;
}



.team-intro {
  font-size: 16px;
   color: #091d3e;
width: 100%;
text-align: left;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 30px;
  padding-left: 10px;
}
  .team-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .team-track {
    display: flex;
    flex-wrap: nowrap;
    /* CHANGE: Add a gap (e.g., 15px) to separate the two cards */
    gap: 15px; 
    width: 100%;
    transition: transform 0.4s ease-in-out;
  }

 .team-card {
    /* CHANGE: Use calc() to ensure 2 cards + 15px gap equals 100% width */
    flex: 0 0 calc(50% - 10px);
    max-width: calc((100% - 15px) / 2);
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 0 10px; /* Keep the internal padding */
    margin: 0 ;
  }

  .team-card img {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: block;
  }

  .member-header {
    display: flex;
    flex-direction: row;
    align-items: left;
  
    padding: 0 10px;
  }

  .member-info h4 {
    font-size: 18px;
    margin-bottom: 4px;
    text-align: left;
  }

  .member-info p {
    font-size: 14px;
  text-align: left;
  }

  .linkedin-icon {
    margin: 0;
    padding-left: 5px;

  }

  .linkedin-icon  .fa-linkedin {
  font-size: 20px;
  color: #007ab5;
  background-color: transparent;
}


  .team-controls {
  margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 8px;

  }
}


@media (max-width:768px){
.milestone-header p{
font-size: 16px;
padding-top: 10px;
}
.mission-section p{
  font-size: 16px;

}
.Vision-section p{
font-size: 16px;
}
.leadership-text p{
  font-size: 16px;

}
    .about-content h1{
font-size:32px;
}
.about-content{
margin-top:60px;
}
}

@media (max-width:768px) {
  .about-info-section{
    padding: 40px 20px;
  }
  .about-info-section h1{
    font-size: 32px;
  }
  .about-text{
    font-size: 16px;
  }
  .milestone-section-inner-container{
    padding: 0px;
  }
  .milestone-header h2{
    font-size: 32px;
  }
  .milestone-row{
    display: block;
  }
    .milestone-item {
        
        text-align: left;
        display: inline-grid;
        width: 48%;
    }
  .milestone-item p strong{
    font-size: 16px;
  }
  .milestone-item p{
    font-size: 14px;
    height: 115px;
  }
  .mission-section{
    padding: 40px 20px;
  }
  .mission-section .row{
    margin: 0px !important;
  }
  .mission-section .row .col-lg-7{
    padding: 0px !important;
  }
  .mission-content{
    padding: 0px !important;
  }
  .mission-section h2{
    font-size: 32px;
  }
  .Vision-section{
    /* margin-top: 0px; */
    padding: 30px 20px !important;
  }
  .Vision-section .btn-read{
    margin-bottom: 25px;
  }
  .Vision-section h2{
    font-size: 32px;
  }
  .container-fluid{
    padding: 0px !important;
  }
.navbar .container-fluid {
    padding: 5px 20px !important;
    padding-top: 25px !important;
    transition: all 0.3s 
ease;
    margin-top: 10px;
}
.navbar.scrolled .container-fluid {
    padding: 5px 20px !important;
    padding-top: 5px!important;
    transition: all 0.3s 
ease;
}
  .Vision-section .row{
    margin: 0px !important;
  }
  .Vision-content{
    padding: 0px;
  }
  .Vision-section .row .col-lg-7{
    padding: 0px !important;
  }
  .Vision-section img{
    margin: 0px !important;
  }
  .leadership-text h2{
    font-size: 32px;
  }
  .team-section{
    padding: 30px 20px;
    margin-top: 0px;
  }
  .team-section h2{
    font-size: 32px;
    padding-left: 0px;
  }
  .team-intro{
    color: #000;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 15px;
    padding-left: 0px;
    max-width: 100%;
  }
  .team-card{
        flex-basis: 100%;
        max-width: 100%;
        padding: 0px;
  }
  .team-card img{
    max-width: 100%;
  }
  .member-info h4{
    font-size: 24px;
  }
  .member-info p{
    font-size: 16px;
  }
  .member-header{
    padding: 0px;
    margin: 0px;
  }
  .team-controls{
    margin-bottom: 0px;
  }
  .linkedin-icon .fa-linkedin{
    font-size: 32px;
  }
  .trusted-section h2{
    font-size: 32px;
  }
  .logo-slider{
    margin: 20px 0px;
    margin-top: 40px;
  }

#teamPrev .bi-arrow-left{
margin-left:-5px;
}
#teamNext .bi-arrow-right{
margin-left:-5px;
}
.team-controls button{
  color: #000;
  font-size: 16px;
}

.about-section {
    height: 320px;
  }
iframe{
width:100% !important;
}

}


@media (min-width:1700px){

.about-info-section{
padding:60px 40px;
}
.milestone-section-inner-container{
padding:80px 40px;
}
.mission-section{
padding:60px 40px;
}
.mission-section .container-fluid{
padding:0px;
}

.Vision-section{
padding:60px 40px;
}
.Vision-section .container-fluid{
padding:0px;
}
.leadership-spotlight-inner-container{

padding:0px 40px;
}
.team-section{
padding:60px 40px;
}


}














