@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&family=Bebas+Neue&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
}

a {
  text-decoration: none !important;
}

body {
  font-family: "Hanken Grotesk", sans-serif;
  background-color: #f8f9fa;
}

html {
  scroll-behavior: smooth;
  font-family: "Hanken Grotesk", sans-serif;
}

.logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  text-align: center;
}

.color-1 {
  color: #0f056f;
}

.color-2 {
  color: #f8d35a;
}

.contact-box {
  background-color: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: #e2f0ff;
  transform: translateY(-1px);
}

.contact-item:hover {
  color: #0d6efd;
  transition: color 0.3s ease;
}

.donate-btn {
  background: linear-gradient(135deg, #ff416c, #2d3782);
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 75, 43, 0.4);
}

.donate-btn:hover {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 75, 43, 0.6);
}

.btn-donate {
  background: linear-gradient(135deg, #ff4d6d, #ff6b81);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 107, 129, 0.3);
}

.btn-donate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-30deg);
  transition: left 0.5s ease;
}

.btn-donate:hover::before {
  left: 120%;
}

.btn-donate:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 107, 129, 0.5);
}

.nav-top .nav-links {
  background-image: url("../Images/Shape.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 5px 115px 5px 70px;
  color: #fff;
}

.mob-link-extra {
  display: none;
}

.nav-top .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0px 5px;
  transition: all 0.3s ease;
  font-size: 13px;
}
.img-mobile {
  display: none !important;
}

.slider-wrapper-mob {
  display: none;
}

.home-banner {
  position: relative;
  margin-top: -105px;

  .carousel-container {
    width: 100%;
    margin: 0;
  }

  .owl-carousel .item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 400px; /* Added minimum height */
  }

  .owl-carousel img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Changed from fill to cover for better aspect ratio */
  }

  .owl-carousel .caption {
    position: absolute;
    top: 65%;
    left: 5%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    padding: 15px;
    text-align: left;
    max-width: 45%;
    background-color: rgba(
      255,
      255,
      255,
      0.8
    ); /* Added for better readability */
    border-radius: 10px;
  }

  .owl-carousel .caption h3 {
    font-family: "Rubik", sans-serif;
    margin-bottom: 10px;
    font-size: 35px;
    color: #000;
    font-weight: bold;
  }

  .owl-carousel .caption h4 {
    text-transform: uppercase;
    color: #0f056f;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .owl-carousel .caption p {
    margin-bottom: 15px;
    color: #000;
    font-size: 16px;
  }

  .btn-arrow {
    position: relative;
    padding: 10px 50px 10px 20px;
    border-radius: 30px;
    background: #0f056f;
    color: white;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  .btn-arrow:hover {
    background: #0056b3;
  }

  .btn-arrow .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7) !important;
    color: #000 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .owl-nav .owl-prev {
    left: 10px;
  }

  .owl-nav .owl-next {
    right: 10px;
  }

  .owl-dots {
    margin-top: -40px;
    /* z-index: 99; */
    position: relative;
    text-align: end !important;
    margin-right: 130px;
  }

  .owl-dots.active {
    color: #001f3f !important;
  }

  .owl-dots .owl-dot.active span {
    background: #372d93 !important;
  }

  /* Hover effect */
  .owl-dots .owl-dot:hover span {
    background: #001f3f !important;
  }

  /* .owl-dots .owl-dot {
    border: 1px solid;
    border-radius: 50%;
    margin: 0 5px;
    height: 16px;
    width: 16px;
  } */

  /* .owl-dots .owl-dot.active {
    background: #0f056f;
    border: 1px solid #0f056f;
  } */

  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .owl-carousel .caption {
      max-width: 80%;
    }

    .owl-carousel .caption h3 {
      font-size: 30px;
    }

    .owl-dots {
      margin-top: -30px;
    }
  }

  @media (max-width: 992px) {
    margin-top: -80px;

    .owl-carousel .caption {
      padding: 12px;
      max-width: 85%;
    }

    .owl-carousel .caption h3 {
      font-size: 26px;
    }

    .owl-carousel .caption h4 {
      font-size: 16px;
    }

    .owl-carousel .caption p {
      font-size: 14px;
    }

    .btn-arrow {
      padding: 8px 40px 8px 15px;
      font-size: 13px;
    }
  }

  @media (max-width: 768px) {
    margin-top: -60px;

    .owl-carousel .caption {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      max-width: 90%;
      width: 90%;
    }

    .owl-carousel .caption h3 {
      font-size: 22px;
    }

    .owl-carousel .caption h4 {
      font-size: 14px;
    }

    .owl-carousel .caption p {
      font-size: 13px;
      margin-bottom: 10px;
    }

    .btn-arrow {
      padding: 6px 30px 6px 12px;
      font-size: 12px;
    }

    .owl-nav button {
      width: 30px;
      height: 30px;
      font-size: 16px !important;
    }

    .owl-dots .owl-dot {
      height: 12px;
      width: 12px;
    }
  }

  @media (max-width: 576px) {
    margin-top: -50px;

    .owl-carousel .caption {
      padding: 10px;
    }

    .owl-carousel .caption h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .owl-carousel .caption h4 {
      font-size: 12px;
      margin-bottom: 5px;
    }

    .owl-carousel .caption p {
      font-size: 11px;
      margin-bottom: 8px;
      display: none;
    }

    .btn-arrow {
      padding: 5px 25px 5px 10px;
      font-size: 11px;
    }

    .owl-dots {
      margin-top: -20px;
    }
  }
}

#topButton {
  display: none;
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 99;
  font-size: 16px;
  background-color: #2d3782;
  color: white;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
  padding: 3px;
  cursor: pointer;
  transition: background-color 0.3sease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.social-dropdown {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.social-toggle {
  width: 50px;
  height: 50px;
  background-color: #fe0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.social-toggle:hover {
  background-color: #5b4cdb;
}

.social-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.2s ease;
  /* Changed to 0.2s as requested */
}

.social-dropdown:hover .social-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.social-item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  /* Changed to 0.2s as requested */
}

.social-item:hover {
  transform: scale(1.1);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.instagram {
  background-color: #ff1462;
}

.linkedin {
  background-color: #0077b5;
}

.whatsapp {
  background-color: #48c859;
}

/* Contact Form Styles */
.contact-form {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 280px;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
}

.contact-form.show {
  display: block;
}

.form-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #6c757d;
}

.form-close:hover {
  color: #000;
}

.study-section {
  padding: 60px 0;

  .positive-review {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }

  .video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-thumbnail img {
    width: 100%;
    border-radius: 12px;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6a11cb;
    font-size: 30px;
    z-index: 1;
    animation: animate__heartBeat 2s infinite;
  }

  .about-btn {
    background: #6a11cb;
    color: #fff;
    border-radius: 8px;
    padding: 10px 25px;
    border: none;
    text-decoration: none;
  }

  .about-btn:hover {
    background: #4e0fb7;
    color: #fff;
  }
}

.modal {
  .modal-content {
    background: transparent;
    border: none;
    animation: fadeInDown 0.5s ease both;
  }

  .responsive-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }

  .responsive-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .modal-header {
    border: none;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
  }

  .btn-close {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
  }
}

.title {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a2d4b;
  display: inline-block;
  margin-bottom: 30px;
}

.title::before,
.title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.title::before {
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: #0f056f;
}

.title::after {
  bottom: -20px;
  width: 40px;
  height: 4px;
  background-color: #b5e4cc;
}

.subtitle {
  position: relative;
  font-size: 1.05rem;
  color: #5c6f7b;
  padding-left: 30px;
  margin-bottom: 1.8rem;
}

.subtitle::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #198754;
  font-size: 1.2rem;
}

.main-buttons {
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .btn:hover i {
    transform: translateX(4px);
  }

  .btn-apply {
    background: #6a11cb;
    color: #ffffff;
    box-shadow: 0 4px 0 #001f3f;
    border: none;
  }

  .btn-about {
    background: #fff;
    color: #001f3f;
    border: 1.5px solid #001f3f;
  }

  .btn-about:hover {
    background-color: #f0f0f0;
  }
}

.study-section-content {
  padding-left: 75px;
}

.study-section-content h2 {
  white-space: nowrap;
}
.study-section-content h2 span {
  font-size: 20px;
}

.fa-youtube {
    color: #ff0000;
}

.youtube-icon {
    background-color: #fff;
}

.youtube-section {
  /* position: relative;
  margin-top: -90px; */
  padding: 50px 0;
  z-index: 1;

  .youtube-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
  }

  .youtube-header .youtube-header-logo {
    height: 60px;
  }
  .youtube-logo {
    width: 150px;
  }

  .youtube-header-name {
    margin: 0 15px;
  }

  .subscribe-btn {
    /* background-color: #ff0000; */
    color: #000;
    border: none;
    /* padding: 10px 20px; */
    /* border-radius: 30px; */
    /* font-weight: bold; */
    text-decoration: underline !important;
    display: flex;
    align-items: end;
  }
  .subscribe-btn span {
    margin-bottom: 3px;
  }
}

.study-section .study-section-estd {
  position: absolute;
  display: inline-flex;
  background-color: #0056b3;
  color: #fff;
  padding: 20px 30px;
  justify-content: end;
  flex-direction: column;
  align-items: center;
  right: 90%;
  top: 150px;
  border-radius: 12px;
}

.study-section-estd-mob {
  display: none;
}

.stat-column {
  text-align: center;
  padding: 30px 15px;
}
.divider {
  border-left: 1px solid #ccc;
}
@media (max-width: 767.98px) {
  .divider {
    border-left: none;
    border-top: 1px solid #ccc;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2d3782;
}
.stat-label {
  font-size: 1.1rem;
  color: #666;
}

.key-programs-efa{
  padding: 120px 0;
}

.programs-section {
  padding: 60px 0;
  background-color: #f7f9fb;

  .program-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  }

  .program-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease;
  }

  .program-card:hover {
    transform: translateY(-10px);
  }

  .program-image {
    position: relative;
    overflow: hidden;
  }

  .program-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(80%);
    transform: scale(1);
  }

  .program-card:hover .program-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
  }

  .program-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }

  .program-content {
    padding: 20px;
    z-index: 2;
  }

  .program-content h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
  }

  .program-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 10px;
  }

  .program-content ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
  }
}

.impact-section {
  padding: 60px 0;
  background-image: url("../Images/India_Map.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.impact-header {
  text-align: center;
  margin-bottom: 40px;
}

.impact-section {
  .counter-box {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 1;
  }

  .counter-box:hover {
    transform: translateY(-5px);
  }

  .counter-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  .counter-box:hover::before {
    opacity: 1;
  }

  .counter-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  .counter-box:hover::after {
    opacity: 1;
  }

  .counter-content {
    position: relative;
    z-index: 2;
    color: #000;
  }

  .counter-box:hover .counter-content {
    color: #fff;
  }

  .counter-number {
    font-size: 2rem;
    font-weight: 700;
  }

  .counter-label {
    font-size: 1rem;
    margin-top: 10px;
  }

  /* Custom images for each box */
  .bg-1::before {
    background-image: url("../Images/TeachersTraining.webp");
  }

  .bg-2::before {
    background-image: url("../Images/Students.webp");
  }

  .bg-3::before {
    background-image: url("../Images/Nanritam_Map.webp");
  }
}

.testimonial-section {
  padding: 2rem 0;
  position: relative;
}

.testimonial-section h2 {
  margin-left: 40px;
}

.Testimonials .row {
  background-image: url("../Images/Testimonial_Pots.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  padding: 2rem 0;
}

.testimonial-section .testimonial-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  margin: 1rem 0.5rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-section .testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -15px;
  left: 15px;
  font-family: serif;
  font-size: 10rem;
  color: rgb(1 1 1 / 16%);
  line-height: 1;
}

.testimonial-section .testimonial-card .quote {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-section .rating {
  margin-bottom: 1rem;
}

.testimonial-section .rating i {
  color: #ffc107;
  font-size: 1.2rem;
  margin-right: 3px;
}

.testimonial-section .client-info {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-section .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial-section .client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .client-details h5 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-section .client-details p {
  color: #777;
  margin-bottom: 0;
  font-style: italic;
  font-size: 12px;
}

/* Slick Slider Customization */
.testimonial-section .testimonial-slider {
  position: relative;
  padding: 0 20px;
}

.testimonial-section .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-section .slick-arrow:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-section .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-section .slick-prev {
  left: -20px;
}

.testimonial-section .slick-next {
  right: -20px;
}

.testimonial-section .slick-dots {
  bottom: -40px;
}

.testimonial-section .slick-dots li button:before {
  font-size: 12px;
  color: var(--primary-color);
  opacity: 0.5;
}

.testimonial-section .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-section .testimonial-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.event-section {
  padding: 60px 0;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-img-wrapper {
  position: relative;
  overflow: hidden;
}

.event-img-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img-wrapper img {
  transform: scale(1.08);
}

.event-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(13, 110, 253, 0.3),
    rgba(0, 0, 0, 0.6)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover .event-img-overlay {
  opacity: 1;
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2d3782;
}

.event-date .month {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #000;
}

.event-body {
  padding: 20px;
  background-color: #fff;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Support */

.support-section {
  background-color: #f8f9fa;
}

.support-us-image-2 {
  display: none;
}

.support-title {
  font-size: 2rem;
  color: #333;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.support-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.support-img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.support-us-section {
  background-color: #f5fafa;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.support-us-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: end;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.support-us-image {
  flex: 1 1 400px;
  border-radius: 12px;
  overflow: hidden;
}

.support-us-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-us-content {
  flex: 1 1 500px;
}

.support-us-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

h2 .highlight {
  color: #2d3782;
}

.support-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.support-quote {
  font-style: italic;
  font-size: 1rem;
  color: #666;
  margin-bottom: 35px;
}

.support-btn {
  background-color: #2d3782;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.support-btn:hover {
  background-color: #029c87;
  transform: translateY(-2px);
}

.support-us-section::before,
.support-us-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  opacity: 0.3;
}

.support-us-section::before {
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#f8577c 2px, transparent 2px);
  background-size: 12px 12px;
  left: 30px;
  bottom: 30px;
}

.support-us-section::after {
  width: 120px;
  height: 120px;
  background-image: linear-gradient(45deg, #f1f1f1 25%, transparent 25%),
    linear-gradient(-45deg, #b8dbd7 25%, transparent 25%);
  background-size: 20px 20px;
  top: 40px;
  right: 40px;
}

@media (max-width: 768px) {
  .support-us-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .support-us-content h2 {
    font-size: 2rem;
  }

  .support-subtitle {
    font-size: 1rem;
  }

  .support-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Partners */

.partners-section {
  padding: 50px 0;
  background: #f9f9f9;
}

.partner-logo {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
  max-height: 80px;
  object-fit: contain;
  padding: 0 20px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #ccc;
}

footer {
  padding: 60px 0;
}

.footer-intro img {
  width: 100px;
}

footer {
  padding: 60px 20px 20px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3782;
  margin-bottom: 10px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 75px;
  height: auto;
  object-fit: contain;
}

.footer-logo h5 {
  font-size: 1.1rem;
  color: #2d3782;
  margin: 5px 0px;
  font-weight: 600;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0e0000;
}

.newsletter-box h6 {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 10px;
}

.newsletter-form button {
  padding: 10px 20px;
  border: none;
  background-color: #2d3782;
  color: rgb(247, 246, 246);
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #2d3782;
}

.footer-contact a {
  color: #080000;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
}

.footer-contact a:hover {
  color: #2d3782;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(100%);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #020000;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #2d3782;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .footer-form input,
  .footer-form button {
    width: 100%;
    border-radius: 4px !important;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    margin-top: 10px;
    border-radius: 4px;
  }
}

.viewall {
  text-align: center;
}

.viewall a {
  background-color: #2d3782;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .partner-column {
    margin-bottom: 30px;
  }

  .partner-column::after {
    display: none;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .testimonial-section .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .testimonial-section .testimonial-card {
    margin: 0.5rem 0.25rem;
    padding: 1.5rem 1rem;
  }

  .testimonial-section .slick-dots {
    bottom: -30px;
  }

  .home-banner {
    position: relative;
    margin-top: 0px;
  }
  .nav-top {
    display: none;
  }

  .youtube-section {
    position: relative;
    margin-top: 0px;
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .img-floating {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 500px;
  }

  .whats-new-card {
    padding-right: 55%;
  }
}

/* ----------------------------------------- */
/* -------------whatisefa------------------ */
/* --------------------------------------- */

.whatisefa {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.whatisefa .title-text-efa h1 {
  color: #2d3782;
  font-weight: bold;
}

.only-efa-title {
  font-size: 25px;
  font-weight: 500;
}

.teacher-training-efa {
  padding: 80px 0;
}

/* -------------------------------------------------------------------- */
/* ------------------------------Vision-mission----------------------- */
/* ------------------------------------------------------------------- */

.vision-mission {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.vision-mission .container {
  margin: 0 auto;
}

.vision-mission h3 {
  color: #2d3782;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.vision-mission h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #cb7b54;
  border-radius: 3px;
}

.vision-content {
  display: flex;
  flex-direction: column;
}

.vision-text {
  margin-bottom: 30px;
}

.vision-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.vision-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 300px;
}

.mission-text {
  height: 100%;
  padding-left: 30px;
}

.mission-text ul {
  list-style-type: none;
  padding-left: 0;
}

.mission-text li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.mission-text li::before {
  content: "•";
  color: #cb7b54;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ---------------------------------------------------------------------- */
/* ------------------------About-efa-page------------------------------- */
/* -------------------------------------------------------------------- */

:root {
  --primary-color: #2d3782;
  --secondary-color: #cb7b54;
  --light-bg: #f8f9fa;
}

.hero-section {
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--secondary-color);
  transform: skewX(-20deg);
  transform-origin: top right;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.section-title {
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.challenge-section,
.impact-section {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.impact-section-pg {
  background-color: var(--light-bg);
  padding: 4rem 0;
}

.opportunity-section {
  padding: 4rem 0;
}

.highlight-box {
  padding: 1.5rem;
}

.title-approach {
  color: #2d3782;
}

.stat-card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 1.5rem;
  border-top: 4px solid var(--secondary-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--secondary-color);
  font-weight: 600;
}

.btn-primary-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.5rem 1.5rem;
}

.btn-primary-custom:hover {
  background-color: #1f2768;
  border-color: #1f2768;
}

.quote-box {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  margin: 2rem 0;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.initiative-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.initiative-card:hover {
  transform: translateY(-5px);
}

.initiative-card .card-header {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 1rem;
}

.impact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.impact-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.only-orng {
  color: #cb7b54;
  font-weight: bold;
  font-size: 40px;
}

.impact-from-DRASTA {
  padding: 60px 0;
}

.section-drasta h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}

.section-drasta p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-drasta ul,
.impact-from-DRASTA .list-continue-impact ul {
  padding: 0;
  margin-bottom: 0;
}

.section-drasta ul li,
.impact-from-DRASTA .list-continue-impact ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.section-drasta ul li::before,
.impact-from-DRASTA .list-continue-impact ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-size: 18px;
  line-height: 1;
}

.section-drasta ul li,
.list-continue-impact ul li {
  list-style-type: none;
}

.impact-from-DRASTA img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------- */
/* -----------------------journey------------------------ */
/* ----------------------------------------------------- */

.timeline-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  font-family: "Arial", sans-serif;
}

.timeline-section .section-title {
  text-align: center;
  color: #2d3782;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 700;
}

.timeline-section .timeline {
  position: relative;
  margin: 0 auto;
}

.timeline-section .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #cb7b54;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.timeline-section .timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-section .timeline-item::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #2d3782;
  border: 4px solid #cb7b54;
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-section .left {
  left: 0;
}

.timeline-section .right {
  left: 50%;
}

.timeline-section .left::after {
  right: -12px;
}

.timeline-section .right::after {
  left: -12px;
}

.timeline-section .timeline-content {
  padding: 15px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-section .timeline-year {
  position: absolute;
  top: -20px;
  background-color: #2d3782;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.timeline-section .left .timeline-year {
  right: 30px;
}

.timeline-section .right .timeline-year {
  left: 30px;
}

.timeline-section .timeline-heading {
  color: #2d3782;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 20px;
}
.timeline-section .timeline-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.timeline-section .timeline-image img {
  width: 100%;
  border-radius: 5px;
  border: 2px solid #eee;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .timeline-section .timeline::after {
    left: 31px;
  }

  .timeline-section .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-section .timeline-item::after {
    left: 18px;
  }

  .timeline-section .left::after,
  .timeline-section .right::after {
    left: 18px;
  }

  .timeline-section .right {
    left: 0;
  }

  .timeline-section .left .timeline-year,
  .timeline-section .right .timeline-year {
    left: 70px;
    right: auto;
  }
}

.header-section {
  background-color: #2d3782;
  color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.timeline-card {
  border-left: 4px solid #cb7b54;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-text {
  color: #cb7b54;
  font-weight: 600;
}

.expansion {
  padding-top: 40px;
}

/* ---------------------------------------- */
/* ----------------TEAM------------------- */
/* -------------------------------------- */

.team-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.team-section .section-title {
  color: #2d3782;
  text-align: center;
  font-weight: 700;
}
.team-section .section-intro {
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}
.team-section .team-category {
  margin-bottom: 50px;
}
.team-section .category-title {
  color: #cb7b54;
  border-bottom: 2px solid #cb7b54;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}
.team-section .team-member {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}
.team-section .member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d3782;
  font-weight: bold;
  font-size: 3rem;
}
.team-section .member-name {
  color: #2d3782;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-section .member-position {
  color: #cb7b54;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* ------------------------------------------ */
/* -------------Testimonals----------------- */
/* ---------------------------------------- */

.testimonals_efa_pg {
  background-color: var(--light-bg);
  padding: 60px 0;
}

.testimonals_efa_pg h1 {
  color: #2d3782;
  margin-bottom: 0.5rem;
  font-size: 35px;
  text-align: center;
}

.testimonals_efa_pg .col {
  width: 100%;
  border-bottom: 1px solid #a55959;
  overflow: visible;
  position: relative;
  padding: 3em;
}

.testimonals_efa_pg .col:before {
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 5em;
  color: var(--secondary-color);
  z-index: -100;
  position: absolute;
  top: 5px;
  left: 25px;
  font-size: 40px;
}

.testimonals_efa_pg p.person {
  text-align: right;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.5em;
}
.testimonals_efa_pg p.person:before {
  content: "\f007";
  font-family: FontAwesome;
  color: #2d2d2d;
  margin-right: 0.6em;
}

.des-testimonal {
  font-size: 16px;
}

@media (max-width: 450px) {
  .testimonals_efa_pg h1 {
    font-size: 1.8em;
    transition: font-size 0.5s ease;
  }
}

/* ---------------------------------------- */
/* --------------Programs----------------- */
/* -------------------------------------- */

/* Programs Section Styles */
.programs-section {
}

.section-header h2 {
  color: #2d3782;
  margin-bottom: 0.5rem;
  font-size: 35px;
}

.programs-list {
  max-width: 800px;
  margin: 0 auto;
}

.program-item {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.program-item:last-child {
  border-bottom: none;
}

.program-title {
  color: #2d3782;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.program-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.program-description {
  color: #555;
  margin-bottom: 1rem;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-link {
  color: #cb7b54;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.program-link:hover {
  color: #a86646;
}

.program-status {
  color: #2d3782;
  font-size: 0.85rem;
  font-weight: 500;
}

.view-all-btn {
  background-color: #2d3782;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  border: none;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  background-color: #1f2765;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .program-content > div {
    flex-direction: column;
  }

  .program-date {
    margin-left: 0;
    margin-top: 0.5rem;
    order: -1;
  }

  .program-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-status {
    margin-top: 0.5rem;
  }
}

/* ------------------------------------------- */
/* -------------events & workshops ---------- */
/* ----------------------------------------- */

/* News EFA Section Styles */
.news-efa {
  background-color: #fafafa;
}

.news-efa-header .news-efa-title {
  color: #2d3782;
  margin-bottom: 0.5rem;
  font-size: 35px;
}

.news-efa-divider {
  width: 60px;
  height: 3px;
  background-color: #cb7b54;
  margin: 1rem auto;
}

.news-efa-subtitle {
  color: #6c757d;
}

.news-efa-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-efa-item {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.news-efa-item:last-child {
  border-bottom: none;
}

.news-efa-item:hover {
  background-color: rgba(203, 123, 84, 0.03);
}

.news-efa-item-title {
  color: #2d3782;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 25px;
  flex: 1;
}

.news-efa-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.news-efa-description {
  color: #555;
  margin-bottom: 1rem;
}

.news-efa-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-efa-link {
  color: #cb7b54;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.news-efa-link:hover {
  color: #a86646;
}

.news-efa-status {
  color: #2d3782;
  font-size: 0.85rem;
  font-weight: 500;
}

.news-efa-view-all {
  background-color: #2d3782;
  color: white;
  padding: 0.6rem 2rem;
  border-radius: 4px;
  border: none;
  transition: all 0.2s ease;
}

.news-efa-view-all:hover {
  background-color: #1f2765;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .news-efa-content > div {
    flex-direction: column;
  }

  .news-efa-date {
    margin-left: 0;
    margin-top: 0.5rem;
    order: -1;
  }

  .news-efa-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-efa-status {
    margin-top: 0.5rem;
  }
}

/*  */

.ea-tabs {
  padding: 60px 0;
  background-color: var(--light-bg);
}

/* Tab buttons styling */
.ea-tabs .nav-tabs {
  border-bottom: 2px solid #2d3782;
  margin-bottom: 30px;
}

.ea-tabs .nav-link {
  color: #2d3782;
  font-weight: 600;
  padding: 12px 24px;
  margin: 0 5px;
  border: 2px solid transparent;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
}

.ea-tabs .nav-link:hover {
  color: #cb7b54;
  border-color: #f0f0f0;
}

.ea-tabs .nav-link.active {
  color: white;
  background-color: #2d3782;
  border-color: #2d3782;
}

/* Content styling */
.ea-tabs .event-heading {
  color: #2d3782;
  margin-bottom: 20px;
  font-weight: 700;
}

.ea-tabs .event-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ea-tabs .event-date {
  color: #cb7b54;
  font-weight: 600;
}

.ea-tabs .event-image {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ea-tabs .event-image {
    margin-top: 30px;
  }
}

/* --------------------------------------- */
/* --------------Books-filibot----------- */
/* ------------------------------------- */

.bookaandfilibot {
  padding: 40px 0;
  background-color: #f8f9fa; /* Light background for contrast */
  font-family: Arial, sans-serif;
}

.bookaandfilibot .book-section h2 {
  color: #2d3782;
  margin-bottom: 0.5rem;
  font-size: 35px;
}

.bookaandfilibot .book-section p {
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.bookaandfilibot .col-lg-4 {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding: 15px;
  box-sizing: border-box;
}

.bookaandfilibot .col-lg-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bookaandfilibot .col-lg-4 img {
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* ----------------------------------------- */
/* ------------Pedegogy-------------------- */
/* ---------------------------------------- */

.pedagogy-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.pedagogy-section h2 {
  color: #2d3782;
  font-weight: 700;
  margin-bottom: 20px;
}

.pedagogy-section p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.points-pedugogy,
.points-pedugogy-con {
  padding: 80px 0;
}

.points-pedugogy h5,
.points-pedugogy-con h5 {
  color: #cb7b54;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.points-pedugogy p,
.points-pedugogy-con p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.points-pedugogy img,
.pedagogy-section img,
.points-pedugogy-con img {
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive tweak */
@media (max-width: 991px) {
  .pedegogy-learning,
  .points-pedugogy-con {
    margin-bottom: 30px;
  }
}

.points-pedugogy-con {
  background-color: #f9f9f9;
}

.gallery-section .vertical img {
  margin: 12px 0;
  width: 100%;
}

.gal-title {
  color: #2d3782;
  margin-bottom: 0.5rem;
  font-size: 35px;
  padding: 40px 0;
  text-align: center;
}

/* ----------------------------------------- */
/* ---------------Partners----------------- */
/* --------------------------------------- */

.partners-section-efa {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.partners-section-efa .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-section-efa .section-header h2 {
  color: #2d3782;
  font-size: 36px;
  margin-bottom: 15px;
}

.partners-section-efa .divider {
  width: 80px;
  height: 4px;
  margin: 0 auto 20px;
}

.partners-section-efa .section-header p {
  color: #666;
  font-size: 18px;
}

.partners-section-efa .partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-section-efa .partner-card {
  position: relative;
  height: 180px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.partners-section-efa .partner-card h3 {
  text-align: center;
}

.partners-section-efa .partner-card:hover {
  transform: translateY(-10px);
}

.partners-section-efa .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}

.partners-section-efa .partner-logo {
  max-width: 80%;
  max-height: 80%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partners-section-efa .partner-card:hover .partner-logo {
  filter: grayscale(0%);
}

.partners-section-efa .partner-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  transition: bottom 0.3s ease;
}

.partners-section-efa .partner-card:hover .partner-overlay {
  bottom: 0;
}

.partners-section-efa .partner-overlay h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.partners-section-efa .partner-overlay p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .partners-section-efa .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-section-efa .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------- */
/* -----------India-map---------------- */
/* ----------------------------------- */

.map-title {
  color: #2d3782;
}

.pedagogy-section-efa h3 {
  color: #2d3782;
}

.pedagogy-section-efa{
  padding-top: 60px;
  padding-bottom: 80px;
}

.btn-pedagogy {
  background: #fff;
  color: #001f3f;
  border: 1.5px solid #001f3f;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}
