.about-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* padding: 100px; */
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.5); 
}

.about-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 65%;
  display: grid;
    gap: 20px;
}

.about-container-text title{
  align-items: center;
}

.about-text {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-container {
    padding: 0px;
    width: 80%;
}
}


@media (max-width: 768px) {
  .about-section {
   padding: 30px;
  }

  .about-container {
    padding: 0px;
    width: 100%;
}

  .about-text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}


/* mission section  */
.mission-section{
position: relative;
overflow: hidden;
}

.mission-bg{
background: url('../images/mission-bg.webp') 50% 50% no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
}

.mission-container{
padding: 100px;
position: relative;
z-index: 9;
}

.mission-inner{
display: grid;
 grid-template-columns: 1fr 1fr;
 gap:0px;
 align-items: center;
 color: #fff;
}

.mission-left{
text-align: left;
padding: 20px;
padding-bottom: 50px;
border-right: 2px solid #fff;
}

.mission-right{
    text-align: right;
    padding: 20px;
    padding-bottom: 50px;
}

.mission-img{

}

.mission-img img{
width: 200px;
}

.mission-title{
font-size: 50px;
  font-weight: 600;
  margin: 20px 0;
}

.mission-text{
font-size: 20px;
  font-weight: 400;
}

.mission-btn{
text-align: center;
}


@media screen and (max-width: 1250px) {
.mission-container{
padding: 50px;
}

.mission-title{
font-size: 30px;
}
}

@media screen and (max-width: 768px) {
.mission-container{
padding: 30px;
padding-top: 0;
}

.mission-title{
font-size: 25px;
}

.mission-left{
padding: 0px;
}

.mission-right{
    padding: 0px;
}

.mission-inner{
display: grid;
 grid-template-columns: 1fr;
 gap:30px;
 margin-bottom: 20px;
}

.mission-left{
border-right: none;
}

.mission-text {
    font-size: 16px;
}

.mission-img img {
    width: 150px;
}
}


/* popup  */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  border: 4px solid #ef365c;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  position: relative;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.modal-container{
        display: grid;
        grid-template-columns: 200px 1fr;
        gap:20px;
        align-items:center;
}

.modal-content img#modal-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1d5689;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.modal-contact-area{
        text-align:left;
}

.modal-name {
  font-size: 20px;
  color: #ef365c;
  font-weight: 700;
  display: block;
}

.modal-designation {
  font-size: 16px;
  font-weight: 600;
  color: #00529b;
  margin: 10px 0;
}

.modal-icons {
  display: flex;
  justify-content: left;
  gap: 20px;
}

.modal-icons img {
  width: 35px;
  height: 35px;
}

.modal-bio {
  font-size: 16px;
  color: #003355;
  line-height: 1.6;
  text-align: left;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #ef365c;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
.modal-content img#modal-image {
  width: 100px;
  height: 100px;
}

.modal-container {
    grid-template-columns: 150px 1fr;
}
}

@media screen and (max-width: 550px) {
  .modal-content img#modal-image {
  width: 80px;
  height: 80px;
}

.modal-container {
    grid-template-columns: 80px 1fr;
}

.modal-designation {
    margin: 5px 0;
     font-size: 14px;
}

.modal-name {
    font-size: 16px;
}

.modal-content {
    padding: 10px;
}

}


/* Team section  */
.team-section{
position: relative;
overflow: hidden;
padding: 50px 100px 0;
text-align: center;
}

.team-slider{
    display: grid;
 margin-top: 50px;
}



.team-container {
  display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.team-container:last-child {
margin-bottom: 0px;
}

.team-card1 {
   padding: 20px;
    text-align: center;
}

.team-card1 img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  margin-bottom: 15px;
  border: 1px solid #00529b;
  cursor: pointer;
}

h2.team-category-title{
  font-size: 40px;
    margin: 0;
    color: #1d5689;
    margin-bottom: 15px;
}

.card-inner {
    width: 300px;
}

.team-name{
font-size: 18px;
  margin: 0;
  color: #ef365c;
}

.team-position{
  font-size: 14px;
  color: #1d5689;
  line-height: 1.5;
  margin: 0;
}

@media screen and (max-width: 1200px) {
.team-section{
padding: 50px;
 padding-bottom: 0;
}

.team-slider {
    width: 100%;
}
}

@media screen and (max-width: 767px) {
.team-section{
padding: 30px;
        padding-bottom: 0;
}

.team-card1 img {
  width: 60px;
  height: 60px;
}

.team-card1 {
    padding: 0px;
    text-align: center;
}

}

@media screen and (max-width: 550px) {
.team-card1 {
    padding: 0;
}

.team-position {
    font-size: 12px;
}

.team-slider{
width: 100%;
    margin: 0 auto;
}

.card-inner {
    width: 250px;
}

h2.team-category-title {
    font-size: 30px;
}
}


/* Location sections  */
.location-section{
position: relative;
overflow:hidden;
padding:0px 200px;
  }

  .section-title{
  text-align: center;
  }

   .section-desc{
     text-align: center;
  }

.location-area{
  position: relative;
   z-index: 9;
}

.location-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.location-card {
  font-size: 16px;
    color: #1d5689;
    text-align: center;
    border: 1px solid #1d5689;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 300px;
}

.location-icon {
    width: 100%;
    height: 200px;
}

.location-img {
width: 100%;
    height: 100%;
}

.location-details {
    padding: 20px 10px;
}

.location-title {
  font-size: 18px;
  margin: 5px 0;
  color: #ef365c;
  font-weight: 600;
}

.locations-desc{
  font-size: 14px;
  width: 80%;
  text-align: center;
}


.location-category-title{
    font-size: 30px;
  margin-bottom: 20px;
  color: #17538a;
  font-weight: 600;
  text-align: center;
}


.location-category {
    /* border-bottom: 1px solid #18548a8a; */
    padding-bottom: 40px;
    padding-top: 30px;
}
.social-icon {
    width: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-top: 10px; 
}
.social-icon img{
    width: 30px;
    height: 30px;
    margin: 5px;
}

.btn {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
    margin-top: 10px;
}
a.direction-button {
    background: transparent;
    border: 1px solid #17538a;
    padding: 5px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #17538a;
}

a.direction-button:hover {
    border: 1px solid #ef365c;
    color: #ef365c;
}

a.success-stories-button{
    background: transparent;
    border: 1px solid #17538a;
    padding: 5px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #17538a;
}

a.success-stories-button:hover {
    border: 1px solid #ef365c;
    color: #ef365c;
}


.location-category:last-child {
  border-bottom: none;
}

 .contact-inner {
  display: flex;
    gap: 5px;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0;
}

.contact-inner p{
margin:0;
}

.contact-inner a{
  text-decoration: none;
    color: #17538a;
}

.contact-inner img{
        width: 15px;
        height: 15px;
        display: none;
}

 @media (max-width: 1600px) {
  .location-section{
padding:0px 100px;
  }
}

 @media (max-width: 1100px) {
  .location-section{
padding: 0 30px;
  }
}

 @media (max-width: 900px) {
 .locations-desc{
  width: 100%;
}
}

  @media (max-width: 767px) {
     .location-section{
padding:0 30px;
  }

.location-category-title {
    font-size: 25px;
    margin-bottom: 10px;
}

.locations-desc{
  width: 100%;
}

.location-icon{
  display:none;
}

.location-slider {
    grid-template-columns: 1fr;
}
}


/* Qulities section  */
.quality-section {
  padding: 50px 200px;
  text-align: center;
  position: relative;
}


.quality-cards {
  display: flex;
  flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
   
}

.quality-card {
  
}

.quality-card img {
 width: 230px;
    height: auto;
    object-fit: contain;
    border: 1px solid #1d5689;
}


@media screen and (max-width: 1200px) {
.quality-section {
  padding: 50px 100px;
}

.quality-card img {
 width: 200px;
}
}

@media screen and (max-width: 990px) {
.quality-section {
  padding: 50px;
}

.quality-cards {
    flex-flow: wrap;
} 

}

@media screen and (max-width: 767px) {
       .quality-section {
  padding: 30px;
}


}


/* CSR Project section  */
.csr-section {
  padding: 30px 200px;
  text-align: center;
  position: relative;
}


.csr-cards {
  /* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px; */
    margin-top: 40px;
}

.csr-card {
  background: #ffffff;
  border: 2px solid #1d5689;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.csr-card img {
  width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-inner {
  padding: 10px;
    font-size: 16px;
    color: #1d5689;
    /* min-height: 80px; */
}

.card-content {
    min-height: 80px;
    display: grid;
    align-items: center;
}

.card-btn {
    margin-top: 10px;
}

.csr-cards .slick-slide {
    margin-right: 20px; /* Adjust gap as needed */
}

/* To fix overflow from the extra margin */
.csr-cards .slick-list {
    margin-right: -20px; /* Match the margin you added above */
}


@media screen and (max-width: 1200px) {
.csr-section {
  padding: 50px 100px;
}
}

@media screen and (max-width: 990px) {
.csr-section {
  padding: 50px;
}

/* .csr-cards {
    grid-template-columns: 1fr 1fr;
} */

}

@media screen and (max-width: 767px) {
       .csr-section {
  padding: 30px;
}

/* .csr-cards {
    grid-template-columns: 1fr;
}  */
}