/* ===== Hero Carousel ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: #111;
    z-index: 1;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-slide--active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: top center;
    display: block;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    padding: 0;
}

.hero-carousel:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-arrow--prev {
    left: 16px;
}

.hero-arrow--next {
    right: 16px;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot--active,
.hero-dot:hover {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel {
        height: 40vh;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .hero-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-arrow--prev {
        left: 10px;
    }

    .hero-arrow--next {
        right: 10px;
    }

    .hero-dots {
        bottom: 12px;
        gap: 8px;
        padding: 5px 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 32vh;
    }

    .hero-arrow {
        width: 32px;
        height: 32px;
    }

    .hero-arrow svg {
        width: 14px;
        height: 14px;
    }

    .hero-arrow--prev {
        left: 8px;
    }

    .hero-arrow--next {
        right: 8px;
    }
}

.bank-details > p {
    color: #000000 !important;
}
.containerprofile {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.content-box {
  flex: 1;
  min-width: 300px;
  background-color: #d96f2a;
  padding: 35px;
  /* border: 4px solid #b8b8b8; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 500;
}

.title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 400;
}

.profile-section {
  flex: 0 0 auto;
  text-align: center;
  min-width: 250px;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 30px;
  /* filter: grayscale(100%); */
  border: 4px solid #e1ad01;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-name {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.profile-title {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

@media (max-width: 968px) {
  .containerprofile {
    gap: 40px;
  }

  .content-box {
    padding: 20px;
  }

  .title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .containerprofile {
    flex-direction: column;
    align-items: center;
  }

  .content-box {
    padding: 20px 10px;
  }

  .title {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }

  .profile-image {
    width: 240px;
    height: 240px;
  }

  .profile-name {
    font-size: 24px;
  }

  .profile-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .content-box {
    padding: 30px 20px;
  }

  .title {
    font-size: 32px;
  }

  .description {
    font-size: 15px;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }
}

.sectionT {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2eded !important;
  position: relative;
}

.pin-sectionT {
  background-color: #bebebe;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

.contentT {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  position: relative;
}

.contentT ul {
  font-size: 30px;
  color: #008080;
  margin: 0;
  padding: 0;
  padding-right: 10px;
  list-style: none;
  flex-grow: 0;
}

.contentT .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #008080;
}

.contentT .rightT {
  flex-grow: 1;
  color: black;
  position: relative;
}

.rightT .slideT {
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rightT .slideT:first-child {
  opacity: 1;
  visibility: visible;
}

.rightT .slideT.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rightT .slideT.gradient-green {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rightT .slideT.gradient-blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rightT .slideT.gradient-purple {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.rightT .slideT.gradient-orange {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.rightT .slideT h1 {
  color: white;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.icse-image {
  width: 170px;
  height: auto;
  /* object-fit: cover; */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slideT p {
  width: 70%;
  line-height: 180%;
}

.view-more {
  background-color: #d86f2b;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  white-space: nowrap;
}

/* Quick Highlights Section */
.quick-highlights-section {
  padding: 60px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.highlight-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #e1ad01;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-top-color: #d96f2a;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
}

.highlight-icon i {
  font-size: 36px;
  color: #ffffff;
}

.highlight-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.highlight-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight-link {
  color: #d96f2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.highlight-link:hover {
  color: #e1ad01;
  gap: 12px;
}

.highlight-link i {
  transition: transform 0.3s ease;
}

.highlight-link:hover i {
  transform: translateX(5px);
}

/* About Snapshot Section */
.about-snapshot-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.about-snapshot-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.about-snapshot-image {
  width: 100%;
  height: auto;
  /* border-radius: 15px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.about-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.about-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-snapshot-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-snapshot-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #d96f2a;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

.read-more-btn:hover {
  background-color: #e1ad01;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Quick Highlights and About Snapshot */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .about-snapshot-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image-wrapper,
  .about-content-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 30px 20px;
  }

  .about-snapshot-title {
    font-size: 28px;
  }

  .about-snapshot-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .highlight-icon {
    width: 70px;
    height: 70px;
  }

  .highlight-icon i {
    font-size: 30px;
  }

  .highlight-title {
    font-size: 20px;
  }

  .about-snapshot-title {
    font-size: 24px;
  }

  .read-more-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

/* Academics Overview Section */
.academics-overview-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.academics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.academic-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.academic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.academic-card:hover::before {
  left: 100%;
}

.academic-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 40px rgba(225, 173, 1, 0.3);
  border-color: #e1ad01;
}

.academic-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.academic-card:hover .academic-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 30px rgba(225, 173, 1, 0.5);
}

.academic-icon i {
  font-size: 42px;
  color: #ffffff;
}

.academic-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.academic-card:hover .academic-title {
  color: #d96f2a;
}

.academic-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.academic-link {
  color: #d96f2a;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.academic-link:hover {
  color: #e1ad01;
  gap: 15px;
}

.academic-link i {
  transition: transform 0.3s ease;
}

.academic-link:hover i {
  transform: translateX(8px);
}

/* Why CSI Bain Section */
.why-csi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
}

.why-csi-section .section-title {
  color: #ffffff;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  min-width: 200px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-icon i {
  font-size: 36px;
  color: #ffffff;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  display: block;
}

.stat-number-value {
  display: inline-block;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.testimonials-carousel-wrapper {
  position: relative;
  margin-top: 50px;
  padding: 0 50px;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  position: absolute;
  top: 25px;
  left: 35px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.testimonial-quote i {
  font-size: 28px;
  color: #2c3e50;
}

.testimonial-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 20px 0 25px 0;
  font-style: italic;
  flex-grow: 1;
  padding-top: 20px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  color: #ffc107;
  font-size: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e1ad01;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d96f2a;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: #e1ad01;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
  .academics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-container {
    gap: 50px;
  }

  .testimonial-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .academics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .academic-card {
    padding: 40px 25px;
  }

  .stats-container {
    gap: 40px;
  }

  .stat-card {
    min-width: 150px;
    padding: 20px;
  }

  .stat-number {
    font-size: 42px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 60px;
  }

  .testimonial-card {
    flex: 0 0 300px;
    padding: 30px 25px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .academic-icon {
    width: 80px;
    height: 80px;
  }

  .academic-icon i {
    font-size: 36px;
  }

  .academic-title {
    font-size: 24px;
  }

  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 50px;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 13px;
  }
}

:root {
  --cards: 4;
  --cardHeight: 87vh;
  --cardTopPadding: 1.5em;
  --cardMargin: 4vw;
}

#cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--cards), var(--cardHeight));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--cards) * var(--cardTopPadding));
  margin-bottom: var(--cardMargin);
}

#card1 {
  --index: 1;
}
#card2 {
  --index: 2;
}
#card3 {
  --index: 3;
}
#card4 {
  --index: 4;
}

.cardS {
  position: sticky;
  top: 0;
  padding-top: calc(var(--index) * var(--cardTopPadding));
}

#card1 .card-body {
  background: linear-gradient(135deg, #52b2cf 0%, #3a8ba8 100%);
}

#card2 .card-body {
  background: linear-gradient(135deg, #e5a36f 0%, #d18a4f 100%);
}

#card3 .card-body {
  background: linear-gradient(135deg, #9cadce 0%, #7a8fb8 100%);
}

#card4 .card-body {
  background: linear-gradient(135deg, #d4afb9 0%, #c095a0 100%);
}

/* Overlay for better text readability on images */
#card1 .card-image-section::after,
#card2 .card-image-section::after,
#card3 .card-image-section::after,
#card4 .card-image-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.card-body {
  box-sizing: border-box;
  padding: 0;
  border-radius: 30px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  height: var(--cardHeight);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
}

.card-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
}

.card-image-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image {
  transform: scale(1.1);
}

.card-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.card-icon i {
  font-size: 36px;
  color: #d96f2a;
}

.card-text-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.card-text-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-text-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.card-features li {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-features li i {
  color: #d96f2a;
  font-size: 18px;
}

.card-cta {
  background: linear-gradient(135deg, #d96f2a 0%, #e1ad01 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
  align-self: flex-start;
}

.card-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.4);
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
}

/* Responsive Design for Cards */
@media (max-width: 992px) {
  .card-content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .card-image-section {
    order: 1;
  }

  .card-text-section {
    order: 2;
    padding: 40px 30px;
  }

  .card-text-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .card-text-section {
    padding: 30px 25px;
  }

  .card-text-section h2 {
    font-size: 28px;
  }

  .card-text-section p {
    font-size: 16px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .card-cta {
    padding: 12px 30px;
    font-size: 14px;
  }
}
  

.academics-header {
  margin-bottom: 40px;
}

.academics-header-label {
  color: #ef4444;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.academics-header-title {
  color: #0f172a;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.academics-header-description {
  color: #64748b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

.academics-red-line {
  width: 60px;
  height: 4px;
  background-color: #ef4444;
  margin-top: 24px;
}

.academics-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.academics-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
}

.academics-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.academics-card-title {
  color: #0f172a;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.academics-card-description {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.academics-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.academics-card-link:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.about-header-section {
  text-align: center;
  padding: 60px 20px 80px;
  background-color: #f5f5f5;
}

.about-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.about-content-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  padding: 0 20px;
}

.about-section-label {
  color: #00b894;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-content-paragraph {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.about-content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-content-section {
      gap: 40px;
  }

  .about-main-title {
      font-size: 2rem;
  }

  .about-content-title {
      font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .about-content-section {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .about-header-section {
      padding: 40px 20px 60px;
  }

  .about-main-title {
      font-size: 1.75rem;
  }

  .about-subtitle {
      font-size: 1rem;
  }

  .about-content-title {
      font-size: 1.5rem;
  }

  .about-text-content {
      padding: 0;
  }

  .about-image-container {
      order: -1;
  }
}

@media (max-width: 480px) {
  .about-main-title {
      font-size: 1.5rem;
  }

  .about-content-title {
      font-size: 1.25rem;
  }

  .about-section-label {
      font-size: 1rem;
  }

  .about-content-paragraph {
      font-size: 0.95rem;
  }
}

/* Vision, Mission & Values Section */
.about-vmv-section {
  padding: 0;
}

.about-vmv-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-vmv-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.about-mission-card {
  direction: rtl;
}

.about-mission-card > * {
  direction: ltr;
}

.about-vmv-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.about-vmv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-vmv-card:hover .about-vmv-image {
  transform: scale(1.1);
}

.about-vmv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.8) 0%, rgba(217, 111, 42, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-vmv-card:hover .about-vmv-overlay {
  opacity: 1;
}

.about-vmv-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.about-vmv-card:hover .about-vmv-icon {
  opacity: 1;
}

.about-vmv-icon i {
  font-size: 40px;
  color: #d96f2a;
}

.about-vmv-content {
  padding: 50px 40px;
}

.about-vmv-label {
  color: #d96f2a;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.about-vmv-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-vmv-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-vmv-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.about-vmv-list li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.about-vmv-list li i {
  color: #d96f2a;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Values Section */
.about-values-section {
  /* margin-top: 60px; */
  padding: 10px 40px;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  border-radius: 20px;
}

.about-values-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-values-header .about-vmv-label {
  display: inline-block;
  margin-bottom: 15px;
}

.about-values-header .about-vmv-title {
  margin-bottom: 15px;
}

.about-values-header .about-vmv-description {
  max-width: 700px;
  margin: 0 auto;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-value-item {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.about-value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-top-color: #d96f2a;
}

.about-value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-value-item:hover .about-value-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-value-icon i {
  font-size: 32px;
  color: #ffffff;
}

.about-value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.about-value-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for VMV Section */
@media (max-width: 992px) {
  .about-vmv-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-mission-card {
    direction: ltr;
  }

  .about-vmv-image-wrapper {
    order: 1;
    min-height: 300px;
  }

  .about-vmv-content {
    order: 2;
    padding: 40px 30px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-vmv-section {
    padding: 40px 0;
  }

  .about-vmv-card {
    margin-bottom: 50px;
    border-radius: 15px;
  }

  .about-vmv-content {
    padding: 30px 25px;
  }

  .about-vmv-title {
    font-size: 1.8rem;
  }

  .about-vmv-description {
    font-size: 0.95rem;
  }

  .about-values-section {
    padding: 40px 25px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-value-item {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .about-vmv-title {
    font-size: 1.5rem;
  }

  .about-vmv-content {
    padding: 25px 20px;
  }

  .about-values-section {
    padding: 30px 20px;
  }

  .about-value-icon {
    width: 70px;
    height: 70px;
  }

  .about-value-icon i {
    font-size: 28px;
  }

  .about-value-title {
    font-size: 1.2rem;
  }
}

/* Contact Us Page Styles */
.contact-header-section {
  text-align: center;
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
}

.contact-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #d96f2a;
  box-shadow: 0 0 0 3px rgba(217, 111, 42, 0.1);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #d96f2a 0%, #e1ad01 100%);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.4);
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
}

.contact-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(5px);
}

.contact-submit-btn.contact-btn-loading {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.85;
}

.contact-submit-btn.contact-btn-loading:hover {
  transform: none;
}

/* Contact form success message - green background and text */
.contact-form-success-msg {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid #28a745;
  font-weight: 600;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.15);
}

.contact-info-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #d96f2a;
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-info-icon i {
  font-size: 20px;
  color: #ffffff;
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-info-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.contact-info-text a {
  color: #d96f2a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: #e1ad01;
  text-decoration: underline;
}

/* Contact FAQs Section */
.contact-faqs-section {
  background-color: #f8f9fa;
  padding: 20px 0;
}

.faqs-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
  color: #d96f2a;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s ease;
  color: #64748b;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: #d96f2a;
}

.faq-answer-inner {
  padding: 18px 22px 22px;
  color: #475569;
  line-height: 1.6;
  border-top: 1px solid #e5e7eb;
}

.faq-answer .faq-answer-inner {
  border-top: 1px solid #e5e7eb;
}

.contact-map-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map-iframe {
  width: 100%;
  display: block;
  border: none;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-main-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 25px 20px;
  }

  .contact-section-title {
    font-size: 1.5rem;
  }

  .contact-map-section {
    padding: 40px 15px;
  }

  .contact-map-iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-header-section {
    padding: 40px 15px 60px;
  }

  .contact-main-title {
    font-size: 1.75rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .contact-form-section,
  .contact-info-section {
    padding: 20px 15px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1rem;
  }

  .contact-map-iframe {
    height: 300px;
  }
}

/* About Achievement Section */
.about-achievement-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 40px 0;
}

.about-achievement-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.about-achievement-image-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  border: 6px solid #e1ad01;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-achievement-image-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-achievement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-achievement-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  color: #2c3e50;
  max-width: 400px;
}

.about-achievement-text strong {
  color: #d96f2a;
  font-weight: 700;
}

.about-achievement-btn {
  background: linear-gradient(135deg, #d96f2a 0%, #e1ad01 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.about-achievement-btn:hover {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.4);
}

.about-achievement-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-achievement-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 5px solid #d96f2a;
  transition: all 0.3s ease;
}

.about-achievement-block:hover {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.about-achievement-title {
  font-size: 2rem;
  font-weight: 700;
  color: #d96f2a;
  margin-bottom: 5px;
  line-height: 1.2;
}

.about-achievement-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.about-achievement-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

@media (max-width: 968px) {
  .about-achievement-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-achievement-title {
    font-size: 1.75rem;
  }

  .about-achievement-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .about-achievement-wrapper {
    padding: 20px 0;
  }

  .about-achievement-image-wrapper {
    width: 220px;
    height: 220px;
    border-width: 4px;
  }

  .about-achievement-title {
    font-size: 1.5rem;
  }

  .about-achievement-text {
    font-size: 1.1rem;
  }

  .about-achievement-subtitle {
    font-size: 1rem;
  }

  .about-achievement-content {
    font-size: 0.95rem;
  }

  .about-achievement-btn {
    padding: 12px 35px;
    font-size: 0.95rem;
  }

  .about-achievement-block {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .about-achievement-title {
    font-size: 1.3rem;
  }

  .about-achievement-text {
    font-size: 1rem;
  }

  .about-achievement-image-wrapper {
    width: 180px;
    height: 180px;
  }
}

/* Alumni Page Styles */
.alumni-header-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f5f5f5;
}

.alumni-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Alumni Overview Section */
.alumni-overview-section {
  padding: 40px 0;
}

.alumni-overview-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.alumni-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.alumni-overview-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.alumni-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.alumni-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 20px;
  font-weight: 600;
}

.alumni-overview-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Alumni Statistics Section */
.alumni-stats-section {
  padding: 40px 0;
}

.alumni-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.alumni-stat-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.alumni-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.alumni-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.alumni-stat-label {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-bottom: 0;
}

.alumni-stat-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.alumni-stat-icon i {
  font-size: 24px;
  color: #ffffff;
}

/* Alumni Office Bearers Section */
.alumni-office-bearers-section {
  padding: 60px 0 80px;
  /* background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%); */
}

.alumni-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.alumni-section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.alumni-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.alumni-section-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.3;
}

.alumni-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.alumni-bearers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.alumni-bearer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
  border: 1px solid #f0f0f0;
}

.alumni-bearer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.alumni-bearer-card:hover::before {
  transform: scaleX(1);
}

.alumni-bearer-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
  border-color: #e1ad01;
}

.alumni-bearer-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.alumni-bearer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
  transition: all 0.4s ease;
}

.alumni-bearer-card:hover .alumni-bearer-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.4);
}

.alumni-bearer-icon i {
  font-size: 24px;
  color: #ffffff;
}

.alumni-bearer-year-badge {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(217, 111, 42, 0.3);
  transition: all 0.3s ease;
}

.alumni-bearer-card:hover .alumni-bearer-year-badge {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.4);
}

.alumni-bearer-card-body {
  padding: 25px;
}

.alumni-bearer-name {
  font-size: 19px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.alumni-bearer-card:hover .alumni-bearer-name {
  color: #d96f2a;
}

.alumni-bearer-class {
  font-size: 14px;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.alumni-bearer-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 15px 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.alumni-bearer-card:hover .alumni-bearer-divider {
  width: 80px;
}

.alumni-bearer-designation {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

/* Alumni Global Presence Section */
.alumni-global-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.alumni-global-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alumni-global-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.alumni-global-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.alumni-global-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.alumni-global-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.alumni-global-map-wrapper {
  margin: 50px 0;
}

.alumni-global-map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 20px;
}

.alumni-global-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.alumni-global-map-container:hover .alumni-global-map {
  transform: scale(1.02);
}

.alumni-global-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 40px;
  align-items: center;
}

.alumni-global-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}

.alumni-global-stat-item {
  text-align: center;
  position: relative;
}

.alumni-global-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #d96f2a, transparent);
}

.alumni-global-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d96f2a;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.alumni-global-stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alumni-global-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.alumni-global-highlight-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.alumni-global-highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
  border-top-color: #d96f2a;
}

.alumni-global-highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.alumni-global-highlight-card:hover .alumni-global-highlight-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(217, 111, 42, 0.4);
}

.alumni-global-highlight-icon i {
  font-size: 32px;
  color: #ffffff;
}

.alumni-global-highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.alumni-global-highlight-card:hover .alumni-global-highlight-title {
  color: #d96f2a;
}

.alumni-global-highlight-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Styles for Alumni Page */
@media (max-width: 992px) {
  .alumni-overview-container {
    flex-direction: column;
    gap: 40px;
  }

  .alumni-image-wrapper,
  .alumni-content-wrapper {
    width: 100%;
  }

  .alumni-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .alumni-bearers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .alumni-global-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .alumni-global-stats {
    gap: 30px;
  }

  .alumni-global-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .alumni-main-title {
    font-size: 2.5rem;
  }

  .alumni-office-bearers-section {
    padding: 50px 0 60px;
  }

  .alumni-section-header {
    margin-bottom: 40px;
  }

  .alumni-section-title {
    font-size: 2.2rem;
  }

  .alumni-section-subtitle {
    font-size: 1.2rem;
  }

  .alumni-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .alumni-stat-card {
    padding: 30px 25px;
  }

  .alumni-stat-number {
    font-size: 40px;
  }

  .alumni-bearers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .alumni-bearer-card-header {
    padding: 25px 20px 18px;
  }

  .alumni-bearer-icon {
    width: 55px;
    height: 55px;
  }

  .alumni-bearer-icon i {
    font-size: 22px;
  }

  .alumni-bearer-year-badge {
    font-size: 13px;
    padding: 7px 14px;
  }

  .alumni-bearer-card-body {
    padding: 20px;
  }

  .alumni-bearer-name {
    font-size: 18px;
  }

  .alumni-global-section {
    padding: 50px 0;
  }

  .alumni-global-header {
    margin-bottom: 40px;
  }

  .alumni-global-title {
    font-size: 2.2rem;
  }

  .alumni-global-description {
    font-size: 1rem;
  }

  .alumni-global-map-wrapper {
    margin: 40px 0;
  }

  .alumni-global-map-container {
    padding: 15px;
  }

  .alumni-global-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    padding: 20px;
  }

  .alumni-global-stats {
    flex-direction: column;
    gap: 25px;
  }

  .alumni-global-stat-item:not(:last-child)::after {
    display: none;
  }

  .alumni-global-stat-number {
    font-size: 2rem;
  }

  .alumni-global-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .alumni-global-highlight-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .alumni-header-section {
    padding: 40px 15px 30px;
  }

  .alumni-main-title {
    font-size: 2rem;
  }

  .alumni-office-bearers-section {
    padding: 40px 0 50px;
  }

  .alumni-section-header {
    margin-bottom: 35px;
  }

  .alumni-section-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .alumni-section-title {
    font-size: 1.8rem;
  }

  .alumni-section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .alumni-section-divider {
    width: 60px;
    height: 3px;
  }

  .alumni-overview-text {
    font-size: 15px;
  }

  .alumni-stat-number {
    font-size: 36px;
  }

  .alumni-stat-label {
    font-size: 16px;
  }

  .alumni-bearers-grid {
    gap: 20px;
  }

  .alumni-bearer-card-header {
    padding: 20px 18px 15px;
  }

  .alumni-bearer-icon {
    width: 50px;
    height: 50px;
  }

  .alumni-bearer-icon i {
    font-size: 20px;
  }

  .alumni-bearer-year-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .alumni-bearer-card-body {
    padding: 18px;
  }

  .alumni-bearer-name {
    font-size: 16px;
  }

  .alumni-bearer-class {
    font-size: 13px;
  }

  .alumni-bearer-designation {
    font-size: 13px;
  }

  .alumni-global-section {
    padding: 40px 0;
  }

  .alumni-global-header {
    margin-bottom: 30px;
  }

  .alumni-global-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .alumni-global-title {
    font-size: 1.8rem;
  }

  .alumni-global-description {
    font-size: 0.95rem;
  }

  .alumni-global-divider {
    width: 60px;
    height: 3px;
  }

  .alumni-global-map-wrapper {
    margin: 30px 0;
  }

  .alumni-global-map-container {
    padding: 10px;
  }

  .alumni-global-overlay {
    padding: 15px;
    margin-top: 15px;
  }

  .alumni-global-stats {
    gap: 20px;
  }

  .alumni-global-stat-number {
    font-size: 1.75rem;
  }

  .alumni-global-stat-label {
    font-size: 0.8rem;
  }

  .alumni-global-highlights {
    margin-top: 30px;
    gap: 20px;
  }

  .alumni-global-highlight-card {
    padding: 25px 20px;
  }

  .alumni-global-highlight-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .alumni-global-highlight-icon i {
    font-size: 28px;
  }

  .alumni-global-highlight-title {
    font-size: 1.3rem;
  }

  .alumni-global-highlight-text {
    font-size: 0.95rem;
  }
}

/* Gallery Page Styles */
.gallery-header-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f5f5f5;
}

.gallery-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin: 0;
}

/* Gallery Overview Section */
.gallery-overview-section {
  padding: 40px 0;
}

.gallery-overview-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.gallery-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.gallery-overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.gallery-overview-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.gallery-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.gallery-overview-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Gallery Tabs Section */
.gallery-tabs-section {
  padding: 60px 0 80px;
}

.gallery-tabs-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-tabs-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.gallery-tabs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.gallery-tabs-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Tab Navigation */
.gallery-tabs-wrapper {
  margin-bottom: 50px;
  padding: 0 20px;
}

.gallery-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
}

/* Sections: rows of 3 when 6+ tabs, scroll to see more */
.gallery-tabs-wrapper--scroll .gallery-tabs-nav {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 12px;
  -webkit-overflow-scrolling: touch;
}

.gallery-tabs-wrapper--scroll .gallery-tabs-nav::-webkit-scrollbar {
  width: 8px;
}

.gallery-tabs-wrapper--scroll .gallery-tabs-nav::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.gallery-tabs-wrapper--scroll .gallery-tabs-nav::-webkit-scrollbar-thumb {
  background: #d96f2a;
  border-radius: 4px;
}

.gallery-tab-section {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.gallery-tabs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 900px;
}

.gallery-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gallery-tab-btn i {
  font-size: 18px;
}

.gallery-tab-btn:hover {
  border-color: #d96f2a;
  color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.2);
}

.gallery-tab-btn.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.gallery-tab-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 111, 42, 0.4);
}

/* Tab Content */
.gallery-tabs-content {
  position: relative;
  min-height: 500px;
}

.gallery-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.gallery-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-view-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-view-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.5);
}

.gallery-item-info {
  padding: 20px;
}

.gallery-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.gallery-item-date {
  font-size: 14px;
  color: #d96f2a;
  font-weight: 600;
  margin: 0;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.gallery-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  user-select: none;
}

.gallery-lightbox-prev {
  left: 50px;
}

.gallery-lightbox-next {
  right: 50px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* Responsive Styles for Gallery Page */
@media (max-width: 992px) {
  .gallery-overview-container {
    flex-direction: column;
    gap: 40px;
  }

  .gallery-image-wrapper,
  .gallery-content-wrapper {
    width: 100%;
  }

  .gallery-overview-title {
    font-size: 2rem;
  }

  .gallery-tabs-nav {
    gap: 12px;
  }

  .gallery-tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .gallery-tab-btn i {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }

  .gallery-item-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .gallery-main-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1.1rem;
  }

  .gallery-overview-title {
    font-size: 1.8rem;
  }

  .gallery-tabs-title {
    font-size: 2rem;
  }

  .gallery-tabs-nav {
    gap: 10px;
    padding: 0 10px;
  }

  .gallery-tabs-wrapper--scroll .gallery-tabs-nav {
    max-height: none;
    overflow: visible;
    padding: 0 10px;
  }

  .gallery-tabs-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .gallery-tab-btn {
    padding: 10px 12px;
    font-size: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-width: 0;
    width: 100%;
    border-radius: 14px;
  }

  .gallery-tab-btn span {
    display: block;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
  }

  .gallery-tab-btn i {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .gallery-item-image {
    height: 200px;
  }

  .gallery-item-info {
    padding: 15px;
  }

  .gallery-item-title {
    font-size: 16px;
  }

  .gallery-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    font-size: 30px;
    padding: 15px 20px;
  }

  .gallery-lightbox-prev {
    left: 20px;
  }

  .gallery-lightbox-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-header-section {
    padding: 40px 15px 30px;
  }

  .gallery-main-title {
    font-size: 2rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-overview-section {
    padding: 30px 0;
  }

  .gallery-overview-title {
    font-size: 1.5rem;
  }

  .gallery-overview-text {
    font-size: 15px;
  }

  .gallery-tabs-section {
    padding: 40px 0 60px;
  }

  .gallery-tabs-header {
    margin-bottom: 30px;
  }

  .gallery-tabs-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .gallery-tabs-title {
    font-size: 1.75rem;
  }

  .gallery-tabs-divider {
    width: 60px;
    height: 3px;
  }

  .gallery-tabs-nav {
    margin-bottom: 30px;
  }

  .gallery-tabs-wrapper--scroll .gallery-tabs-nav {
    max-height: none;
    overflow: visible;
  }

  .gallery-tabs-row {
    gap: 8px;
  }

  .gallery-tab-btn {
    padding: 10px;
    min-width: 86px;
  }

  .gallery-tab-btn span {
    font-size: 11px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item-image {
    height: 250px;
  }

  .gallery-lightbox-content {
    max-width: 95%;
    max-height: 85%;
  }

  .gallery-lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 35px;
    height: 35px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    font-size: 25px;
    padding: 12px 16px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }
}

/* Events Page Styles */
.events-header-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f5f5f5;
}

.events-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}

.events-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin: 0;
}

/* Events Overview Section */
.events-overview-section {
  padding: 40px 0;
}

.events-overview-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.events-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.events-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.events-overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.events-overview-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.events-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.events-overview-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Events Filter Section */
.events-filter-section {
  padding: 60px 0 80px;
}

.events-filter-header {
  text-align: center;
  margin-bottom: 50px;
}

.events-filter-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.events-filter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.events-filter-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Filter Navigation */
.events-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.events-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.events-filter-btn i {
  font-size: 18px;
}

.events-filter-btn:hover {
  border-color: #d96f2a;
  color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.2);
}

.events-filter-btn.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.events-filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 111, 42, 0.4);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.events-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  display: block;
}

.events-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.events-item-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}

/* All event images shown as individuals (same order as admin) */
.events-item-image-multi .events-item-images-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  gap: 2px;
}

.events-item-image-multi .events-item-single-img {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events-item-image-multi .events-item-images-grid .events-item-single-img {
  flex: 1 1 calc(50% - 1px);
  max-width: calc(50% - 1px);
  height: calc(50% - 1px);
}

.events-item-image-multi .events-item-images-grid .events-item-single-img:only-child {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
}

.events-item:hover .events-item-image-multi .events-item-single-img {
  transform: scale(1.03);
}

.events-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.events-item:hover .events-item-image img {
  transform: scale(1.1);
}

.events-item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.events-item-badge.upcoming {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(217, 111, 42, 0.3);
}

.events-item-badge.past {
  background: #666;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.events-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.events-item:hover .events-item-overlay {
  opacity: 1;
}

.events-view-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.events-view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.5);
}

.events-view-btn i {
  font-size: 16px;
}

.events-item-content {
  padding: 25px;
}

.events-item-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d96f2a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.events-item-date i {
  font-size: 16px;
}

.events-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.events-item:hover .events-item-title {
  color: #d96f2a;
}

.events-item-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.events-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.events-item-location,
.events-item-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
}

.events-item-location i,
.events-item-time i {
  color: #d96f2a;
  font-size: 14px;
}

/* Event Modal */
.events-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.events-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.events-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 0.3s ease;
}

.events-modal-close:hover {
  background: rgba(217, 111, 42, 0.8);
  transform: rotate(90deg);
}

.events-modal-body {
  display: flex;
  flex-direction: column;
}

.events-modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.events-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-modal-gallery-label {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

.events-modal-gallery .events-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.events-modal-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.events-modal-thumb.active {
  border-color: #d96f2a;
}

.events-modal-thumb img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  display: block;
}

.events-modal-info {
  padding: 40px;
}

.events-modal-category {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.events-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.events-modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.events-modal-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #666;
}

.events-modal-detail-item i {
  color: #d96f2a;
  font-size: 18px;
  width: 20px;
}

.events-modal-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.events-modal-description p {
  margin: 0;
}

/* Responsive Styles for Events Page */
@media (max-width: 992px) {
  .events-overview-container {
    flex-direction: column;
    gap: 40px;
  }

  .events-image-wrapper,
  .events-content-wrapper {
    width: 100%;
  }

  .events-overview-title {
    font-size: 2rem;
  }

  .events-filter-nav {
    gap: 12px;
  }

  .events-filter-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .events-item-image {
    height: 220px;
  }

  .events-modal-image {
    height: 300px;
  }

  .events-modal-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .events-main-title {
    font-size: 2.5rem;
  }

  .events-subtitle {
    font-size: 1.1rem;
  }

  .events-overview-title {
    font-size: 1.8rem;
  }

  .events-filter-title {
    font-size: 2rem;
  }

  .events-filter-nav {
    gap: 10px;
    padding: 0 10px;
  }

  .events-filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .events-filter-btn span {
    display: none;
  }

  .events-filter-btn i {
    font-size: 18px;
  }

  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .events-item-image {
    height: 200px;
  }

  .events-item-content {
    padding: 20px;
  }

  .events-item-title {
    font-size: 20px;
  }

  .events-modal-content {
    max-width: 95%;
  }

  .events-modal-image {
    height: 250px;
  }

  .events-modal-info {
    padding: 25px;
  }

  .events-modal-title {
    font-size: 1.5rem;
  }

  .events-modal-details {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .events-header-section {
    padding: 40px 15px 30px;
  }

  .events-main-title {
    font-size: 2rem;
  }

  .events-subtitle {
    font-size: 1rem;
  }

  .events-overview-section {
    padding: 30px 0;
  }

  .events-overview-title {
    font-size: 1.5rem;
  }

  .events-overview-text {
    font-size: 15px;
  }

  .events-filter-section {
    padding: 40px 0 60px;
  }

  .events-filter-header {
    margin-bottom: 30px;
  }

  .events-filter-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .events-filter-title {
    font-size: 1.75rem;
  }

  .events-filter-divider {
    width: 60px;
    height: 3px;
  }

  .events-filter-nav {
    margin-bottom: 30px;
  }

  .events-filter-btn {
    padding: 10px 14px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-item-image {
    height: 250px;
  }

  .events-item-content {
    padding: 18px;
  }

  .events-item-title {
    font-size: 18px;
  }

  .events-item-description {
    font-size: 14px;
  }

  .events-item-meta {
    flex-direction: column;
    gap: 12px;
  }

  .events-modal-content {
    max-width: 100%;
    border-radius: 15px;
  }

  .events-modal-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 40px;
    height: 40px;
  }

  .events-modal-image {
    height: 200px;
  }

  .events-modal-info {
    padding: 20px;
  }

  .events-modal-title {
    font-size: 1.3rem;
  }

  .events-modal-description {
    font-size: 15px;
  }
}

/* Faculty Page Styles */
.faculty-header-section {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faculty-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.faculty-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.faculty-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faculty-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 20px;
}

.faculty-header-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Faculty Statistics Section */
.faculty-stats-section {
  padding: 60px 0;
  /* background: #f8f9fa; */
}

.faculty-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faculty-stat-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faculty-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 173, 1, 0.1), transparent);
  transition: left 0.5s;
}

.faculty-stat-card:hover::before {
  left: 100%;
}

.faculty-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
}

.faculty-stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.faculty-stat-card:hover .faculty-stat-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(217, 111, 42, 0.4);
}

.faculty-stat-icon i {
  font-size: 36px;
  color: #ffffff;
}

.faculty-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.faculty-stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  margin: 0;
}

/* Faculty Overview Section */
.faculty-overview-section {
  padding: 60px 0;
}

.faculty-overview-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.faculty-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.faculty-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.faculty-overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.faculty-overview-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.faculty-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faculty-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #555;
}

.faculty-highlight-item i {
  color: #d96f2a;
  font-size: 18px;
}

.faculty-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.faculty-overview-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Faculty Departments Section */
.faculty-departments-section {
  padding: 60px 0 80px;
  /* background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%); */
}

.faculty-departments-header {
  text-align: center;
  margin-bottom: 50px;
}

.faculty-departments-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.faculty-departments-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.faculty-departments-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Department Navigation */
.faculty-departments-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 20px;
}

.faculty-department-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faculty-department-btn i {
  font-size: 18px;
}

.faculty-department-btn:hover {
  border-color: #d96f2a;
  color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.2);
}

.faculty-department-btn.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.faculty-department-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 111, 42, 0.4);
}

/* Faculty Grid */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.faculty-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faculty-card-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f0f0f0;
}

.faculty-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-card-image img {
  transform: scale(1.1);
}

.faculty-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faculty-card:hover .faculty-card-overlay {
  opacity: 1;
}

.faculty-view-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faculty-view-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.5);
}

.faculty-view-btn i {
  font-size: 16px;
}

.faculty-card-content {
  padding: 25px;
}

.faculty-card-department {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.faculty-card-name {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faculty-card:hover .faculty-card-name {
  color: #d96f2a;
}

.faculty-card-qualification {
  font-size: 15px;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
}

.faculty-card-subject {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  line-height: 1.6;
}

.faculty-card-experience {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d96f2a;
  font-weight: 600;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.faculty-card-experience i {
  font-size: 16px;
}

/* Faculty Modal */
.faculty-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.faculty-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

.faculty-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 0.3s ease;
}

.faculty-modal-close:hover {
  background: rgba(217, 111, 42, 0.8);
  transform: rotate(90deg);
}

.faculty-modal-body {
  display: flex;
  flex-direction: column;
}

.faculty-modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.faculty-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faculty-modal-info {
  padding: 40px;
}

.faculty-modal-department {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faculty-modal-name {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.faculty-modal-qualification {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.faculty-modal-qualification i {
  color: #d96f2a;
  font-size: 20px;
}

.faculty-modal-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.faculty-modal-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #666;
}

.faculty-modal-detail-item i {
  color: #d96f2a;
  font-size: 18px;
  width: 24px;
}

.faculty-modal-bio {
  margin-bottom: 30px;
}

.faculty-modal-bio h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.faculty-modal-bio p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faculty-modal-achievements {
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.faculty-modal-achievements h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.faculty-modal-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faculty-modal-achievements li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
}

.faculty-modal-achievements li i {
  color: #d96f2a;
  font-size: 16px;
}

/* Responsive Styles for Faculty Page */
@media (max-width: 992px) {
  .faculty-overview-container {
    flex-direction: column;
    gap: 40px;
  }

  .faculty-image-wrapper,
  .faculty-content-wrapper {
    width: 100%;
  }

  .faculty-overview-title {
    font-size: 2rem;
  }

  .faculty-departments-nav {
    gap: 12px;
  }

  .faculty-department-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .faculty-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .faculty-card-image {
    height: 280px;
  }

  .faculty-modal-image {
    height: 300px;
  }

  .faculty-modal-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .faculty-main-title {
    font-size: 2.5rem;
  }

  .faculty-subtitle {
    font-size: 1.3rem;
  }

  .faculty-header-description {
    font-size: 1rem;
  }

  .faculty-overview-title {
    font-size: 1.8rem;
  }

  .faculty-departments-title {
    font-size: 2rem;
  }

  .faculty-departments-nav {
    gap: 10px;
    padding: 0 10px;
  }

  .faculty-department-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .faculty-department-btn span {
    display: none;
  }

  .faculty-department-btn i {
    font-size: 18px;
  }

  .faculty-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .faculty-card-image {
    height: 250px;
  }

  .faculty-card-content {
    padding: 20px;
  }

  .faculty-card-name {
    font-size: 20px;
  }

  .faculty-modal-content {
    max-width: 95%;
  }

  .faculty-modal-image {
    height: 250px;
  }

  .faculty-modal-info {
    padding: 25px;
  }

  .faculty-modal-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faculty-header-section {
    padding: 60px 15px 40px;
  }

  .faculty-main-title {
    font-size: 2rem;
  }

  .faculty-subtitle {
    font-size: 1.1rem;
  }

  .faculty-header-description {
    font-size: 0.95rem;
  }

  .faculty-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .faculty-stat-card {
    padding: 30px 20px;
  }

  .faculty-stat-icon {
    width: 70px;
    height: 70px;
  }

  .faculty-stat-icon i {
    font-size: 30px;
  }

  .faculty-stat-number {
    font-size: 2.5rem;
  }

  .faculty-overview-section {
    padding: 40px 0;
  }

  .faculty-overview-title {
    font-size: 1.5rem;
  }

  .faculty-overview-text {
    font-size: 15px;
  }

  .faculty-departments-section {
    padding: 40px 0 60px;
  }

  .faculty-departments-header {
    margin-bottom: 30px;
  }

  .faculty-departments-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .faculty-departments-title {
    font-size: 1.75rem;
  }

  .faculty-departments-divider {
    width: 60px;
    height: 3px;
  }

  .faculty-departments-nav {
    margin-bottom: 30px;
  }

  .faculty-department-btn {
    padding: 10px 14px;
  }

  .faculty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-card-image {
    height: 300px;
  }

  .faculty-card-content {
    padding: 18px;
  }

  .faculty-card-name {
    font-size: 18px;
  }

  .faculty-modal-content {
    max-width: 100%;
    border-radius: 15px;
  }

  .faculty-modal-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 40px;
    height: 40px;
  }

  .faculty-modal-image {
    height: 200px;
  }

  .faculty-modal-info {
    padding: 20px;
  }

  .faculty-modal-name {
    font-size: 1.3rem;
  }

  .faculty-modal-bio p,
  .faculty-modal-achievements li {
    font-size: 15px;
  }
}

/* Why Choose Our Faculty Section */
.faculty-why-section {
  padding: 80px 0;
  /* background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%); */
}

.faculty-why-header {
  text-align: center;
  margin-bottom: 60px;
}

.faculty-why-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.faculty-why-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.faculty-why-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.faculty-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.faculty-why-card {
  perspective: 1000px;
  height: 300px;
}

.faculty-why-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.faculty-why-card:hover .faculty-why-card-inner {
  transform: rotateY(180deg);
}

.faculty-why-card-inner.flipped {
  transform: rotateY(180deg);
}

.faculty-why-card-front,
.faculty-why-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faculty-why-card-front {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
}

.faculty-why-card-back {
  background: #ffffff;
  color: #2c3e50;
  transform: rotateY(180deg);
}

.faculty-why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.faculty-why-card:hover .faculty-why-icon {
  transform: scale(1.1) rotate(360deg);
}

.faculty-why-icon i {
  font-size: 36px;
  color: #ffffff;
}

.faculty-why-card-back .faculty-why-icon {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
}

.faculty-why-card-back .faculty-why-icon i {
  color: #ffffff;
}

.faculty-why-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #000000;
}
.faculty-why-card-front h3{
  color: white !important;
}

.faculty-why-card-text {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.faculty-why-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Testimonials Section */
.faculty-testimonials-section {
  padding: 80px 0;
  background: #ffffff;
}

.faculty-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.faculty-testimonials-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.faculty-testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.faculty-testimonials-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.faculty-testimonials-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.faculty-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.faculty-testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 20px;
}

.faculty-testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  width: 70%;
}

.faculty-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.faculty-testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
  color: #ffc107;
  font-size: 20px;
}

.faculty-testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.faculty-testimonial-text::before {
  content: '"';
  font-size: 60px;
  color: #d96f2a;
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.faculty-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faculty-testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.faculty-testimonial-info {
  text-align: left;
}

.faculty-testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.faculty-testimonial-role {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.faculty-testimonial-prev,
.faculty-testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.faculty-testimonial-prev {
  left: 12px !important;
}

.faculty-testimonial-next {
  right: 32px !important;
}

.faculty-testimonial-prev:hover,
.faculty-testimonial-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(217, 111, 42, 0.5);
}

.faculty-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.faculty-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faculty-testimonial-dot.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  transform: scale(1.2);
}

.faculty-testimonial-dot:hover {
  background: #d96f2a;
}

/* Responsive Styles for Interactive Sections */
@media (max-width: 992px) {
  .faculty-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .faculty-why-card {
    height: 280px;
  }

  .faculty-testimonial-prev {
    left: 10px;
  }

  .faculty-testimonial-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .faculty-why-section {
    padding: 60px 0;
  }

  .faculty-why-title {
    font-size: 2rem;
  }

  .faculty-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-why-card {
    height: 260px;
  }

  .faculty-why-card-front,
  .faculty-why-card-back {
    padding: 30px 25px;
  }

  .faculty-why-icon {
    width: 70px;
    height: 70px;
  }

  .faculty-why-icon i {
    font-size: 30px;
  }

  .faculty-why-card-title {
    font-size: 1.3rem;
  }

  .faculty-testimonials-section {
    padding: 60px 0;
  }

  .faculty-testimonials-title {
    font-size: 2rem;
  }

  .faculty-testimonial-card {
    padding: 40px 30px;
  }

  .faculty-testimonial-text {
    font-size: 16px;
  }

  .faculty-testimonial-prev,
  .faculty-testimonial-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faculty-why-header {
    margin-bottom: 40px;
  }

  .faculty-why-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .faculty-why-title {
    font-size: 1.75rem;
  }

  .faculty-why-divider {
    width: 60px;
    height: 3px;
  }

  .faculty-why-card {
    height: 250px;
  }

  .faculty-why-card-front,
  .faculty-why-card-back {
    padding: 25px 20px;
  }

  .faculty-why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .faculty-why-icon i {
    font-size: 28px;
  }

  .faculty-why-card-title {
    font-size: 1.2rem;
  }

  .faculty-why-card-text,
  .faculty-why-card-description {
    font-size: 14px;
  }

  .faculty-testimonials-header {
    margin-bottom: 40px;
  }

  .faculty-testimonials-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .faculty-testimonials-title {
    font-size: 1.75rem;
  }

  .faculty-testimonials-divider {
    width: 60px;
    height: 3px;
  }

  .faculty-testimonial-card {
    padding: 30px 25px;
  }

  .faculty-testimonial-text {
    font-size: 15px;
  }

  .faculty-testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .faculty-testimonial-name {
    font-size: 16px;
  }

  .faculty-testimonial-role {
    font-size: 13px;
  }

  .faculty-testimonial-prev {
    left: 5px;
  }

  .faculty-testimonial-next {
    right: 5px;
  }
}

/* Achievers Page Styles - Unique Color Scheme */
.achievers-hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}

.achievers-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.achievers-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticle infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 1;
  }
}

.achievers-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.achievers-hero-text {
  margin-bottom: 60px;
}

.achievers-main-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.achievers-title-highlight {
  display: block;
  font-size: 3rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 10px;
}

.achievers-title-main {
  display: block;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.achievers-hero-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievers-hero-description {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
}

.achievers-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievers-hero-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.achievers-hero-stat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievers-hero-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.achievers-hero-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Categories Section */
.achievers-categories-section {
  padding: 60px 0 0 0 ;
  /* background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%); */
}

.achievers-categories-header {
  text-align: center;
  /* margin-bottom: 60px; */
}

.achievers-categories-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.achievers-categories-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.achievers-categories-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Unique Masonry Grid Layout */
.achievers-categories-unique-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Large Featured Card - Spans 2 columns, 2 rows */
.achievers-category-card-large {
  grid-column: span 6;
  grid-row: span 2;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.achievers-category-card-large:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4);
}

.achievers-category-card-large[data-category="students"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Medium Cards - Span 3 columns, 1 row */
.achievers-category-card-medium {
  grid-column: span 3;
  grid-row: span 1;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.achievers-category-card-medium:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.achievers-category-card-medium[data-category="teachers"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.achievers-category-card-medium[data-category="academic"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Small Cards - Span 2 columns, 1 row */
.achievers-category-card-small {
  grid-column: span 2;
  grid-row: span 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
}

.achievers-category-card-small:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.achievers-category-card-small[data-category="school"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.achievers-category-card-small[data-category="sports"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.achievers-category-card-small[data-category="cultural"] .achievers-category-card-bg {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Card Background with Pattern */
.achievers-category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.95;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.achievers-category-card-large:hover .achievers-category-card-bg,
.achievers-category-card-medium:hover .achievers-category-card-bg,
.achievers-category-card-small:hover .achievers-category-card-bg {
  opacity: 1;
  transform: scale(1.1);
}

.achievers-category-card-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.achievers-category-card-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* Card Content */
.achievers-category-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.achievers-category-card-small .achievers-category-card-content {
  padding: 25px;
}

/* Icon Wrapper */
.achievers-category-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.achievers-category-icon-ring {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.achievers-category-icon {
  position: relative;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.achievers-category-card-large:hover .achievers-category-icon,
.achievers-category-card-medium:hover .achievers-category-icon,
.achievers-category-card-small:hover .achievers-category-icon {
  transform: scale(1.15) rotate(360deg);
  background: rgba(255, 255, 255, 0.3);
}

.achievers-category-icon i {
  font-size: 45px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.achievers-category-card-small .achievers-category-icon {
  width: 70px;
  height: 70px;
}

.achievers-category-card-small .achievers-category-icon i {
  font-size: 32px;
}

.achievers-category-card-small .achievers-category-icon-ring {
  width: 90px;
  height: 90px;
}

/* Category Info */
.achievers-category-info {
  flex: 1;
}

.achievers-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

.achievers-category-card-medium .achievers-category-title {
  font-size: 1.4rem;
}

.achievers-category-card-small .achievers-category-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.achievers-category-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.achievers-category-card-medium .achievers-category-description {
  font-size: 14px;
}

/* Stats for Large Card */
.achievers-category-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.achievers-category-stat-item {
  display: flex;
  flex-direction: column;
}

.achievers-category-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievers-category-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Count Badge */
.achievers-category-count-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.achievers-category-card-large:hover .achievers-category-count-badge,
.achievers-category-card-medium:hover .achievers-category-count-badge,
.achievers-category-card-small:hover .achievers-category-count-badge {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Button for Large Card */
.achievers-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.achievers-category-btn:hover {
  background: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.achievers-category-btn i {
  transition: transform 0.3s ease;
}

.achievers-category-btn:hover i {
  transform: translateX(5px);
}

/* Featured Achievers Section */
.achievers-featured-section {
  padding: 80px 30px;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: #ffffff;
}

.achievers-featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievers-featured-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 15px;
}

.achievers-featured-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.achievers-featured-divider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 2px;
}

.achievers-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.achievers-featured-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

.achievers-featured-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.achievers-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.achievers-featured-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.achievers-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.achievers-featured-card:hover .achievers-featured-image img {
  transform: scale(1.1);
}

.achievers-featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievers-featured-card:hover .achievers-featured-overlay {
  opacity: 1;
}

.achievers-featured-trophy {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.achievers-featured-card:hover .achievers-featured-trophy {
  transform: scale(1) rotate(360deg);
}

.achievers-featured-trophy i {
  font-size: 36px;
  color: #667eea;
}

.achievers-featured-content {
  padding: 30px 30px 1px 30px;
  color: #2c3e50;
}

.achievers-featured-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.achievers-featured-achievement {
  font-size: 1.1rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 10px;
}

.achievers-featured-details {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.achievers-featured-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.achievers-tag {
  padding: 6px 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Timeline Section */
.achievers-timeline-section {
  padding: 80px 0;
  background: #ffffff;
}

.achievers-timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievers-timeline-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f5576c;
  font-weight: 600;
  margin-bottom: 15px;
}

.achievers-timeline-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.achievers-timeline-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.achievers-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.achievers-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
  transform: translateX(-50%);
}

.achievers-timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.achievers-timeline-item:nth-child(even) {
  transform: translateX(50px);
}

.achievers-timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.achievers-timeline-item:nth-child(even).animate {
  transform: translateX(0);
}

.achievers-timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
  z-index: 2;
}

.achievers-timeline-content {
  width: 45%;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  position: relative;
}

.achievers-timeline-item:nth-child(even) .achievers-timeline-content {
  margin-left: auto;
}

.achievers-timeline-date {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.achievers-timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.achievers-timeline-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.achievers-timeline-category {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #ffffff;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

/* Gallery Section */
.achievers-gallery-section {
  padding: 80px 0;
  /* background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%); */
}

.achievers-gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievers-gallery-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #764ba2;
  font-weight: 600;
  margin-bottom: 15px;
}

.achievers-gallery-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.achievers-gallery-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.achievers-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.achievers-gallery-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.achievers-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.achievers-gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.achievers-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.achievers-gallery-item:hover .achievers-gallery-image img {
  transform: scale(1.1);
}

.achievers-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievers-gallery-item:hover .achievers-gallery-overlay {
  opacity: 1;
}

.achievers-gallery-overlay i {
  font-size: 40px;
  color: #ffffff;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.achievers-gallery-item:hover .achievers-gallery-overlay i {
  transform: scale(1);
}

.achievers-gallery-caption {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

/* Responsive Styles for Achievers Page */
@media (max-width: 992px) {
  .achievers-main-title {
    font-size: 4rem;
  }

  .achievers-title-highlight {
    font-size: 2.5rem;
  }

  .achievers-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievers-categories-unique-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .achievers-category-card-large {
    grid-column: span 6;
    grid-row: span 2;
  }

  .achievers-category-card-medium {
    grid-column: span 3;
  }

  .achievers-category-card-small {
    grid-column: span 2;
  }

  .achievers-timeline::before {
    left: 30px;
  }

  .achievers-timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .achievers-timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .achievers-hero-section {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .achievers-main-title {
    font-size: 3rem;
  }

  .achievers-title-highlight {
    font-size: 2rem;
  }

  .achievers-hero-subtitle {
    font-size: 1.4rem;
  }

  .achievers-hero-description {
    font-size: 1rem;
  }

  .achievers-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .achievers-hero-stat {
    padding: 20px;
  }

  .achievers-hero-stat-number {
    font-size: 2.5rem;
  }

  .achievers-categories-title,
  .achievers-featured-title,
  .achievers-timeline-title,
  .achievers-gallery-title {
    font-size: 2rem;
  }

  .achievers-categories-unique-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievers-category-card-large,
  .achievers-category-card-medium,
  .achievers-category-card-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .achievers-category-card-content {
    padding: 30px;
  }

  .achievers-category-icon {
    width: 80px;
    height: 80px;
  }

  .achievers-category-icon i {
    font-size: 36px;
  }

  .achievers-category-title {
    font-size: 1.5rem;
  }

  .achievers-category-stat-number {
    font-size: 2rem;
  }

  .achievers-featured-grid {
    grid-template-columns: 1fr;
  }

  .achievers-timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}

@media (max-width: 480px) {
  .achievers-main-title {
    font-size: 2.5rem;
  }

  .achievers-title-highlight {
    font-size: 1.5rem;
  }

  .achievers-hero-stats {
    grid-template-columns: 1fr;
  }

  .achievers-hero-stat-number {
    font-size: 2rem;
  }

  .achievers-categories-title,
  .achievers-featured-title,
  .achievers-timeline-title,
  .achievers-gallery-title {
    font-size: 1.75rem;
  }

  .achievers-categories-unique-grid {
    padding: 10px;
    gap: 15px;
  }

  .achievers-category-card-content {
    padding: 25px 20px;
  }

  .achievers-category-icon {
    width: 70px;
    height: 70px;
  }

  .achievers-category-icon i {
    font-size: 30px;
  }

  .achievers-category-icon-ring {
    width: 100px;
    height: 100px;
  }

  .achievers-category-title {
    font-size: 1.3rem;
  }

  .achievers-category-card-medium .achievers-category-title {
    font-size: 1.2rem;
  }

  .achievers-category-card-small .achievers-category-title {
    font-size: 1rem;
  }

  .achievers-category-description {
    font-size: 14px;
  }

  .achievers-category-stats {
    flex-direction: column;
    gap: 15px;
  }

  .achievers-category-stat-number {
    font-size: 1.8rem;
  }

  .achievers-category-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .achievers-timeline-content {
    padding: 20px;
  }
}

/* Academic Calendar Page Styles */
.academic-calendar-header-section {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.academic-calendar-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.academic-calendar-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.academic-calendar-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.academic-calendar-subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 20px;
}

.academic-calendar-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Academic Year Overview Section */
.academic-year-overview-section {
  padding: 60px 0;
}

.academic-year-overview-container {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.academic-year-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.academic-year-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  margin-bottom: 20px;
  font-weight: 600;
  display: block;
}

.academic-year-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-year-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.academic-year-stats {
  display: flex;
  gap: 30px;
}

.academic-year-stat {
  text-align: center;
}

.academic-year-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #d96f2a;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.academic-year-stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.academic-year-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.academic-year-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Calendar Navigation Section */
.academic-calendar-nav-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.academic-calendar-nav-header {
  text-align: center;
  margin-bottom: 50px;
}

.academic-calendar-nav-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.academic-calendar-nav-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-calendar-nav-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Month Navigation */
.academic-calendar-month-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.academic-calendar-month-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.academic-calendar-month-btn:hover {
  border-color: #d96f2a;
  color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.2);
}

.academic-calendar-month-btn.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

/* Calendar Grid */
.academic-calendar-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.academic-calendar-month {
  display: none;
}

.academic-calendar-month.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.academic-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.academic-calendar-weekday {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #d96f2a;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.academic-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.academic-calendar-day {
  aspect-ratio: 1;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.academic-calendar-day:hover {
  background: #ffffff;
  border-color: #d96f2a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.2);
}

.academic-calendar-day.empty {
  background: transparent;
  cursor: default;
  border: none;
}

.academic-calendar-day.empty:hover {
  transform: none;
  box-shadow: none;
}

.academic-calendar-day-number {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.academic-calendar-day-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin-top: auto;
}

.academic-calendar-event-dot {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.academic-calendar-event-dot.holiday {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.academic-calendar-event-dot.exam {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.academic-calendar-event-dot.event {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Important Dates Section */
.academic-important-dates-section {
  padding: 60px 0;
  /* background: #ffffff; */
}

.academic-important-dates-header {
  text-align: center;
  margin-bottom: 50px;
}

.academic-important-dates-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.academic-important-dates-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-important-dates-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.academic-important-dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.academic-important-date-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  gap: 20px;
  border-left: 5px solid #d96f2a;
}

.academic-important-date-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
  border-left-color: #e1ad01;
}

.academic-important-date-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.academic-important-date-card:hover .academic-important-date-icon {
  transform: scale(1.1) rotate(5deg);
}

.academic-important-date-icon i {
  font-size: 32px;
  color: #ffffff;
}

.academic-important-date-content {
  flex: 1;
}

.academic-important-date-category {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.academic-important-date-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.3;
}

.academic-important-date-date {
  font-size: 16px;
  font-weight: 600;
  color: #d96f2a;
  margin-bottom: 8px;
}

.academic-important-date-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Matriculation Section */
.academic-matriculation-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.academic-matriculation-header {
  text-align: center;
  margin-bottom: 50px;
}

.academic-matriculation-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.academic-matriculation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-matriculation-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.academic-matriculation-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.academic-matriculation-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #e1ad01, #d96f2a);
  transform: translateX(-50%);
}

.academic-matriculation-timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.academic-matriculation-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.academic-matriculation-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.academic-matriculation-timeline-marker {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(225, 173, 1, 0.2);
  z-index: 2;
}

.academic-matriculation-timeline-content {
  width: 45%;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.academic-matriculation-timeline-item:hover .academic-matriculation-timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
}

.academic-matriculation-timeline-date {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.academic-matriculation-timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.academic-matriculation-timeline-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Holidays Section */
.academic-holidays-section {
  padding: 60px 0;
  /* background: #ffffff; */
}

.academic-holidays-header {
  text-align: center;
  margin-bottom: 50px;
}

.academic-holidays-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.academic-holidays-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-holidays-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.academic-holidays-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.academic-holiday-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #d96f2a;
}

.academic-holiday-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.2);
  border-top-color: #e1ad01;
}

.academic-holiday-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.academic-holiday-card:hover .academic-holiday-icon {
  transform: scale(1.1) rotate(360deg);
}

.academic-holiday-icon i {
  font-size: 36px;
  color: #ffffff;
}

.academic-holiday-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.academic-holiday-date {
  font-size: 15px;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 8px;
}

.academic-holiday-duration {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Timetable Section */
.academic-timetable-section {
  padding: 60px 0;
  /* background: #ffffff; */
}

.academic-timetable-header {
  text-align: center;
  margin-bottom: 50px;
}

.academic-timetable-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d96f2a;
  font-weight: 600;
  margin-bottom: 15px;
}

.academic-timetable-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.academic-timetable-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Timetable Tabs */
.academic-timetable-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.academic-timetable-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.academic-timetable-tab i {
  font-size: 18px;
}

.academic-timetable-tab:hover {
  border-color: #d96f2a;
  color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.2);
}

.academic-timetable-tab.active {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(217, 111, 42, 0.3);
}

.academic-timetable-tab.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 111, 42, 0.4);
}

/* Timetable Content */
.academic-timetable-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.academic-timetable-content.active {
  display: block;
}

.academic-timetable-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.academic-timetable-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1000px;
}

.academic-timetable-header-row {
  display: grid;
  grid-template-columns: 80px 120px repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.academic-timetable-row {
  display: grid;
  grid-template-columns: 80px 120px repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

/* Evening timetable has 5 days */
#evening-timetable .academic-timetable-header-row,
#evening-timetable .academic-timetable-row {
  grid-template-columns: 80px 120px repeat(4, 1fr);
}

.academic-timetable-row.break {
  grid-template-columns: 80px 120px 1fr;
}

.academic-timetable-row.break .academic-timetable-cell:last-child {
  grid-column: 3 / -1;
}

#evening-timetable .academic-timetable-row.break {
  grid-template-columns: 80px 120px 1fr;
}

/* Matriculation has 6 days including Saturday */
#matriculation-timetable .academic-timetable-header-row,
#matriculation-timetable .academic-timetable-row {
  grid-template-columns: 80px 120px repeat(6, 1fr);
}

.academic-timetable-cell {
  padding: 15px 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.academic-timetable-cell.header {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(217, 111, 42, 0.2);
}

.academic-timetable-cell.period {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #2c3e50;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #d96f2a;
}

.academic-timetable-cell.time {
  background: #f8f9fa;
  color: #666;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #e0e0e0;
}

.academic-timetable-cell.subject {
  background: #ffffff;
  color: #2c3e50;
  font-weight: 600;
  border: 2px solid #f0f0f0;
  cursor: pointer;
}

.academic-timetable-cell.subject:hover {
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.1) 0%, rgba(217, 111, 42, 0.1) 100%);
  border-color: #d96f2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 111, 42, 0.15);
}

.academic-timetable-row.break .academic-timetable-cell {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  font-weight: 600;
  border: 2px solid #ffc107;
  grid-column: span 5;
}

.academic-timetable-note {
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.1) 0%, rgba(217, 111, 42, 0.1) 100%);
  border-left: 4px solid #d96f2a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.academic-timetable-note i {
  font-size: 24px;
  color: #d96f2a;
  flex-shrink: 0;
}

.academic-timetable-note p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Download Section */
.academic-download-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.academic-download-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 25px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(217, 111, 42, 0.3);
}

.academic-download-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academic-download-icon i {
  font-size: 45px;
  color: #ffffff;
}

.academic-download-content {
  flex: 1;
  color: #ffffff;
}

.academic-download-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.academic-download-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 25px;
}

.academic-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  background: #ffffff;
  color: #d96f2a;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.academic-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #e1a906;
}

.academic-download-btn i {
  font-size: 20px;
}

/* Responsive Styles for Academic Calendar */
@media (max-width: 992px) {
  .academic-year-overview-container {
    flex-direction: column;
    gap: 40px;
  }

  .academic-year-image-wrapper,
  .academic-year-content-wrapper {
    width: 100%;
  }

  .academic-year-stats {
    justify-content: center;
  }

  .academic-important-dates-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academic-matriculation-timeline::before {
    left: 30px;
  }

  .academic-matriculation-timeline-item {
    flex-direction: row !important;
  }

  .academic-matriculation-timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }

  .academic-matriculation-timeline-marker {
    left: 30px;
  }

  .academic-download-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .academic-calendar-main-title {
    font-size: 2.5rem;
  }

  .academic-calendar-subtitle {
    font-size: 1.4rem;
  }

  .academic-year-title,
  .academic-calendar-nav-title,
  .academic-important-dates-title,
  .academic-matriculation-title,
  .academic-holidays-title {
    font-size: 2rem;
  }

  .academic-calendar-month-nav {
    gap: 8px;
  }

  .academic-calendar-month-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .academic-calendar-grid-wrapper {
    padding: 20px;
  }

  .academic-important-dates-grid {
    grid-template-columns: 1fr;
  }

  .academic-holidays-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .academic-timetable-title {
    font-size: 2rem;
  }

  .academic-timetable-tabs {
    gap: 8px;
  }

  .academic-timetable-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .academic-timetable-tab span {
    display: none;
  }

  .academic-timetable-tab i {
    font-size: 18px;
  }

  .academic-timetable-wrapper {
    padding: 15px;
  }

  .academic-timetable-cell {
    padding: 10px 6px;
    font-size: 12px;
    min-height: 40px;
  }

  .academic-download-card {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .academic-calendar-header-section {
    padding: 60px 15px 40px;
  }

  .academic-calendar-main-title {
    font-size: 2rem;
  }

  .academic-calendar-subtitle {
    font-size: 1.2rem;
  }

  .academic-year-stats {
    flex-direction: column;
    gap: 20px;
  }

  .academic-year-title,
  .academic-calendar-nav-title,
  .academic-important-dates-title,
  .academic-matriculation-title,
  .academic-holidays-title {
    font-size: 1.75rem;
  }

  .academic-calendar-month-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .academic-calendar-weekday {
    font-size: 12px;
    padding: 8px 4px;
  }

  .academic-calendar-day {
    padding: 8px 4px;
  }

  .academic-calendar-day-number {
    font-size: 14px;
  }

  .academic-important-date-card {
    flex-direction: column;
    text-align: center;
  }

  .academic-holidays-grid {
    grid-template-columns: 1fr;
  }

  .academic-download-title {
    font-size: 1.5rem;
  }

  .academic-timetable-title {
    font-size: 1.75rem;
  }

  .academic-timetable-tabs {
    gap: 10px;
  }

  .academic-timetable-tab {
    padding: 12px 20px;
    font-size: 14px;
  }

  .academic-timetable-wrapper {
    padding: 20px;
    overflow-x: auto;
  }

  .academic-timetable-cell {
    padding: 12px 8px;
    font-size: 13px;
    min-height: 45px;
  }

  .academic-timetable-cell.header {
    font-size: 13px;
  }

  .academic-timetable-cell.period {
    font-size: 14px;
  }

  .academic-timetable-cell.time {
    font-size: 12px;
  }

  .academic-timetable-note {
    padding: 15px 20px;
  }

  .academic-timetable-note p {
    font-size: 14px;
  }
}

/* ===========================
   Achievers Section Styles
   =========================== */

/* Section Navigation */
.section-navigation {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
}

.section-nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-nav-title i {
  color: #e1ad01;
  font-size: 1.4rem;
}

.section-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border: 2px solid #e1ad01;
  border-radius: 25px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-nav-btn:hover {
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 173, 1, 0.3);
  border-color: #d96f2a;
}

.section-nav-btn i {
  font-size: 1rem;
}

.section-nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  min-width: 30px;
}

.section-nav-btn:hover .section-nav-count {
  background: white;
  color: #e1ad01;
}

.achievers-section {
  margin-bottom: 80px;
  position: relative;
  scroll-margin-top: 100px;
}

.achievers-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.lab-heading {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.lab-title {
  font-size: 2.5rem;  
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.achievers-section-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e1ad01 0%, rgba(225, 173, 1, 0.1) 100%);
}

.achievers-section-title-wrapper {
  flex: 1;
}

.achievers-section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e1ad01;
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.achievers-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #e1ad01;
  border-radius: 50%;
}

.achievers-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievers-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 2px;
  margin-top: 15px;
}

.achievers-section-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(225, 173, 1, 0.3);
  min-width: 120px;
}

.count-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.count-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Achievers Tags */
.achievers-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.achievers-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.1) 0%, rgba(217, 111, 42, 0.1) 100%);
  border: 1px solid rgba(225, 173, 1, 0.3);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d96f2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Compact Achiever Cards - 4 per Row */
.achiever-card-compact {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.achiever-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(225, 173, 1, 0.3);
}

.achiever-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e1ad01 0%, #d96f2a 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(225, 173, 1, 0.4);
}

.achiever-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.achiever-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.achiever-card-compact:hover .achiever-card-image img {
  transform: scale(1.1);
}

.achiever-placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 3.5rem;
}

.achiever-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achiever-card-compact:hover .achiever-card-overlay {
  opacity: 1;
}

.achiever-card-overlay i {
  color: #e1ad01;
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.achiever-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.achiever-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.achiever-achievement {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e1ad01;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.achiever-description {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0 0 15px 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.achiever-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.achiever-tag-year {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(225, 173, 1, 0.1) 0%, rgba(217, 111, 42, 0.1) 100%);
  border: 1px solid rgba(225, 173, 1, 0.3);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d96f2a;
}

.achiever-tag-year i {
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .achievers-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .achievers-section-count {
    align-self: flex-start;
  }

  .achievers-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-navigation {
    padding: 20px;
  }

  .section-nav-title {
    font-size: 1.25rem;
  }

  .section-nav-buttons {
    gap: 10px;
  }

  .section-nav-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 1 1 calc(50% - 5px);
    min-width: 150px;
  }

  .achievers-section {
    margin-bottom: 60px;
  }

  .achievers-section-header {
    margin-bottom: 30px;
  }

  .achievers-section-title {
    font-size: 1.75rem;
  }

  .achievers-section-count {
    padding: 15px 25px;
    min-width: 100px;
  }

  .count-number {
    font-size: 2rem;
  }

  .count-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .section-navigation {
    padding: 18px;
  }

  .section-nav-title {
    font-size: 1.1rem;
  }

  .section-nav-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    flex: 1 1 100%;
  }

  .section-nav-count {
    font-size: 0.8rem;
    padding: 3px 8px;
  }

  .achievers-section-title {
    font-size: 1.5rem;
  }

  .achievers-section-label {
    font-size: 0.75rem;
  }

  .achievers-section-divider {
    width: 60px;
    height: 3px;
  }

  .achiever-card-image {
    height: 200px;
  }

  .achiever-name {
    font-size: 1.1rem;
  }

  .achiever-achievement {
    font-size: 0.85rem;
  }

  .achiever-description {
    font-size: 0.8rem;
  }
}

/* Responsive adjustments for compact cards */
@media (max-width: 1400px) {
  .achiever-card-image {
    height: 220px;
  }
}

@media (max-width: 992px) {
  .achiever-card-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .achiever-card-image {
    height: 260px;
  }
  
  .achiever-card-body {
    padding: 18px;
  }
  .academics-header-title {
    font-size: 40px;
  }
}