* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none !important;
}

.under-con {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.under-con img {
  width: 100%;
  height: 100%;
}

.navbar {
  background: #ffffff;
  padding: 15px 0;
}

.container {
  /* width: 90%; */
  margin: auto;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {

  font-weight: bold;
  color: #1F6F5F;
}

.logo img {
  width: 200px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  position: relative;
}

/* Active underline */
.nav-menu a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1F6F5F;
  bottom: -5px;
  left: 0;
}

/* Donate Button */
.donate-btn {
  background: #1F6F5F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
}

.donate-btn:hover {
  color: #fff;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* 📱 Responsive */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
  }

  .nav-menu a {
    display: block;
    padding: 10px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .donate-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .carousel-item {
    height: auto !important;

  }
}

.carousel-item {
  height: 750px;

}

.carousel-caption {
  width: 50% !important;
  position: absolute;
  left: 16% !important;
  padding: 20px !important;
  color: #ff0000;
  text-align: center;
  top: 22% !important;
  text-align: start !important;

}

.carousel-caption h5 {
  font-size: 54px;
  font-weight: 700;
  word-spacing: 8px;
  margin: 0 auto 72px;

}

.carousel-caption span {
  color: #00b009;
  display: block;
  text-transform: uppercase;


}

.carousel-caption button {
  border: none;
  margin-top: 10px;


}

.carousel-caption button a {
  color: #00b009;
  background-color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;


}

@media (max-width: 1399px) {
  .carousel-caption {
    width: 60% !important;
  }
}

@media (max-width: 1299px) {
  .carousel-caption h5 {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .carousel-caption {
    width: 70% !important;
  }

  .carousel-caption {
    top: 100px !important;
  }

  .carousel-caption h5 {
    font-size: 48px;
  }

  .carousel-item {
    height: auto !important;
  }

}

@media (max-width: 768px) {
  .carousel-caption {
    width: 80% !important;
  }

  .carousel-caption h5 {
    font-size: 36px;
    word-spacing: normal;
    margin: 0 auto 16px;
  }
}

@media (max-width: 575px) {
  .carousel-caption {
    top: 20px !important;
  }

  .carousel-caption button a {
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
  }

  .carousel-caption h5 {
    font-size: 26px;
    margin: 0 auto 0;
  }

  .carousel-caption span {
    display: inline;
  }
}

/* SECTION */
.footprint {
  padding: 100px 0;
}

/* GRID LAYOUT */
.footprint .container {
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT GRID */
.grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media(max-width:767px) {
  .footprint {
    padding: 26px 0;
  }
}



.img-card img:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
}

.img-card img {
  width: 100%;
  border-radius: 15px;
  height: 180px;
  object-fit: cover;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  transition: all 0.3s ease-in-out;


}

/* INFO CARDS */
.info-card {
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  transition: all 0.3s ease-in-out;

}

.info-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
}

.info-card.light {
  background: #eaeaea;
}

.info-card.green {
  background: #1F6F5F;
  color: #fff;
}

/* RIGHT CONTENT */
.content h2 {
  color: #40514e;
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.content h2 span {
  color: #1F6F5F;
}

.content p {
  margin-bottom: 30px;
  color: #40514e;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
}

/* LOCATIONS */
.loc {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  background: #e5ffe5;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}

.loc img {
  width: 30px;
}

.icon {
  color: #1F6F5F;
  font-size: 20px;
}

.info-card h4 {
  font-weight: 700;
}

/* 📱 RESPONSIVE */
@media(max-width:900px) {
  .footprint .container {
    flex-direction: column;
  }

  .content {
    text-align: center;
  }

  .loc {
    justify-content: center;
  }
}

@media(max-width:500px) {
  .grid-box {
    grid-template-columns: 1fr;
  }

  .img-card img {
    height: 200px;
  }

  .content h2 {
    font-size: 28px;
  }
}



/* vision and mission  */

.vision-mission {
  /* background-color: #353535a1;
  padding: 100px 0px;
  background-image: url(../assets/img/vision-mission2.png);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #124815c9; */
  padding: 100px 0px;

  background-image: url(/assets/img/background/banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-color: #124815c9;
  /* background-color: #ddddddc9; */
  background-blend-mode: overlay;
  background-blend-mode: overlay;
}

.share-card {
  /* background-color: #fff; */
  /* padding: 36px; */
  /* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
  transition: all 0.3s ease-in-out;
  /* min-height: 100%; */
}

/* .share-card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  background: #1F6F5F;
} */

.share-card h5 {
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 0 10px;
  line-height: 60px;
}

.share-card p {
  color: #ffffff;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.share-card ul li {
  color: #ffffff;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  transition: all 0.3s ease-in-out;
  padding: 0 0 10px;
}

/* .share-card:hover h5 {
  color: #fff;
}

.share-card:hover p {
  color: #fff;
} */

.share-card.green {
  background: #1F6F5F;
  color: #fff;
}

.shaCrdFleximg {
  /* text-align: center;
  display: flex;
  justify-content: center; */
}

.share-card .VissionImg {
  background-color: #ffffff;
  padding: 0;
  border-radius: 3px;
  box-shadow: 21px 21px 0 0 #ffffff;
  transition: 0.3s;
}

.share-card .VissionImg:hover {
  transform: translateY(-10px);
}

.lftSharImg .VissionImg {
  box-shadow: -21px 21px 0 0 #ffffff !important;
}


.share-card .VissionImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

/* ================ */


.trustedSecpadd {
  padding: 60px 16px 0;
}

.TrustSecBox {
  width: 180px;
  height: 158px;
  background: #faf9f9;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

}

.TrustSecBox img {
  width: 100px;
  height: auto;

}

.mainSlideContainer {
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.mainSlideContainer .slick-dots {
  height: 18px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 2px;
  padding-right: 10px;
  margin-top: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.mainSlideContainer .slick-dots li {
  width: 10px;
  height: 20px;
}

.mainSlideContainer .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 4px;
}

.mainSlideContainer .slick-dots li button:before {
  font-size: 9px;
  line-height: 23px;
  width: 14px;
  height: 14px;
}

.mainSlideContainer .slick-dots li.slick-active button:before {
  color: #1F6F5F;
}

@media(max-width:1399px) {
  .mainSlideContainer .slick-track {
    margin-left: 16px;
  }
}

@media(max-width:1199px) {
  .TrustSecBox {
    width: 170px;
    height: 148px;
  }
}

@media(max-width:1099px) {
  .TrustSecBox {
    width: 148px;
    height: 138px;
  }
}

@media(max-width:767px) {
  .TrustSecBox {
    width: 158px;
    height: 143px;
  }

  .mainSlideContainer {
    padding-bottom: 26px;
  }

  .mainSlideContainer .slick-dots {
    margin-top: 0px;
  }
}

/* ======================= */
.colsInnerSec h3 {
  font-size: 48px;
  text-align: left;
  color: #222;
  font-weight: 700;
  line-height: 60px;
  margin: 0 auto 40px;
  color: #40514e;
}

.colsInnerSec img {
  width: 100px;
  margin: 0 auto 32px;
}

.donatioRevbox {
  border-radius: 6px;
  border: 1px solid #e8e8e8;
  padding: 24px;
  margin: 22px auto 0;
  transition: all 0.3s ease-in-out;
}

.donatioRevbox:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transform: scale(1.03);
}

.donatioRevbox h2 {
  color: #40514e;
  font-size: 40px;
  font-weight: 700;
  margin: 0 auto;
}

.donatioRevbox p {
  color: #40514e;
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto;
}

/* === */
.colsRightSec {
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  background: #faf9f9;
  padding: 22px 26px;

}

.colsRightSec img {
  transition: all 0.3s ease-in-out;
}

.colsRightSec:hover img {
  transform: scale(1.03);

}

.colsRightSec h4 {
  color: #40514e;
  font-size: 32px;
  font-weight: 700;
  margin: 8px auto 12px;
}

.colsRightSec p {
  color: #40514e;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 24px;
}

.colsRightSec a {
  border-radius: 3px;
  color: #40514e;
  /* background-color: #e7424b; */
  background: #ffffff;
  border: 1px solid #40514e;
  text-decoration: none;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 16px;
  margin: 8px auto 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.colsRightSec a:hover {
  color: #fff;
  background-color: #1F6F5F;
  border-color: #1F6F5F;
}

.padding100 {
  padding: 100px 0px;
}

.padding70 {
  padding: 70px 10px;
}

@media(max-width:1199px) {
  .colsInnerSec h3 {
    font-size: 36px;
    line-height: 40px;
    margin: 0px auto 28px;
  }

  .colsRightSec h4 {
    font-size: 28px;
  }

  .donatioRevbox h2 {
    font-size: 34px;
  }

  .donatioRevbox {
    padding: 16px;
    margin: 14px auto 0;
  }

}

@media(max-width:992px) {
  .donatioRevbox h2 {
    font-size: 26px;
  }

  .donatioRevbox p {
    font-size: 14px;
  }

  .donatioRevbox {
    padding: 12px;
    margin: 8px auto 0;
  }

  .colsInnerSec h3 {
    font-size: 32px;
    line-height: 40px;
    margin: 0px auto 18px;
  }

  .padding70 {
    padding: 40px 0;
  }

  .colsRightSec {
    padding: 16px 16px;
    margin: 16px auto 0;
  }

  .colsRightSec h4 {
    margin: 8px auto 3px;
  }

  .colsRightSec a {
    margin: 0 auto 0;
    padding: 5px 6px;
    font-size: 14px;
  }
}

@media(max-width:767px) {

  .donatioRevbox {
    margin: 6px auto 6px;
    padding: 12px;
  }

  .donatioRevbox h2 {
    font-size: 22px;
  }

  .colsRightSec h4 {
    margin: 16px auto 8px;
    font-size: 24px;
  }

  .colsRightSec p {
    font-size: 13px;
    margin: 0 auto 14px;
  }

  .colsRightSec a {
    font-weight: 500;
  }

  .colsRightSec {
    padding: 18px 18px;
  }

  .padding70 {
    padding: 26px 0;
  }

  .colsInnerSec img {
    margin: 0 auto 20px;
  }

  .colsInnerSec h3 {
    font-size: 24px;
    line-height: 29px;
  }
}



/* ================== start footer Sec ==================   */
footer {
  padding: 64px 0px 48px;
  background: #e5ffe5;
}

.ftMenuSec ul {
  list-style: none;
  padding: 0;
}

.ftMenuSec ul li {
  font-size: 16px;
  margin: 0 auto 16px;
  font-weight: 500;
}

.ftMenuSec ul li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.ftMenuSec ul li a:hover {
  text-decoration: underline;
}

.ftMenuSec ul li:first-child {
  font-size: 18px;
  margin: 0 auto 24px;
  font-weight: 700;
  color: #000;
  height: 20px;
  line-height: 20px;
}

.ftMenuSec p {
  font-size: 16px;
  margin: 0 auto;
  line-height: 26px;
  color: #40514e;
  font-weight: 400;
  margin: 32px auto 0;
}

.socailMediaSecFt a {
  margin: 30px 6px 26px;
  width: 45px;
  height: 45px;
  background: white;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  color: #1F6F5F;
  -webkit-box-shadow: 10px 0 30px rgba(175, 175, 175, 0.3);
  box-shadow: 10px 0 30px rgba(175, 175, 175, 0.3);
  display: inline-block;
  transition: 0.3s;
}

.socailMediaSecFt a i {
  font-size: 20px;
}

.socailMediaSecFt a:hover {
  background-color: #1F6F5F;
  color: #fff;
}

.ftContent {
  border-radius: 16px;
  background: rgba(0, 0, 0, .02);
  padding: 24px;
  margin: 16px 0 0;
}

.ftContent h6 {
  font-size: 12px;
  font-weight: 600;
  color: #222;
}

.ftContent p {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

/* === */
.ftbotomPrivSec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ftbotomPrivSec ul li {
  font-size: 14px;
  color: #222;
}

.ftbotomPrivSec ul li:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftbotomPrivSec ul li:nth-child(2) {
  list-style: disc;
}


.ftbotomPrivSec ul li a {
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.ftbotomPrivSec ul li a:hover {
  text-decoration: underline;
}

.ftbotomPrivSec ul li span {
  padding: 2px 8px;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .02);
  font-size: 12px;
  line-height: 20px;
}

.ftbotomPrivSec {
  margin: 32px 0 0;
  border-top: 1px solid #1F6F5F;
  padding-top: 16px;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media(max-width:992px) {
  .ftMenuSec ul li:first-child {
    margin: 0 auto 20px;
    height: auto;
    line-height: 18px;
  }

  .ftMenuSec ul li {
    font-size: 14px;
    margin: 0 auto 8px;
  }
}


@media(max-width:767px) {
  footer {
    padding: 26px 0px 26px;
  }
}

@media(max-width:475px) {
  .ftMenuSec ul li:first-child {
    margin: 0 auto 14px;
    height: auto;
    line-height: 18px;
    font-size: 16px;
  }

  .ftContent {
    padding: 12px;
    margin: 12px 0 0;
  }

  .ftbotomPrivSec {
    margin: 20px 0 0;
    border-top: 1px solid #1F6F5F;
    padding-top: 12px;
    display: inline-block;
  }

  .ftbotomPrivSec ul {
    gap: 22px;
  }

  .ftbotomPrivSec ul li {
    font-size: 12px;
  }

  .ftbotomPrivSec ul li:nth-child(1) {
    gap: 6px;
  }
}

/* ================== End footer Sec ==================   */
.pages-heading {
  background-image: url('/assets/img/vision-mission.png');
  padding: 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.inner-content-all h2 {
  font-size: 48px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin: 0 auto;
}

@media(max-width:767px) {
  .pages-heading {
    padding: 40px 0;
  }

  .inner-content-all h2 {
    font-size: 32px;
  }
}

.basic-course-section {
  padding: 50px 0px;
}

.basic-course-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.basic-course-image img {
  width: 80%;
  /* height: 200px; */
  border-radius: 20px;
  transform: rotate(5deg);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.basic-course-image img:hover {
  transform: rotate(0deg);
}

.courseSecBox {
  padding: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 0 auto 24px;
  min-height: 469px;
}

.courseSecBox:hover {
  transform: scale(1.03);
}

.courseSecBox h5 {
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
  font-weight: 700;
  color: #353535;
}

.courseSecBox h5 span {
  font-size: 14px;
  background-color: #1F6F5F;
  color: #fff;
  padding: 6px 10px;
  line-height: 15px;
  border-radius: 16px;
}

.courseSecBox ul li {
  font-size: 16px;
  padding: 0 0 3px;
  font-weight: 500;
  /* list-style-type: "● "; */

}

.list-icon {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
}

.list-icon img {
  width: 18px;
}

.courseSecBox ul h6 {
  font-size: 20px;
  font-weight: 700;
  color: #1F6F5F;
  margin: 0 auto 16px;
}

.courseSecBox ul li ul.innerliSec {
  margin: 16px auto 0;
}

.courseSecBox ul li ul.innerliSec li {
  font-size: 14px;
  padding: 0 0 8px;
  font-weight: 400;
}

.course-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-card-head h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0d631b69;
}

.course-card-head img {
  width: 30px;
}

.card-icon {
  background-color: #12a1121f;
  padding: 10px;
  border-radius: 5px;
}

.course-content {
  max-height: 300px;
  overflow-x: auto;
  /* padding-left: 0px; */
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 4px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #e6e6e674;
  /* light gray */
  border-radius: 10px;
}

/* Scroll thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #4caf4faf;
  /* green like your design */
  border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #388e3c97;
}

.ragistBtnSec {
  position: fixed;
  top: 60%;
  left: -50px;
  z-index: 9999;
  transform: rotate(270deg);
}

.ragistBtnSec .ragistration-btn {
  background: #0c33c9;
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
}

/* =============== */
.objectivesCard {
  padding: 24px;
  border-radius: 4px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  margin: 0 auto 24px;
  border: 1px solid #b7b7b75c;
  transition: all 0.3s ease-in-out;
}

.objectivesCard:hover {
  background-color: #1F6F5F;
  color: #fff;
}


.objectivesCard:hover h2 {
  color: #fff;
}

.objectivesCard h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0d631b69;
  margin: 0;
}

.objectivesCard p {
  height: 190px;
  color: #40514e;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.objectivesCard:hover p {
  color: #fff;
}

.paraobjSec p {
  font-size: 22px;
  margin: 0 auto 42px;
  font-weight: 700;
  color: #1F6F5F;
  word-spacing: 6px;
}

@media(max-width:1399px) {
  .objectivesCard p {
    height: 200px;
  }
}

@media (max-width: 1199px) {
  .objectivesCard p {
    height: 140px;
  }
}

@media (max-width: 992px) {
  .objectivesCard p {
    height: 190px;
  }
}

@media (max-width: 767px) {
  .objectivesCard p {
    height: auto;
  }

  .paraobjSec p {
    font-size: 18px;
    margin: 0 auto 24px;
    word-spacing: 0;
  }

  .objectivesCard {
    margin: 0 auto 12px;
  }

}

/* =============== */
.productSec {
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.10);
  border-radius: 5px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
  transition: 0.4s;
  /* /* border: 1px solid #93939347; */
}

.productSec:hover {
  transform: translateY(-15px);
}

.prodImg {
  width: 100%;
  width: 100%;
  max-width: 230px;
  background-color: #1F6F5F3b;
  height: 230px;
}

.prodImg img {
  padding: 6px;
  width: 100%;
  height: 100%;
}

.proContentSec {
  padding: 20px;
}

.productSec h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto;
  color: #40514e;
  line-height: 44px;
  padding: 0 0 0px;
}

.productSec p {
  color: #40514e;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.flexDirctionSec {
  flex-direction: row-reverse;
}



/* ========================= */
.bannerImg {
  background-image: url('/assets/img/all-images/Awareness-Programs.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-color: #001609b8;
  background-blend-mode: overlay;
}

.WeAreRightSec h3 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.WeAreRightSec p {
  color: #ffffff;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.weAreCatBtn {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
  margin: 42px auto 0;
}

.weAreCatBtn a {
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  color: #40514e;
  line-height: 26px;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.weAreCatBtn a i {
  font-size: 12px;
  width: 2em;
  height: 2em;
  line-height: 2em;
  background-color: #1F6F5F3b;
  border-radius: 100px;
  color: #40514e;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.weAreCatBtn a:hover {
  background-color: #1F6F5F3b;
  color: #fff;
  transform: scale(1.03);
}

.weAreCatBtn a:hover i {
  background-color: #fff;
  color: #40514e;
}

/* ========================== start Chapter Sec ========================= */
.captuureSec {
  background-color: #f7f9fd;
  padding: 100px 0;
}

.mainHeadingChapter h2 {
  font-size: 38px;
  text-align: center;
  color: #222;
  font-weight: 700;
  line-height: 60px;
  margin: 0 auto 40px;
  color: #40514e;
}

.chaptCard {
  transition: 0.5s;
  text-align: center;
  /* padding: 45px 40px; */
  border-radius: 7px;
  background-color: white;
}

.chaptCard h3 {
  color: #40514e;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
  line-height: 40px;
  padding: 20px 24px;
  transition: 0.5s;
}

.chaptCard:hover h3 {
  background-size: cover;
  /* transform: translateY(-15px); */
  background-color: #0f5a57;
  background-image: url('/assets/img/feature-bg.webp');
  color: #fff;
}

.chaptCard:hover {
  transform: translateY(-15px);
}

/* ======================== start Chapter pages ========================== */
.chapterSecPages .card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.chapterSecPages .card:hover {
  transform: translateY(-5px);
}

.chapterSecPages h2 {
  color: #2a5298;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.chapterSecPages .unit {
  margin: 15px 0;
  padding: 15px;
  border-left: 5px solid #2a5298;
  background: #f9f9f9;
  border-radius: 8px;
}

.chapterSecPages .unit strong {
  color: #1e3c72;
}

.chapterSecPages ul {
  padding-left: 20px;
}

.chapterSecPages li {
  margin: 8px 0;
}

/* ======================== End Chapter pages ========================== */

.componetSecBnner {
  border-color: rgba(0, 0, 0, 0.09);
  padding: 16px;
  border: 1px solid #858f86;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  border-radius: 10px;
}

.componetSecBnner:hover {
  transform: translateY(-15px);
  box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.2);
}

.BnnerSecHardware {
  margin-bottom: 60px;
}

/* ================================ */
.sndRighSec h3 {
  font-size: 48px;
  color: #40514e;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 0 10px;
  line-height: 60px;
}

.sndRighSec ul li {
  color: #40514e;
  line-height: 30px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.sndRighSec p {
  color: #40514e;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.sndRighSec a {
  padding: 12px 36px;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #40514e;
  color: #40514e;
  margin: 28px auto 0;
  display: inline-block;
  transition: .3s ease-out;
}

.sndRighSec a:hover {
  background-color: #1F6F5F;
  border-color: #1F6F5F;
  color: #fff;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.2);
}

/* === */
.SndSecInnerBox .imgSecCrd {
  width: 100%;
  height: 200px;
}

.SndSecInnerBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SndSecInnerBox {
  background: #ffffff;
  border: 1px solid #eeeeee;
  position: relative;
  overflow: hidden;
}

.SndSecInnerBox .innContent {
  padding: 25px 25px 66px;
}

.SndSecInnerBox .innContent h5 {
  font-size: 26px;
  color: #40514e;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
  padding: 0 0 10px;
}

.SndSecInnerBox .innContent p {
  color: #40514e;
  line-height: 27px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;

}

.ReadMoreBtn {
  color: #ffffff;
  /* background: #2f89fc; */
  background-color: #1F6F5F;
  font-size: 15px;
  left: 0;
  padding: 10px 25px;
  position: absolute;
  right: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(.45, .02, .34, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ReadMoreBtn {
  bottom: -100px;
  font-size: 15px;
  left: 0;
  padding: 10px 25px;
  position: absolute;
  right: 0;
}

.SndSecInnerBox:hover .ReadMoreBtn {
  bottom: 0px;
}

.mobileMissSec {
  margin-top: 100px !important;
}

.everyImgSec {
  display: flex;
  justify-content: center;
}



/* start Objective Sec  */
.objectSec {
  padding: 100px 0;
}

.objectHeading h2 {
  color: #40514e;
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.objectContentSec {
  padding: 32px 24px;
  border: 1px solid #d3d3d3c4;
  transition: all 0.3s ease-in-out;
  height: 100%;
  border-radius: 8px;

}

.objectContentSec:hover {
  /* border: 1px solid #1F6F5F; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border-radius: 5px;
}

.objectContentSec:hover img {
  transform: translateY(-10px);
}

.objectHeading p {
  color: #40514e;
  font-size: 16px;
  margin: 0 auto 36px;
  text-align: center;
}

.objectContentSec p {
  color: #40514e;
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
}

.objectContentSec .objIcons {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  height: 55px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.objectContentSec .objIcons img {
  transition: 0.3s;
}

/* End Objective Sec  */


/* Start Programmes Initiated Sec */
.initiSecContent {
  padding: 32px 32px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  height: 100%;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.initiSecContent:hover {
  transform: translateY(-10px);
}

.initisHeading h2 {
  color: #40514e;
  font-size: 48px;
  margin-bottom: 42px;
  font-weight: 700;
  text-align: center;
}

.initiSecContent h6 {
  color: #40514e;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 700;
  line-height: 24px;
  height: 34px;
}

.initiSecContent p {
  color: #40514e;
  font-size: 14px;
  margin: 12px auto;
  display: flex;
  align-items: start;
  gap: 8px;
}

.initiSecContent p i {
  line-height: 22px;
  font-size: 12px;
  color: #1F6F5F;
}

/* End Programmes Initiated Sec */

.organisSec p {
  color: #40514e;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 26px;
  line-height: 29px;
  text-align: justify;
}

.organisSec h2 {
  font-size: 48px;
  color: #40514e;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 0 10px;
  line-height: 60px;
}

.organisSec img {
  transition: all 0.4s ease-in-out;

}

.organisSec:hover img {
  transform: translateY(-20px);
  transform: scale(0.9);
}

/* ========== */
.trainingSecinner h3 {
  color: #40514e;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 100px 6px;
}

.trainingSecinner p {
  color: #40514e;
  line-height: 27px;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 24px;
  text-align: center;
}

.trainBoxInner {
  padding: 32px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  margin: 10px auto 0;
  background-color: #fff;
  border-radius: 10px;
}

.trainBoxInner h6 {
  font-size: 20px;
  color: #40514e;
  font-weight: 600;
  line-height: 25px;
  margin: 0 auto 17px;
  padding: 0;
  text-align: center;
  text-align: justify;
}

.trainBoxInner p {
  color: #40514e;
  line-height: 22px;
  font-size: 14px;
  font-weight: 300;
  margin: 0 auto 0;
  text-align: justify;
}

/* ========== */
.goalSecMobile {
  margin: 20px auto 0;
  padding: 60px 0 0;
}


/* Start about Sec page  */
.aboutSecHeading h2 {
  font-size: 48px;
  color: #40514e;
  font-weight: 700;
  margin: 0 auto;
  padding: 0 0 30px;
  line-height: 60px;
  text-align: center;
}

.aboutContentInner p {
  color: #40514e;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 26px;
  line-height: 29px;
  text-align: justify;
}

.aboutContentInner ul li {
  color: #40514e;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto 20px;
  line-height: 29px;
  text-align: justify;
}

.certificateSec {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 16px;
  border-radius: 10px;
  height: 100%;
}

.certificateHeading h2 {
  font-size: 48px;
  color: #40514e;
  font-weight: 700;
  margin: 0 auto 40px;
  padding: 0;
  line-height: 60px;
  text-transform: capitalize;
}

/* end about Sec page  */

.trainingCollSec {
  align-items: center;
  margin: 54px auto 0;
}

.trainingCollSec .accordion-item {
  background-color: unset;
  border: none;
}

.trainingCollSec .accordion-button {
  background-color: unset !important;
  color: #000 !important;
  font-size: 18px;
  font-weight: 500;
  padding: 18px 4px;
  border-bottom: 1px solid #818181;
  outline: unset;
  gap: 4px;
}

.trainingCollSec .accordion-button:focus {
  outline: unset !important;
  box-shadow: unset !important
}

.trainingCollSec .accordion-body {
  padding: 14px 4px;
}

.trainingCollSec .accordion-body p {
  font-size: 16px;
  text-align: left;
  color: #000;
  font-weight: 300;
}

.traingImgSec {
  position: relative;
  box-shadow: 21px 21px 0 0 #146233;
  border-radius: 8px;
}



















/* ======================= responsive start Sec ======================== */
@media (max-width: 1399px) {

  .padding100,
  .vision-mission,
  .captuureSec {
    padding: 60px 0px;
  }

  .carousel-item {
    height: auto !important;
  }

  .productSec p {
    line-height: 22px;
    font-size: 14px;
  }

  .productSec h3 {
    font-size: 26px;
    line-height: 38px;
  }

  .proContentSec {
    padding: 16px;
  }
}

@media (max-width: 1199px) {
  .SndSecInnerBox .imgSecCrd {
    height: 130px !important;
  }

  .SndSecInnerBox .innContent {
    padding: 22px 24px 52px;
  }

  .SndSecInnerBox .innContent p {
    line-height: 20px;
    font-size: 14px;
  }

  .SndSecInnerBox .innContent h5 {
    font-size: 22px;
    line-height: 20px;
    padding: 0 0 8px;
  }

  .sndRighSec h3,
  .share-card h5,
  .WeAreRightSec h3 {
    font-size: 42px;
    line-height: 50px;
  }

  .sndRighSec p,
  .share-card p,
  .WeAreRightSec p {
    line-height: 20px;
    font-size: 14px;
  }

  .sndRighSec a {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 12px;
    margin: 30px auto 0;
  }

  .mainHeadingChapter h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 0 auto 20px;
  }

  .share-card .VissionImg {
    box-shadow: 8px 8px 0 0 #ffffff;
  }

  .lftSharImg .VissionImg {
    box-shadow: -8px 8px 0 0 #ffffff !important;
  }

  .productSec {
    gap: 0;
  }

  .weAreCatBtn a {
    padding: 8px;
    font-size: 14px;
    line-height: 22px;
  }

  .weAreCatBtn {
    gap: 9px;
    margin: 16px auto 0;
  }

  .chaptCard h3 {
    font-size: 20px;
    line-height: 30px;
    padding: 10px 20px;
  }

  .organisSec h2 {
    font-size: 38px;
    padding: 0 0 10px;
    line-height: 42px;
  }

  .organisSec p {
    font-size: 14px;
    margin: 0 auto 14px;
    line-height: 22px;
  }

  .share-card ul li {
    line-height: 20px;
    font-size: 13px;
    padding: 0 0 10px;
  }

  .objectHeading h2 {
    font-size: 42px;
  }

  .objectContentSec {
    padding: 24px 12px;
  }

  .initiSecContent {
    padding: 22px 22px;
  }

  .initisHeading h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .aboutSecHeading h2 {
    font-size: 42px;
  }

  .certificateHeading h2 {
    font-size: 42px;
    margin: 0 0 16px;
  }

  .trainingSecinner h3 {
    margin: 0 0 6px;
  }
}

@media (max-width: 992px) {
  .trainingSecinner h3 {
    font-size: 28px;
  }

  .trainingSecinner p {
    line-height: 20px;
    font-size: 14px;
    margin: 0 auto 16px;
  }

  .padding100 {
    padding: 50px 0;
  }

  .sndRighSec h3 {
    font-size: 36px;
    line-height: 42px;
  }

  .SndSecInnerBox .imgSecCrd {
    height: 140px !important;
  }

  .SndSecInnerBox .innContent {
    padding: 19px 16px 62px;
  }

  .SndSecInnerBox .innContent h5 {
    font-size: 18px;
    line-height: 14px;
  }

  .ReadMoreBtn {
    font-size: 14px;
    padding: 6px 16px;
  }

  .sndRighSec a {
    margin: 8px auto 20px;
  }

  .SndSecInnerBox .innContent p {
    line-height: 16px;
    font-size: 13px;
  }

  .productSec p {
    line-height: 19px;
    font-size: 13px;
  }

  .productSec h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .prodImg {
    height: 236px;
    min-width: 210px;
  }

  .everyImgSec img {
    width: 50%;
  }

  .mobileSecWe {
    flex-direction: column-reverse;
  }

  .everyImgSec {
    margin-top: 24px;
  }

  .chaptCard {
    margin: 0 auto 16px;
  }

  .organisSec h2 {
    font-size: 42px;
    line-height: 48px;
  }

  .SndSecInnerBox {
    margin: 20px auto 0;
  }

  .initiSecContent {
    padding: 22px 22px;
    height: auto;
    margin: 0 auto 16px;
  }

  .initisHeading h2 {
    font-size: 38px;
    margin-bottom: 26px;
  }

  .initiSecContent h6 {
    margin-bottom: 16px;
    font-weight: 700;
    line-height: normal;
    height: auto;
  }

  .aboutSecHeading h2 {
    font-size: 38px;
    padding: 0 0 10px;
  }

  .certificateHeading h2 {
    font-size: 38px;
    margin: 0 0 16px;
  }

  .aboutContentInner p {
    line-height: 24px;
    font-size: 14px;
  }

  .aboutContentInner ul li {
    font-size: 14px;
    margin: 0 auto 10px;
    line-height: 24px;
  }

  .ftMenuSec p {
    font-size: 14px;
    line-height: 21px;
    margin: 11px auto 0;
  }
}

@media (max-width: 767px) {
  .initisHeading h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .trainingSecinner h3 {
    font-size: 22px;
  }

  .objectContentSec {
    padding: 24px 12px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    height: auto;
    margin: 0 auto 0px;
  }

  .padding100 {
    padding: 20px 0;
  }

  .sndRighSec h3 {
    font-size: 26px;
    line-height: 26px;
  }

  .sndRighSec a {
    margin: 16px auto 26px;
  }

  .SndSecInnerBox .imgSecCrd {
    height: 150px !important;
  }

  .SndSecInnerBox .innContent h5 {
    font-size: 20px;
    line-height: 20px;
  }

  .SndSecInnerBox .innContent {
    padding: 18px 20px 49px;
  }

  .SndSecInnerBox .innContent p {
    line-height: 20px;
    font-size: 14px;
  }

  .SndSecInnerBox {
    margin: 0 auto 12px;
  }

  .ReadMoreBtn {
    font-size: 14px;
    padding: 4px 16px;
  }

  .productSec {
    display: inline-block;
  }

  .prodImg {
    height: 50%;
    min-width: 100%;
  }

  .componetSecBnner {
    height: auto;
    margin: 0 auto 16px;
  }

  .BnnerSecHardware {
    margin-bottom: 0px;
  }

  .sndRighSec h3,
  .share-card h5,
  .WeAreRightSec h3,
  .content h2 {
    font-size: 26px;
    line-height: 14px;
  }

  .sndRighSec p,
  .share-card p,
  .WeAreRightSec p,
  .content p {
    line-height: 18px;
    font-size: 12px;
  }

  .weAreCatBtn a i {
    font-size: 9px;
    width: 16px;
    height: 16px;
    line-height: 16px;
  }

  .weAreCatBtn a {
    padding: 8px;
    font-size: 12px;
    line-height: 12px;
  }

  .mainHeadingChapter h2 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 auto 16px;
  }

  .chaptCard h3 {
    font-size: 18px;
    line-height: 26px;
    padding: 4px 10px;
  }

  .organisSec h2 {
    font-size: 26px;
    line-height: 29px;
    padding: 16px 0 10px;
  }

  .organisSec p {
    font-size: 14px;
    margin: 0 auto 10px;
    line-height: 24px;
  }

  .share-card ul li {
    line-height: 20px;
    font-size: 12px;
  }

  .goalSecMobile .share-card {
    margin: 20px auto 0;
  }

  .goalSecMobile {
    margin: 0 auto 0;
    padding: 10px 0 0;
  }

  .sndRighSec h3 {
    line-height: 30px;
  }

  .sndRighSec ul li {
    line-height: 24px;
    font-size: 14px;
  }

  .objectHeading h2 {
    font-size: 26px;
  }

  .objectHeading p {
    font-size: 14px;
    margin: 0 auto 20px;
  }

  .ftContent {
    padding: 10px;
    margin: 3px 0 0;
  }
}

@media (max-width: 575px) {
  .weAreCatBtn a {
    padding: 6px;
    line-height: 18px;
    font-size: 12px;
  }

  .weAreCatBtn a i {
    font-size: 9px;
    width: 18px;
    height: 18px;
    line-height: 20px;
  }

  .shaCrdFleximg {
    margin: 16px;
  }

  .mobileMissSec {
    margin-top: 20px !important;
    flex-direction: column-reverse;
  }

  .padding100,
  .vision-mission,
  .captuureSec {
    padding: 30px 0px;
  }

  .trustedSecpadd {
    padding: 30px 0 0;
  }

  .objectivesCard {
    padding: 12px;
  }

  .objectivesCard h2 {
    font-size: 28px;
  }

  .objectivesCard p {
    line-height: 20px;
    font-size: 14px;
  }

  .objectivesCard {
    margin: 0 auto 8px;
  }

  .paraobjSec p {
    font-size: 16px;
    margin: 0 auto 14px;
  }

  .productSec h3 {
    font-size: 20px;
    line-height: 40px;
  }

  .productSec {
    margin: 10px 0;
  }

  .SndSecInnerBox .innContent {
    padding: 18px 14px 49px;
  }

  .prodImg {
    height: auto;
    min-width: 100%;
    display: flex;
    justify-content: center;
  }

  .prodImg img {
    padding: 0;
    width: 220px;
    height: 100%;
  }

  .componetSecBnner {
    height: auto;
    margin: 0 auto 6px;
  }

  .componetSecBnner img {
    width: 310px;
  }

  .productSec p {
    line-height: 22px;
    font-size: 13px;
  }

  .socailMediaSecFt a i {
    font-size: 16px;
  }

  .socailMediaSecFt a {
    margin: 20px 4px 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .aboutSecHeading h2 {
    font-size: 26px;
    padding: 0 0 0;
  }

  .aboutContentInner ul {
    padding-left: 16px;
  }

  .certificateHeading h2 {
    font-size: 26px;
    margin: 0 0 0;
  }

  .trainingCollSec .accordion-button {
    font-size: 16px;
    padding: 14px 4px;
  }

  .trainingCollSec .accordion-body p {
    font-size: 13px;
  }

  .traingImgSec {
    box-shadow: 14px 12px 0 0 #146233;
    margin-top: 20px;
  }
}

@media (max-width: 375px) {
  .carousel-caption h5 {
    font-size: 18px;
  }
}