/********** Template CSS **********/
:root {
  --primary: #0077b6;
  --secondary: #FFF0E6;
  --light: #F8F8F9;
  --dark: #001D23;
}


.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
  transition: .5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background-color: #0077B6;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #000;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .07);

  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 29, 35, .4);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--dark);
  border: 12px solid var(--dark);
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: linear-gradient(rgba(0, 29, 35, .4), rgba(0, 29, 35, .4)), url(../img/banner/breadcrumb.jpeg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #999999;
}


/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #FFFFFF;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
  opacity: 0;
  transition: .5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}


/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
  color: var(--primary);
  border-color: var(--primary);
}


/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: .5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: .5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #FFFFFF;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.kf-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 50px;
  flex-wrap: wrap;
  overflow-x: hidden;
}

.kf-image,
.kf-content {
  flex: 1 1 500px;
  padding: 20px;
  opacity: 0;
  transition: all 1s ease;
}

.kf-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kf-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #000;
}

.kf-content p {

  margin-bottom: 15px;
}

.kf-content ul {
  list-style: none;
  padding-left: 0;
}

.kf-content ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.kf-content ul li i {
  color: #0077B6;
  margin-right: 10px;
}

/* Animation Classes */
.fade-in-left {
  transform: translateX(-100px);
}

.fade-in-right {
  transform: translateX(100px);
}

.fade-in-left.visible,
.fade-in-right.visible {
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .kf-section {
    padding: 50px 10px;
    text-align: left;
  }

  .kf-content h2 {
    font-size: 1.8rem;
  }

  .fade-in-left,
  .fade-in-right {
    transform: translateY(50px);
  }

  .fade-in-left.visible,
  .fade-in-right.visible {
    transform: translateY(0);
  }
}

.kf3d-read-btn-wrap {
  perspective: 1000px;
}

.kf3d-read-btn {
  background: linear-gradient(135deg, #0077B6, #00B4D8);
  color: #fff;
  padding: 7px 25px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 0 #005f8a;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: translateY(0);
}

.kf3d-read-btn:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #005f8a;
}

.kf3d-read-btn:hover {
  background: linear-gradient(135deg, #0096c7, #48cae4);
}

@media (max-width: 480px) {
  .kf3d-read-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.kfwk-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 50px;
  flex-wrap: wrap;
  gap: 40px;
}

.kfwk-img,
.kfwk-content {
  flex: 1 1 500px;
  padding: 20px;
  opacity: 1;

}

.kfwk-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kfwk-content h2 {


  margin-bottom: 20px;
}

.kfwk-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}



/* Mobile Responsive */
@media (max-width: 768px) {
  .kfwk-section {

    padding: 60px 15px;
    text-align: left;
  }

  .kfwk-content h2 {
    font-size: 1.6rem;
  }

  .kfwk-content p {
    font-size: 1rem;
  }
}

.kfprojects-wrapper {
  padding: 60px 0px;
  background: #f5f5f5;
}

.kfprojects-wrapper h2 {


  margin-bottom: 80px;
  text-align: center;
}

.kfprojects-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

.kfprojects-section {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
}

.kfprojects-carousel {
  flex: 1;
  max-width: 500px;
}

.kfprojects-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px dashed #ccc;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.kfprojects-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.kfprojects-content {
  padding: 40px;
  text-align: center;
}

.kfprojects-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #023e8a;
}

.kfprojects-content p {
  font-size: 0.95rem;
  color: #333;
}

.kfprojects-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #0077b6;
  text-decoration: none;
}

.kfprojects-link::after {
  content: " \2192";
}

@media (max-width: 768px) {
  .kfprojects-section {
    flex-direction: column;
    align-items: center;
  }

  .kfprojects-carousel {
    max-width: 90%;
  }
}

.owl-theme .owl-dots .owl-dot span {
  background: #0077B6;
}

.kfgallery-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  padding: 50px 50px;
}

.kfgallery-carousel .kfgallery-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.kfgallery-carousel .kfgallery-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kfgallery-carousel .kfgallery-img:hover img {
  transform: scale(1.05);
}

.kfgallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.kfgallery-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.kfgallery-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}


@media (max-width: 600px) {
  .kfgallery-carousel .kfgallery-img img {
    height: 200px;
  }
}

.kf-getinvolved-section h2 {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 90px;
}

.kf-getinvolved-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.kf-getinvolved-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  opacity: 1;

}


.kf-getinvolved-card h3 {
  font-size: 1.2rem;
  color: #0077B6;
  margin-bottom: 30px;
}

.kf-getinvolved-card ul {
  list-style: none;
  padding: 0;
}

.kf-getinvolved-card li {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

.kf-getinvolved-card li i {
  color: #0077B6;
  margin-right: 10px;
}

.kf-card-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #0077b6;
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.kf-card-button:hover {
  background-color: #023e8a;
  color: #fff;
}

.kf-join-button {
  display: inline-block;
  background-color: #0077b6;
  color: #fff;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.kf-join-button:hover {
  background-color: #023e8a;
}

@media (max-width: 768px) {
  .kf-getinvolved-card {
    max-width: 90%;
  }

  .kf-donate-wrapper {
    padding: 50px 10px;
  }
}

.kf-donate-wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
}

.kf-donate-wrapper {
  padding: 50px 20px;
}


.kf-donate-wrapper p.kf-subheading {
  font-size: 1.5rem;
  color: #495057;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;

}

.kf-donate-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 80px auto 40px auto;
  gap: 40px;
}

.kf-donate-text {
  flex: 1 1 400px;
  text-align: left;
}

.kf-donate-text h3 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.kf-donate-text ul {
  list-style: none;
  padding-left: 0;
}

.kf-donate-text li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.kf-donate-text li i {
  color: #0077B6;
  margin-right: 10px;
}

.kf-donate-img {
  flex: 1 1 400px;
}

.kf-donate-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kf-donate-btn-section {
  margin-top: 40px;
}

.kf-donate-btn-main {

  background: #0077B6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.kf-donate-btn-main:hover {
  background: #023e8a;
  color: #fff;
}

@media (max-width: 768px) {
  .kf-donate-section {

    text-align: left;
  }

  .kf-donate-text {
    text-align: left;
  }
}

.kf-carousel-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.kf-carousel-section h2 {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.kf-carousel-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.kf-carousel-nav {
  margin-bottom: 30px;
  margin-top: 30px;
}

.kf-carousel-prev,
.kf-carousel-next {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 12px 16px;
  margin: 0 10px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.kf-carousel-prev:hover,
.kf-carousel-next:hover {
  background: #023e8a;

}

.kf-carousel-wrapper .item {
  background: #e0f7fa;
  border-radius: 16px;
  overflow: hidden;

  text-align: left;
}

.kf-carousel-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.kf-carousel-content {
  padding: 25px;
}

.kf-carousel-content h3 {
  color: #0077b6;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.kf-carousel-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.kf-carousel-button {
  display: inline-block;
  padding: 10px 20px;
  background: #0077b6;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.kf-carousel-button:hover {
  background: #023855;
  color: #fff;
}

@media (max-width: 768px) {
  .kf-carousel-content {
    text-align: center;
  }
}

.kf-carousel-date {
  display: block;
  font-size: 0.9rem;
  color: #525151;
  margin-bottom: 10px;
}

.kfblogs-carousel-container {
  padding: 80px 20px;
  background: #eaeaea;
  text-align: center;
}

.kfblogs-carousel-title {
  font-size: 2.5rem;
  color: #023e8a;
  margin-bottom: 10px;
}

.kfblogs-carousel-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

.kfblogs-carousel .item {
  background: #f1f5f9;
  border-radius: 30px 10px 30px 10px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.kfblogs-carousel .item:hover {
  transform: translateY(-10px);
}

.kfblogs-carousel .item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #0077b6;
}

.kfblogs-carousel .item-content {
  padding: 20px;
}

.kfblogs-carousel .item-content h3 {
  font-size: 1.3rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.kfblogs-carousel .item-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.kfblogs-carousel .item-content a {
  font-weight: bold;
  color: #023e8a;
  text-decoration: none;
  font-size: 0.95rem;
}

.kfblogs-carousel .owl-dots .owl-dot span {
  background: #90e0ef !important;
}

.kfblogs-carousel .owl-dots .owl-dot.active span {
  background: #0077b6 !important;
}

@media (max-width: 768px) {
  .kfblogs-carousel .item img {
    height: 180px;
  }
}

.kfforms-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  background: url('../img/banner/hero1.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

.kfform-box {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.kfform-box h2 {
  font-size: 1.8rem;
  color: #023e8a;
  margin-bottom: 10px;
  text-align: center;
}

.kfform-box p {
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
}

.kfform-group {
  margin-bottom: 20px;
}

.kfform-group label {
  font-weight: 600;
  color: #0077b6;
  display: block;
  margin-bottom: 6px;
}

.kfform-group input,
.kfform-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #f9fcfd;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.kfform-group input:focus,
.kfform-group select:focus {
  border-color: #00b4d8;
  outline: none;
}

.kfform-button {
  display: block;
  width: 100%;
  background: #0077b6;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kfform-button:hover {
  background: #023e8a;
}

@media (max-width: 768px) {
  .kfforms-container {
    flex-direction: column;
    padding: 40px 20px;
  }
}

.kfcontact-callnow-btn2025 {

  background-color: #0077b6;
  color: #fff;
  font-size: 1rem;

  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
  transition: all 0.3s ease-in-out;
}

.kfcontact-callnow-btn2025:hover {
  background-color: #023e8a;
  transform: scale(1.05);
  color: #fff;
}

@media (max-width: 600px) {
  .kfcontact-callnow-btn2025 {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.kfgalleryX-section {

  text-align: center;
}

.kfgalleryX-title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 30px;
}

.kfgalleryX-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.kfgalleryX-img-wrap img:hover {
  transform: scale(1.05);
}

.kfgalleryX-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.kfgalleryX-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.kfgalleryX-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.koodugaiGallery2025X-section {

  text-align: center;
}

.koodugaiGallery2025X-title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 30px;
}

.koodugaiGallery2025X-img-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.koodugaiGallery2025X-img-box img:hover {
  transform: scale(1.05);
}

.koodugaiGallery2025X-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.koodugaiGallery2025X-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.koodugaiGallery2025X-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.breadcrumb-item .active {
  color: #fff;

}

.footer p {
  font-size: 14px;
}

.footer a {
  font-size: 14px;
}

section.kf-vm-section {
  position: relative;
  padding: 60px 20px;
  background: url('../img/banner/breadcrumb.jpeg') no-repeat center center/cover;
  z-index: 1;
  overflow: hidden;
}

section.kf-vm-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark blue overlay */
  z-index: 0;
}

.kf-vm-container {
  position: relative;
  /* To ensure content stays above the overlay */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.kf-vm-left,
.kf-vm-right {
  flex: 1 1 45%;
  background: rgba(246, 246, 246, 0.95);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);


}


.kf-vm-left h3,
.kf-vm-right h3 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 15px;
}

.kf-vm-left h3 i,
.kf-vm-right h3 i {
  margin-right: 10px;
}

.kf-vm-left p,
.kf-vm-right p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}



@media (max-width: 768px) {
  .kf-vm-container {
    flex-direction: column;
  }

  .kf-vm-left,
  .kf-vm-right {
    flex: 1 1 100%;
  }
}

.overview-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #0d1a38;
  color: #fff;
}

.overview-left {
  flex: 1;
  min-height: 100%;
  background: url('../img/banner/keyfocus.webp') no-repeat center center/cover;
  position: relative;
}

.overview-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.overview-left-content {
  position: relative;
  z-index: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.overview-left-content h2 {
  font-size: 2.5rem;
  color: #fff;
}

.overview-right {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background-color: #ffffff;
  color: #222;
}

.overview-right h3 {
  font-size: 1.6rem;
  color: #0d1a38;
  margin-bottom: 10px;
}

.overview-right p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.overview-right ul {
  list-style: none;
  padding-left: 0;
}

.overview-right ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  font-weight: 500;
}

.overview-right ul li::before {
  content: '\f058';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0d1a38;
}




@media (max-width: 768px) {
  .overview-section {
    flex-direction: column;
  }

  .overview-left,
  .overview-right {
    flex: 100%;
    max-width: 100%;
  }

  .overview-left-content {
    padding: 30px 20px;
  }

  .overview-left-content h2 {
    font-size: 2rem;
  }
}

.team-block-container {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  padding: 60px 20px;
}

.team-block-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1.2s ease-out;
}

.team-block-title {
  font-size: 36px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.team-block-title::after {
  content: "";
  display: block;
  margin: 12px auto;
  width: 70px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px;
}

.team-block-subtitle {
  font-size: 23px;
  color: #5a5a5a;
  font-weight: 600;
  margin-bottom: 40px;
}

.team-block-card {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  border-radius: 12px;
  line-height: 1.7;
  color: #333333;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.team-block-card:hover {
  transform: translateY(-5px);
}

.team-block-description strong {
  color: #1976d2;
  font-weight: 600;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .team-block-title {
    font-size: 28px;
  }

  .team-block-card {
    padding: 20px 15px;
    font-size: 15px;
  }
}

.dfc-wrapper-flexzone {
  padding: 40px;
  background: linear-gradient(135deg, #fefefe, #eef2f3);
}

.dfc-lefttext-slide {
  padding: 20px;

}

.dfc-lefttext-slide h2 {
  font-size: 32px;
  color: #1e3c72;
  margin-bottom: 20px;
}

.dfc-lefttext-slide p {
  font-size: 18px;
  line-height: 1.6;
}

.dfc-carousel-holder {
  padding: 20px;

}

.owl-carousel.dfc-carousel-owl img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  cursor: pointer;
}



.dfc-benefit-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  justify-content: center;
}

.dfc-benefit-box {
  position: relative;
  width: 350px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.dfc-benefit-box:hover {
  transform: scale(1.03);
}

.dfc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  /* white overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.dfc-overlay i {
  font-size: 40px;
  color: #2d89ef;
  margin-bottom: 15px;
}

.dfc-overlay h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dfc-overlay p {
  font-size: 16px;
  color: #000;
}

/* Background images for each box */
.dfc-box-child {
  background-image: url('../img/project-details/benefits1.jpg');
}

.dfc-box-teacher {
  background-image: url('../img/project-details/benefits2.jpg');
}

.dfc-box-rural {
  background-image: url('../img/project-details/benefits3.jpg');
}

.dfc-involve-hero {
  background: url('../img/banner/hero2.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.dfc-involve-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.dfc-involve-content {
  position: relative;
  z-index: 2;
}

.dfc-involve-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #fff;
}

.dfc-involve-btnbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.dfc-involve-btn {
  background: #fff;
  color: #0a66c2;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dfc-involve-btn:hover {
  transform: scale(1.1);
  background: #0a66c2;
  color: #fff;
}

.dfc-contact-section {
  padding: 40px 20px;
  background: #f0f5ff;
}

.dfc-contact-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e3c72;
}

.dfc-form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.dfc-form-flex input,
.dfc-form-flex textarea {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.dfc-form-flex button {
  background: #0a66c2;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

@media(max-width: 768px) {
  .dfc-involve-btnbox {
    flex-direction: column;
  }

  .dfc-wrapper-flexzone {
    padding: 10px;
    background: linear-gradient(135deg, #fefefe, #eef2f3);
  }
}

.vol-wrapper-unique {
  padding-top: 180px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
  background: #f0faff;
  text-align: center;
}

.vol-box-unique {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transform: translateY(-50px);
  opacity: 0;
  transition: all 1s ease;
}

.vol-box-unique.show-vol-animation {
  transform: translateY(0);
  opacity: 1;
}

.vol-box-unique h2 {
  font-size: 28px;
  color: #0077b6;
  margin-bottom: 20px;
}

.vol-form-unique {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vol-field-unique {
  text-align: left;
}

.vol-field-unique label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.vol-field-unique input,
.vol-field-unique textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s;
}

.vol-field-unique input:focus,
.vol-field-unique textarea:focus {
  border-color: #0077b6;
  outline: none;
}

.vol-btn-unique {
  background: #0077b6;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.vol-btn-unique:hover {
  background: #005f8a;
}

@media (max-width: 600px) {
  .vol-box-unique {
    padding: 30px 20px;
  }

  .vol-wrapper-unique {
    padding-top: 150px;
  }

  .vol-box-unique h2 {
    font-size: 24px;
  }
}

.pwus-section-uniqid768 {
  background: #fff;
  padding-top: 180px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pwus-header-uniqid768 {
  font-size: 28px;
  color: #0077b6;
  margin-bottom: 10px;
}

.pwus-subtext-uniqid768 {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 70px;
}

.pwus-form-container-uniqid768 {
  max-width: 800px;
  margin: 0 auto;
  background: #fefefe;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: translateY(-30px);
  transition: all 1s ease;
}

.pwus-form-container-uniqid768.animate-show {
  opacity: 1;
  transform: translateY(0);
}

.pwus-form-layout-uniqid768 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pwus-form-layout-uniqid768 input,
.pwus-form-layout-uniqid768 textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  background: #f9f9f9;
}

.pwus-form-layout-uniqid768 input:focus,
.pwus-form-layout-uniqid768 textarea:focus {
  border-color: #0077b6;
  outline: none;
  background-color: #fff;
}

.pwus-form-half-uniqid768 {
  flex: 1 1 48%;
  min-width: 200px;
}

.pwus-form-full-uniqid768 {
  flex: 1 1 100%;
}

.pwus-submit-button-uniqid768 {
  background-color: #0077b6;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.pwus-submit-button-uniqid768:hover {
  background-color: #144e67;
}

@media (max-width: 600px) {
  .pwus-form-half-uniqid768 {
    flex: 1 1 100%;
  }
}

.xcore-contact-area {
  background: linear-gradient(135deg, #1f1c2c, #7f8893);
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  animation: xcore-slideTop 1s ease-out;
}

.xcore-contact-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
}

.xcore-contact-box:hover {
  transform: translateY(-10px);
}

.xcore-contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.xcore-contact-box p,
.xcore-contact-box a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.xcore-contact-box i {
  font-size: 22px;
  margin-right: 10px;
  color: #31c0e4;
}

@keyframes xcore-slideTop {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}