/* ===== INNER HERO (ACHIEVEMENTS PAGE) ===== */

.achievements-hero {
  position: relative;
  height: 300px;
  background: url("../images/achievements-banner.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}


.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.inner-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.inner-hero-content p {
  font-size: 17px;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
}

.breadcrumb a {
  color: #19b5e5; /* index blue */
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb span {
  margin: 0 6px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .achievements-hero {
    height: 240px;
  }

  .inner-hero-content h1 {
    font-size: 30px;
  }

  .inner-hero-content p {
    font-size: 15px;
  }
}

/* ===== ACHIEVEMENTS OVERVIEW ===== */

.achievements-overview {
  padding: 80px 20px;
  background: #ffffff;
}

.overview-wrap {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.overview-wrap h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1b1b1b;
}

.overview-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #b51f1f; /* theme red */
  margin-bottom: 22px;
}

.overview-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* META INFO */
.overview-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #444;
}

.overview-meta span {
  position: relative;
  padding-left: 18px;
}

.overview-meta span::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #19b5e5; /* index blue */
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .overview-wrap h2 {
    font-size: 28px;
  }

  .overview-highlight {
    font-size: 16px;
  }
}

/* ===== ACHIEVEMENTS TIMELINE ===== */

.achievements-timeline {
  padding: 90px 20px;
  background: #f9fbff;
}

.timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e6e6e6;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

/* YEAR */
.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #b51f1f; /* theme red */
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  transition: 0.3s;
}

/* CONTENT */
.timeline-content {
  width: 42%;
  background: #ffffff;
  padding: 25px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b1b1b;
}

.timeline-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.timeline-item:hover .timeline-year {
  background: #19b5e5; /* index blue */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    justify-content: flex-start;
    padding-left: 40px;
  }

  .timeline-year {
    left: 10px;
    transform: none;
  }

  .timeline-content {
    width: 100%;
  }
}

/* ===== ACADEMIC ACHIEVEMENTS ===== */

.academic-achievements {
  padding: 90px 20px;
  background: #ffffff;
}

.achievement-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.achievement-card {
  background: #f9fbfd;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35);
}

.achievement-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1b1b1b;
}

/* LIST */
.achievement-card ul {
  list-style: none;
  padding: 0;
}

.achievement-card ul li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.achievement-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19b5e5; /* index blue */
  font-weight: bold;
}

/* HIGHLIGHT CARD */
.achievement-card.highlight {
  background: linear-gradient(135deg, #b51f1f, #8e1515);
  color: #fff;
}

.achievement-card.highlight h4,
.achievement-card.highlight p {
  color: #fff;
}

.big-score {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

.academic-achievements .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
}

.academic-achievements .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #19b5e5; /* index blue */
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* ===== RESULT HIGHLIGHTS ===== */

.result-highlights {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9fbff, #ffffff);
  text-align: center;
}

.result-highlights .section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px;
}

.result-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* STRIP */
.results-strip {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* BOX */
.result-box {
  padding: 35px 20px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.result-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35);
}

/* NUMBER */
.result-number {
  font-size: 52px;
  font-weight: 900;
  color: #b51f1f; /* theme red */
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.result-box p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .results-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .results-strip {
    grid-template-columns: 1fr;
  }

  .result-number {
    font-size: 44px;
  }
}

.academic-achievements {
  padding-bottom: 40px;   /* pehle 90px tha */
}

.result-highlights {
  padding-top: 30px;      /* pehle 90px tha */
}

/* ===== STUDENT SUCCESS STORIES ===== */

.student-success {
  padding: 80px 20px;
  background: #ffffff;
}

.student-success .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
}

/* STORY WRAPPER */
.success-story {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.success-story.reverse {
  grid-template-columns: 2fr 1fr;
}

.success-story.reverse .story-image {
  order: 2;
}

.success-story.reverse .story-content {
  order: 1;
}

/* IMAGE */
.story-image img {
  width: 100%;
  max-width: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 4px solid #b51f1f; /* theme red */
}

/* CONTENT */
.story-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1b1b1b;
}

.story-content h4 span {
  font-size: 14px;
  font-weight: 500;
  color: #19b5e5; /* index blue */
}

.story-achievement {
  font-size: 16px;
  font-weight: 600;
  color: #b51f1f;
  margin-bottom: 15px;
}

/* QUOTE */
.story-content blockquote {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  border-left: 4px solid #19b5e5;
  padding-left: 18px;
  margin: 0;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .success-story,
  .success-story.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-image img {
    margin: auto;
  }

  .story-content blockquote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #19b5e5;
    padding-top: 12px;
  }
}

/* ===== ACHIEVEMENT GALLERY ===== */

.achievement-gallery {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.gallery-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(181,31,31,0.85); /* theme red */
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WHY OUR STUDENTS SUCCEED ===== */

.why-students-succeed {
  padding: 90px 20px;
  background: #f9fbff;
}

.succeed-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.succeed-intro h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #1b1b1b;
}

.succeed-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* RIGHT */
.succeed-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.succeed-point {
  padding: 22px 26px;
  background: #ffffff;
  border-left: 5px solid #b51f1f; /* theme red */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.succeed-point:hover {
  border-left-color: #19b5e5; /* index blue */
  transform: translateX(6px);
}

.succeed-point h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1b1b1b;
}

.succeed-point p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .succeed-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIAL WALL ===== */

.testimonial-wall {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  text-align: center;
}

.wall-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

/* GRID */
.wall-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* ITEM */
.wall-item {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-align: left;
}

.wall-item.highlight {
  background: linear-gradient(135deg, #b51f1f, #8e1515);
  color: #fff;
}

/* TAG */
.result-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  background: #19b5e5;
  color: #fff;
  margin-bottom: 18px;
}

.wall-item.highlight .result-tag {
  background: #ffffff;
  color: #b51f1f;
}

/* QUOTE */
.wall-item blockquote {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: italic;
}

/* AUTHOR */
.wall-author {
  font-size: 14px;
  font-weight: 600;
  color: #19b5e5;
}

.wall-item.highlight .wall-author {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wall-grid {
    grid-template-columns: 1fr;
  }
}

/* DEFAULT – sab options BLUE */
.wall-item,
.wall-item.highlight {
  background: linear-gradient(135deg, #19b5e5, #0fa3d1);
  color: #fff;
}
/* HOVER – sirf cursor par RED */
.wall-item:hover {
  background: linear-gradient(135deg, #b51f1f, #8e1515);
}

/* Result tag default BLUE */
.result-tag {
  background: #19b5e5;
  color: #fff;
}

/* Hover par RED */
.wall-item:hover .result-tag {
  background: #b51f1f;
}

/* ===== RESULTS FILTER ===== */

.results-filter {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.filter-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* FILTER BAR */
.filter-bar {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter {
  padding: 12px 18px;
  border-radius: 30px;
  border: 2px solid #19b5e5; /* BLUE default */
  background: #fff;
  color: #19b5e5;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.filter:hover {
  border-color: #b51f1f; /* RED hover */
  color: #b51f1f;
}

/* RESULTS */
.filtered-results {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.result-item {
  background: #19b5e5; /* BLUE default */
  color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s ease;
}

.result-item:hover {
  background: #b51f1f; /* RED on hover */
}

.result-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.result-item p {
  font-size: 15px;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .filtered-results {
    grid-template-columns: 1fr;
  }
}

/* ===== FINAL CALL TO ACTION ===== */

.final-cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9fbff, #ffffff);
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #1b1b1b;
}

.cta-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: #19b5e5;        /* BLUE default */
  color: #fff;
  transition: 0.3s ease;
}

/* HOVER = RED */
.cta-btn:hover {
  background: #b51f1f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

.final-cta {
  padding: 30px 20px;
}
