.breadcrumb-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  height: 250px;
}

.breadcrumb-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 18px;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: #ccc;
}
/* Overlay Cards */
.overlay-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  top: -40px;
  z-index: 10;
}

 .card-vision {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
 max-width: 500px;
 width: 100%;
  padding: 25px;
  border-radius: 35px;
    box-shadow: 0 10px 30px rgb(111 0 0 / 32%);
  text-align: center;
  transition: transform 0.3s ease;
}

 .card-vision:hover {
  transform: translateY(-5px);
  border-bottom: 2px solid var(--border-color);
}
 
 .card-vision img {
  height: 70px;
  margin-bottom: 15px;
}

 .card-vision h3 {
  font-size: 25px;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

 .card-vision p {
  font-size: 16px;
  line-height: 1.5;
  color:var(--text-color);
   font-weight: 400;
  letter-spacing: 0.3px;
}

/* teamcss */
.team-section {
  background-color: var(--bg-color);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.instructor-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-img-container {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.card-img-container img {
  width: 100%;
  height: 250px;
  border-radius: 25px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(250, 4, 4, 0.742);
  color: #fff;
  padding: 20px;
  opacity: 0;
    border-radius: 25px;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
}

.card-img-container:hover img {
  transform: scale(1.05);
}

.card-img-container:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 15px;
}

.card-content h5 {
  color: var(--sub-heading-color);
  font-weight: 600;
}

.card-content small {
  color: var(--text-color);
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: var(--text-color);
  font-size: 1rem;
  margin: 0 8px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: var(--hover-color);
}

/* @media (max-width: 768px) {
  .row .col-sm-12 {
    display: flex;
    justify-content: center;
  }
} */
/* ================== Testimonial Section ================== */
.testimonial-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-slider {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px; 
}

.testimonial-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.testimonial-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

/* Pagination */
.testimonial-pagination {
  margin-top: 20px;
}
.testimonial-pagination .swiper-pagination-bullet {
  background: var(--heading-color);
  opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--hover-color);
}



/* manoget css */

.manogat-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}

.manogat-row.reverse {
  flex-direction: row-reverse;
}

.manogat-photo {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.manogat-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}

.manogat-photo h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0;
}

.manogat-photo .role {
  font-size: 14px;
  color: #777;
}

.manogat-text {
  flex: 3;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}



/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .manogat-photo img {
    width: 170px;
    height: 170px;
  }
  .manogat-photo h3 {
    font-size: 18px;
  }
  .manogat-text {
    font-size: 14px;
    padding: 18px 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .card-img-container {
    height: 220px;
  }
  .card-img-container img {
    height: 220px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .instructor-card {
    max-width: 100%;
  }
  .card-img-container {
    height: 200px;
  }
  .card-img-container img {
    height: 200px;
  }
  .card-content h5 {
    font-size: 1rem;
  }
  .card-content small {
    font-size: 0.85rem;
  }
}

/* Mobile (≤900px) */
@media (max-width: 900px) {
  .manogat-row,
  .manogat-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .manogat-photo {
    max-width: 100%;
  }
  .manogat-photo img {
    width: 150px;
    height: 150px;
  }
  .manogat-photo h3 {
    font-size: 16px;
  }
  .manogat-text {
    font-size: 13px;
    padding: 15px 18px;
    text-align: justify;
  }
}

/* Small Mobile (≤500px) */
@media (max-width: 500px) {
  .manogat-photo img {
    width: 120px;
    height: 120px;
  }
  .manogat-photo h3 {
    font-size: 15px;
  }
  .manogat-text {
    font-size: 12px;
    line-height: 1.6;
    padding: 12px 15px;
  }
}



@media (max-width: 768px) {
  .breadcrumb-title {
    font-size: 28px;
  }

  .breadcrumb-nav {
    font-size: 16px;
  }

  .breadcrumb-section {
    padding: 60px 20px;
  }
 .overlay-cards {
    flex-direction: column;
    align-items: center;
    top: -40px; 
    gap: 20px;
  }

  .overlay-cards .card {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .about-us h2 {
    font-size: 2em;
  }

  .about-us p {
    font-size: 1em;
    padding: 0 10px;
  }
  .section-title {
    font-size: 22px;
  }

  .testimonial-card {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 22px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }

  .breadcrumb-nav a {
    display: inline-block;
    margin-bottom: 5px;
  }
    .section-title {
    font-size: 1.5rem;
  }
  .card-img-container {
    height: 180px;
  }
  .card-img-container img {
    height: 180px;
  }
  .card-content {
    padding: 10px;
  }
  .card-content h5 {
    font-size: 0.95rem;
  }
  .card-content small {
    font-size: 0.8rem;
  }
  .social-icons a {
    font-size: 0.9rem;
    margin: 0 5px;
  }
}

