 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== HEADER ===== */
.site-header {
background: white;
  color: rgb(9, 9, 114);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 1px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: #d90a5b;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-nav a {
  color: rgb(9, 9, 68);
  text-decoration: none;
  font-weight: 700;
}

.nav-btn {
 background:  #d90a5b;
  padding: 16px 28px;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== MAIN ===== */
.site-main {
  min-height: 70vh;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.footer-box h4 {
  margin-bottom: 10px;
}

.footer-box ul {
  list-style: none;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  background: #000;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #0c1c38;
    padding: 20px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }
}



/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* RESPONSIVE MAGIC */
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 56, 0.7);
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content h1 span {
  
  color: #d90a5b;
  text-shadow: 0 0 6px rgba(217, 10, 91, 0.4);


  
}

.hero-content p {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #e0e0e0;
}

/* Buttons */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d90a5b;
  color: #fff;
}

.btn-primary:hover {
  background: white;
  color: #000;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0c1c38;
}

/* Trust line */
.hero-trust {
  margin-top: 25px;
  font-size: 1rem;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/* ===== PROGRAM TILES ===== */
.program-section {
  padding: 90px 20px;
  background: #f4f7fb;
}

.program-header {
  text-align: center;
  margin-bottom: 50px;
}

.program-header h2 {
  font-size: 2.6rem;
  color: #0c1c38;
}

.program-header p {
  color: #555;
  margin-top: 10px;
  font-size: 1.1rem;
}

/* Grid */
.program-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Tile */
.program-tile {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.program-tile.wide {
  grid-column: span 2;
}

/* Image */
.program-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 28, 56, 0.85),
    rgba(12, 28, 56, 0.2)
  );
}

/* Content */
.program-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #fff;
  transition: 0.3s ease;
}

.program-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.program-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.program-content a {
  display: inline-block;
  padding: 8px 16px;
  background: #d90a5b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* Hover Effect */
.program-tile:hover .program-content a {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-tile.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-tile.wide {
    grid-column: span 1;
  }

  .program-tile {
    height: 240px;
  }
}


/* ======================================================
   TOP COLLEGES – BACKGROUND IMAGE CARD CAROUSEL
   ====================================================== */

.college-carousel-section {
  padding: 100px 20px;
  background: #f4f7fb;
}

/* Header */
.college-carousel-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.college-carousel-header h2 {
  font-size: 2.7rem;
  color: #0c1c38;
}

.college-carousel-header p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: #555;
}

/* Wrapper */
.college-carousel-wrapper {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
}

/* Track */
.college-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* ======================================================
   CARD WITH BACKGROUND IMAGE
   ====================================================== */

.bg-card {
  position: relative;
  min-width: 300px;
  height: 240px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bg-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.2);
}

/* Overlay */
.college-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 28, 56, 0.9),
    rgba(12, 28, 56, 0.3)
  );
}

/* Content */
.college-card-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
}

.college-card-content h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.college-card-content span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ======================================================
   CAROUSEL BUTTONS
   ====================================================== */

.carousel-btn {
  background: #0c1c38;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 2.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: #d90a5b;
}

.carousel-btn.left {
  margin-right: 12px;
}

.carousel-btn.right {
  margin-left: 12px;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .bg-card {
    min-width: 260px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .college-carousel-section {
    padding: 80px 15px;
  }

  .college-carousel-header h2 {
    font-size: 2rem;
  }

  .bg-card {
    min-width: 240px;
    height: 210px;
  }
}

@media (max-width: 500px) {
  .carousel-btn {
    display: none;
  }

  .bg-card {
    min-width: 220px;
    height: 200px;
  }
}

/* ======================================================
   CAREER GUIDANCE SECTION
   ====================================================== */

.career-guidance {
  padding: 100px 20px;
  background: #ffffff;
}

.career-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.career-content h2 {
  font-size: 2.6rem;
  color: #0c1c38;
  line-height: 1.3;
}

.career-content h2 span {
  color: #d90a5b;
}

.career-intro {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Points */
.career-points {
  list-style: none;
  margin-bottom: 35px;
}

.career-points li {
  margin-bottom: 18px;
  padding-left: 25px;
  position: relative;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.career-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d90a5b;
  font-weight: bold;
}

/* Button */
.career-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #d90a5b;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.career-btn:hover {
  background: white;
  color: #d90a5b;
  border: 1px solid #d90a5b;
}

/* RIGHT IMAGE */
.career-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .career-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .career-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career-content {
    order: 2;
  }

  .career-image {
    order: 1;
  }

  .career-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .career-guidance {
    padding: 80px 15px;
  }

  .career-content h2 {
    font-size: 1.8rem;
  }

  .career-intro {
    font-size: 1rem;
  }
}


/* ======================================================
   COUNSELLING FORM – SPLIT IMAGE DESIGN
   ====================================================== */

.enquiry-section {
  padding: 100px 20px;
  background: #f4f7fb;
}

.enquiry-container.split-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= FORM SIDE ================= */

.enquiry-form-box {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.form-heading {
  font-size: 2.4rem;
  color: #0c1c38;
  margin-bottom: 10px;
}

.form-heading span {
  color: #d90a5b;
}

.form-subtext {
  margin-bottom: 30px;
  color: #666;
  font-size: 1rem;
}

/* ================= IMAGE SIDE ================= */

.enquiry-image-box {
  width: 100%;
  height: 100%;
}

.enquiry-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ================= FORM ELEMENTS ================= */

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 8px;
  border: 1.5px solid #d0d0d0;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d90a5b;
  box-shadow: 0 0 0 3px rgba(245, 139, 41, 0.18);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Button */
.enquiry-btn {
  width: 100%;
  padding: 16px;
  background: #d90a5b;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 139, 41, 0.35);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .form-heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .enquiry-container.split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-image-box {
    order: -1; /* image upar aa jayegi */
  }

  .enquiry-form-box {
    padding: 40px 30px;
  }
}

@media (max-width: 500px) {
  .enquiry-section {
    padding: 80px 15px;
  }

  .form-heading {
    font-size: 1.8rem;
  }
}

/* ================= COLLEGE RANKING ================= */

.ranking-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
}

.ranking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ranking-header h2 {
  font-size: 2rem;
  color: #0c1c38;
}

.view-all {
  color: #d90a5b;
  text-decoration: none;
  font-weight: 500;
}

.ranking-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
}

.ranking-filters select {
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

/* Agency tabs */
.agency-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.agency-tabs span {
  margin-right: 5px;
  color: #555;
}

.agency-tabs button {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.agency-tabs button.active {
  border-color: #0c1c38;
  color: #0c1c38;
  font-weight: 600;
}

/* Table */
.ranking-table {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.ranking-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  padding: 18px 20px;
  font-size: 0.95rem;
}

.ranking-row.heading {
  background: #f7f7f7;
  font-weight: 600;
}

.ranking-row:not(.heading) {
  border-top: 1px solid #eee;
}

.ranking-row:nth-child(even):not(.heading) {
  background: #fafcfd;
}

/* Responsive */
@media (max-width: 768px) {
  .ranking-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ranking-row.heading {
    display: none;
  }

  .ranking-row div:nth-child(2)::before {
    content: "Ranking: ";
    font-weight: 600;
  }

  .ranking-row div:nth-child(3)::before {
    content: "Stream: ";
    font-weight: 600;
  }
}

/* ======================================================
   NEWSLETTER SUBSCRIBE – COLLEGE SEARCH KARO
   ====================================================== */

.newsletter-section {
  padding: 70px 20px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.newsletter-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.newsletter-container h2 {
  font-size: 2.2rem;
  color: #0c1c38;
  margin-bottom: 8px;
}

.newsletter-container h2 span {
  color: #d90a5b;
}

.newsletter-container p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 35px;
}

/* FORM */
.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Input Box */
.input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 14px;
  min-width: 260px;
  background: #fff;
}

.input-box .icon {
  margin-right: 8px;
  font-size: 1rem;
  color: #777;
}

.input-box input,
.input-box select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
}

/* Button */
.newsletter-btn {
  padding: 13px 35px;
  background: #d90a5b;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-btn:hover {
  background: white;
  color: #d90a5b;
  border: 1px solid #d90a5b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .newsletter-form {
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .newsletter-container h2 {
    font-size: 1.8rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .input-box,
  .newsletter-btn {
    width: 100%;
  }
}


/* ================= BLOG AUTO SLIDER ================= */

.blog-section {
  padding: 90px 20px;
  background: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 2.5rem;
  color: #0c1c38;
}

.blog-header h2 span {
  color: #d90a5b;
}

.blog-header p {
  color: #555;
}

/* Slider Wrapper */
.blog-slider-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* Slider */
.blog-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

/* Card */
.blog-card {
  flex: 0 0 calc(33.333% - 17px); /* 🔥 3 cards */
  background: #fff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.blog-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #d90a5b;
  color: #d90a5b;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.2rem;
  color: #0c1c38;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.blog-card a {
  color: #d90a5b;
  font-weight: 600;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .blog-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards */
  }
}

@media (max-width: 600px) {
  .blog-card {
    flex: 0 0 100%; /* 1 card */
  }
}


/* ======================================================
   SUCCESS STORIES / TESTIMONIALS
   ====================================================== */

.testimonial-section {
  padding: 90px 20px;
  background: #ffffff;
}

/* Header */
.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: #0c1c38;
}

.testimonial-header h2 span {
  color: #d90a5b;
}

.testimonial-header p {
  margin-top: 8px;
  color: #555;
}

/* Wrapper */
.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

/* Track */
.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
  position: relative;
}

/* Accent line (unique touch) */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #d90a5b;
  border-radius: 20px 0 0 20px;
}

/* Student info */
.student-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.student-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.student-info h4 {
  font-size: 1.1rem;
  color: #0c1c38;
}

.student-info span {
  font-size: 0.85rem;
  color: #777;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-header h2 {
    font-size: 2rem;
  }
}


/* ======================================================
   WHY CHOOSE US – UNIQUE DESIGN
   ====================================================== */

.why-choose-section {
  padding: 100px 20px;
  background: #ffffff;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 2.6rem;
  color: #0c1c38;
}

.why-header h2 span {
  color: #d90a5b;
}

.why-header p {
  margin-top: 10px;
  color: #555;
}

/* Container */
.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT – Timeline */
.why-line {
  position: relative;
  padding-left: 40px;
}

.why-line::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #d90a5b;
  border-radius: 5px;
}

/* Points */
.why-point {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  position: relative;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d90a5b;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1.15rem;
  color: #0c1c38;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* RIGHT – Highlight Card */
.why-highlight {
  background: #848587;
  color: black;
  padding: 45px 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.why-highlight h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-highlight p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 600;
}

/* Stats */
.why-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.why-stats div {
  text-align: center;
}

.why-stats strong {
  display: block;
  font-size: 1.6rem;
  color: #d90a5b;
}

.why-stats span {
  font-size: 0.85rem;
  color: #000;
  font-weight: 600;
}

/* Button */
.why-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #d90a5b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.why-btn:hover {
  background: white;
  color: #d90a5b;
  border: 1px solid #d90a5b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-line::before {
    left: 10px;
  }
}

@media (max-width: 600px) {
  .why-header h2 {
    font-size: 2rem;
  }

  .why-highlight {
    padding: 35px 28px;
  }

  .why-stats {
    flex-direction: column;
    gap: 20px;
  }
}


/* Footer Credit Line */
.footer-copy {
  color: #555;
  font-size: 0.9rem;
  text-align: center;      /* 🔥 CENTER TEXT */
  width: 100%;
  margin: 0 auto;
}

.footer-bottom {
  justify-content: center; /* 🔥 CENTER CONTENT */
}

.footer-copy strong {
  color: white;
  font-weight: 600;
}

.footer-copy .divider {
  margin: 0 6px;
  color: #ccc;
}

.footer-credit {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit:hover {
  color: #d90a5b;
  text-decoration: none;
}


.about-hero-v2 {
  padding: 100px 8%;
  background: #fafafa;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-hero-left h1 {
  font-size: 3.1rem;
  line-height: 1.2;
  color: #1f1f1f;
  margin-bottom: 22px;
}

.about-hero-left h1 span {
  color: #d90a5b;
}

.about-hero-left p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 35px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-btn-main {
  padding: 14px 34px;
  background: #d90a5b;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn-main:hover {
  background: #b2084c;
  box-shadow: 0 10px 25px rgba(217, 10, 91, 0.25);
}

.hero-btn-link {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  position: relative;
}

.hero-btn-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: #d90a5b;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.hero-btn-link:hover::after {
  width: 100%;
}

/* RIGHT CARDS */
.about-hero-right {
  display: grid;
  gap: 20px;
}

.info-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.info-card p {
  font-size: 0.95rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }
}

.edu-who-wrap {
  padding: 90px 8%;
  background: #ffffff;
}

.edu-who-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.edu-who-header {
  max-width: 750px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.edu-who-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.edu-who-header h2 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 18px;
}

.edu-who-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* FEATURES */
.edu-who-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.edu-who-card {
  background: #fafafa;
  padding: 35px 28px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s ease;
}

.edu-who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.edu-who-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  background: rgba(217, 10, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #d90a5b;
  margin-bottom: 20px;
}

.edu-who-card h4 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.edu-who-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .edu-who-features {
    grid-template-columns: 1fr;
  }
}

.edu-story-wrap {
  padding: 110px 8%;
  background: #ffffff;
}

.edu-story-inner {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.edu-story-head {
  text-align: center;
  margin-bottom: 70px;
}

.edu-story-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-story-head h2 {
  font-size: 2.6rem;
  margin-top: 10px;
  color: #222;
}

/* MISSION & VISION ROW */
.edu-story-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 90px;
}

/* BOX */
.edu-story-box {
  position: relative;
  padding-left: 35px;
}

.edu-story-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 100%;
  background: rgba(217, 10, 91, 0.3);
  border-radius: 10px;
}

.edu-story-icon {
  font-size: 1.6rem;
  color: #d90a5b;
  display: inline-block;
  margin-bottom: 10px;
}

.edu-story-box h3 {
  font-size: 1.7rem;
  color: #222;
  margin-bottom: 12px;
}

.edu-story-box p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* VALUES STRIP */
.edu-values-strip {
  background: #fafafa;
  padding: 55px 40px;
  border-radius: 22px;
  text-align: center;
}

.edu-values-strip h3 {
  font-size: 1.9rem;
  margin-bottom: 30px;
  color: #222;
}

.edu-values-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.edu-values-items span {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  background: #ffffff;
  color: #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #d90a5b;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .edu-story-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .edu-story-box {
    padding-left: 25px;
  }
}

@media (max-width: 600px) {
  .edu-story-head h2 {
    font-size: 2.1rem;
  }

  .edu-story-box h3 {
    font-size: 1.5rem;
  }

  .edu-values-strip {
    padding: 45px 25px;
  }
}


.edu-expertise-wrap {
  padding: 110px 8%;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.edu-expertise-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.edu-expertise-head {
  text-align: center;
  margin-bottom: 65px;
}

.edu-expertise-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-expertise-head h2 {
  font-size: 2.6rem;
  margin-top: 10px;
  color: #222;
}

/* GRID */
.edu-expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* TILE */
.edu-expertise-tile {
  background: #ffffff;
  padding: 38px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.edu-expertise-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(217, 10, 91, 0.06);
  opacity: 0;
  transition: 0.35s;
}

.edu-expertise-tile:hover::after {
  opacity: 1;
}

.edu-expertise-tile:hover {
  transform: translateY(-10px);
}

.edu-expertise-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(217, 10, 91, 0.12);
  color: #d90a5b;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-expertise-tile h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

/* MESSAGE BAND */
.edu-expertise-note {
  margin-top: 80px;
  text-align: center;
  padding: 35px 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.edu-expertise-note p {
  font-size: 1.1rem;
  color: #444;
}

.edu-expertise-note strong {
  color: #d90a5b;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .edu-expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .edu-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .edu-expertise-grid {
    grid-template-columns: 1fr;
  }

  .edu-expertise-head h2 {
    font-size: 2.1rem;
  }
}

.edu-flow-wrap {
  padding: 110px 8%;
  background: #ffffff;
}

.edu-flow-inner {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.edu-flow-head {
  text-align: center;
  margin-bottom: 80px;
}

.edu-flow-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-flow-head h2 {
  font-size: 2.6rem;
  color: #222;
  margin: 10px 0 15px;
}

.edu-flow-head p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* STEPS */
.edu-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.edu-flow-step {
  display: flex;
  gap: 30px;
  padding: 35px;
  background: #fafafa;
  border-radius: 22px;
  transition: 0.3s ease;
}

.edu-flow-step:hover {
  background: #fdf2f7;
}

/* LEFT NUMBER */
.edu-flow-left span {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d90a5b;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

/* RIGHT CONTENT */
.edu-flow-right h4 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 8px;
}

.edu-flow-right p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-flow-step {
    flex-direction: column;
    gap: 18px;
  }

  .edu-flow-left span {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .edu-flow-head h2 {
    font-size: 2.1rem;
  }
}

.edu-cta-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
}

.edu-cta-inner {
  max-width: 1100px;
  margin: auto;
}

.edu-cta-content {
  background: #ffffff;
  padding: 70px 60px;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.edu-cta-content h2 {
  font-size: 2.7rem;
  color: #222;
  margin-bottom: 18px;
}

.edu-cta-content h2 span {
  color: #d90a5b;
}

.edu-cta-content p {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ACTIONS */
.edu-cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.edu-cta-primary {
  padding: 16px 38px;
  background: #d90a5b;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(217, 10, 91, 0.3);
}

.edu-cta-primary:hover {
  background: #b2084c;
  transform: translateY(-3px);
}

.edu-cta-secondary {
  padding: 16px 38px;
  border: 2px solid #d90a5b;
  color: #d90a5b;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.edu-cta-secondary:hover {
  background: #d90a5b;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .edu-cta-content {
    padding: 50px 30px;
  }

  .edu-cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .edu-cta-actions {
    flex-direction: column;
  }

  .edu-cta-primary,
  .edu-cta-secondary {
    width: 100%;
  }
}
.contact-hero {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* SOFT OVERLAY */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 10, 91, 0.25),
    rgba(0, 0, 0, 0.35)
  );
}

/* INNER */
.contact-hero-inner {
  position: relative;
  width: 100%;
  padding: 0 8%;
  display: flex;
  justify-content: flex-start;
}

/* GLASS CONTENT BOX */
.contact-hero-box {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 60px 55px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* TAG */
.contact-hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d90a5b;
  margin-bottom: 15px;
}

/* TEXT */
.contact-hero-box h1 {
  font-size: 2.9rem;
  color: #222;
  line-height: 1.25;
  margin-bottom: 20px;
}

.contact-hero-box h1 span {
  color: #d90a5b;
}

.contact-hero-box p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* CTA */
.contact-hero-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #d90a5b;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(217, 10, 91, 0.35);
}

.contact-hero-btn:hover {
  background: #b2084c;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-hero {
    min-height: 75vh;
  }

  .contact-hero-box {
    padding: 45px 35px;
  }

  .contact-hero-box h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-inner {
    padding: 0 5%;
  }

  .contact-hero-box {
    padding: 35px 25px;
  }

  .contact-hero-box h1 {
    font-size: 2rem;
  }

  .contact-hero-btn {
    width: 100%;
    text-align: center;
  }
}

.edu-contact-quick {
  padding: 70px 8%;
  background: #ffffff;
}

.edu-contact-inner {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.edu-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.edu-contact-card {
  background: #fafafa;
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.edu-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* ICON */
.edu-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(217, 10, 91, 0.12);
  color: #d90a5b;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* TEXT */
.edu-contact-card h4 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
}

.edu-contact-card p,
.edu-contact-card a {
  font-size: 0.95rem;
  color: #555;
  text-decoration: none;
}

.edu-contact-card a:hover {
  color: #d90a5b;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .edu-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .edu-contact-grid {
    grid-template-columns: 1fr;
  }
}


.edu-form-wrap {
  padding: 120px 8%;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.edu-form-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT INFO */
.edu-form-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-form-info h2 {
  font-size: 2.8rem;
  line-height: 1.25;
  color: #222;
  margin: 15px 0 20px;
}

.edu-form-info h2 span {
  color: #d90a5b;
}

.edu-form-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.edu-form-trust li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

/* FORM CARD */
.edu-form-card {
  background: #ffffff;
  padding: 55px 45px;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
}

/* GRID */
.edu-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.edu-input {
  position: relative;
}

.edu-input label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.edu-input input,
.edu-input select,
.edu-input textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  font-size: 0.95rem;
  transition: 0.3s;
}

/* ICON INPUT */
.edu-input-icon input {
  padding-left: 44px;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 38px;
  font-size: 1.1rem;
  color: #d90a5b;
}

/* FOCUS */
.edu-input input:focus,
.edu-input select:focus,
.edu-input textarea:focus {
  outline: none;
  border-color: #d90a5b;
  box-shadow: 0 0 0 3px rgba(217, 10, 91, 0.12);
}

.edu-input-full {
  grid-column: span 2;
}

/* CTA */
.edu-form-btn {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  background: #d90a5b;
  color: #ffffff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 26px rgba(217, 10, 91, 0.35);
}

.edu-form-btn:hover {
  background: #b2084c;
  transform: translateY(-2px);
}

.edu-form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  text-align: center;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .edu-form-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .edu-form-info h2 {
    font-size: 2.2rem;
  }

  .edu-form-card {
    padding: 40px 25px;
  }

  .edu-form-grid {
    grid-template-columns: 1fr;
  }

  .edu-input-full {
    grid-column: span 1;
  }
}

.edu-map-trust-wrap {
  padding: 100px 8%;
  background: #ffffff;
}

.edu-map-trust-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* MAP */
.edu-map-box {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.edu-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* TRUST CONTENT */
.edu-trust-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-trust-box h2 {
  font-size: 2.5rem;
  color: #222;
  margin: 12px 0 18px;
}

.edu-trust-box h2 span {
  color: #d90a5b;
}

.edu-trust-box p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* TRUST LIST */
.edu-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edu-trust-list li {
  font-size: 1rem;
  color: #444;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .edu-map-trust-inner {
    grid-template-columns: 1fr;
  }

  .edu-map-box {
    height: 350px;
  }
}

@media (max-width: 500px) {
  .edu-trust-box h2 {
    font-size: 2rem;
  }

  .edu-map-box {
    height: 300px;
  }
}
.edu-faq-wrap {
  padding: 110px 8%;
  background: #ffffff;
}

.edu-faq-inner {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.edu-faq-head {
  text-align: center;
  margin-bottom: 70px;
}

.edu-faq-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d90a5b;
  letter-spacing: 1px;
}

.edu-faq-head h2 {
  font-size: 2.6rem;
  color: #222;
  margin: 10px 0 15px;
}

.edu-faq-head p {
  font-size: 1.05rem;
  color: #555;
}

/* FAQ ITEMS */
.edu-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.edu-faq-item {
  background: #fafafa;
  padding: 22px 26px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.edu-faq-item[open] {
  background: #fdf2f7;
}

/* SUMMARY */
.edu-faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.edu-faq-item summary::-webkit-details-marker {
  display: none;
}

/* PLUS / MINUS ICON */
.edu-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: #d90a5b;
  transition: 0.3s ease;
}

.edu-faq-item[open] summary::after {
  content: "–";
}

/* CONTENT */
.edu-faq-item p {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .edu-faq-head h2 {
    font-size: 2.1rem;
  }

  .edu-faq-item {
    padding: 20px;
  }
}


/* ===== BLOG HERO BANNER ===== */

.blog-hero-banner {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.blog-hero-overlay {
  min-height: 420px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.blog-hero-content {
  max-width: 1100px;
  margin: auto;
  width: 100%;
}

.blog-hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  max-width: 750px;
}

.blog-hero-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 650px;
}

/* Search */
.blog-hero-search {
  display: flex;
  max-width: 520px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  overflow: hidden;
}

.blog-hero-search input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-size: 15px;
}

.blog-hero-search button {
  padding: 0 22px;
  background: #d90a5b;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.blog-hero-search button:hover {
  background: #bf094f;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .blog-hero-overlay {
    padding: 60px 16px;
  }

  .blog-hero-content h1 {
    font-size: 30px;
  }

  .blog-hero-content p {
    font-size: 16px;
  }

  .blog-hero-search {
    flex-direction: column;
  }

  .blog-hero-search button {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .blog-hero-content h1 {
    font-size: 26px;
  }

  .blog-hero-banner,
  .blog-hero-overlay {
    min-height: 360px;
  }
}

/* ===== BLOG BANNER SECTION ===== */

.edu-blog-banner {
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* overlay for readability */
.edu-blog-banner-overlay {
  min-height: 420px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.edu-blog-banner-content {
  max-width: 1100px;
  margin: auto;
  width: 100%;
}

/* badge */
.edu-blog-badge {
  display: inline-block;
  background: #fdf0f5;
  color: #d90a5b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* heading */
.edu-blog-banner-content h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  max-width: 800px;
}

/* description */
.edu-blog-banner-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 650px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .edu-blog-banner-overlay {
    padding: 60px 16px;
  }

  .edu-blog-banner-content h1 {
    font-size: 30px;
  }

  .edu-blog-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .edu-blog-banner,
  .edu-blog-banner-overlay {
    min-height: 340px;
  }

  .edu-blog-banner-content h1 {
    font-size: 26px;
  }
}
/* ===== BLOG LIST HEADER ===== */

.neo-blog-list-header {
  margin-bottom: 40px;
}

.neo-blog-list-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.neo-blog-list-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .neo-blog-list-header h2 {
    font-size: 24px;
  }

  .neo-blog-list-header p {
    font-size: 14px;
  }
}


 /* ================= BLOG SECTION ================= */

.neo-blog-section {
  padding: 80px 20px;
  background: #fafafa;
  font-family: Arial, sans-serif;
}

.neo-blog-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 50px;
}

/* ================= BLOG LIST ================= */

.neo-blog-item {
  display: flex;
  gap: 26px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.neo-blog-item img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.neo-blog-content h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #111;
}

.neo-blog-content p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.neo-blog-content a {
  color: #d90a5b;
  font-weight: 600;
  text-decoration: none;
}

.neo-meta {
  font-size: 13px;
  color: #777;
  margin: 10px 0;
}

/* CATEGORY TAG */
.neo-cat {
  font-size: 12px;
  background: #fdf0f5;
  color: #d90a5b;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ================= SIDEBAR ================= */

.neo-blog-sidebar {
  position: sticky;
  top: 90px;
}

.neo-sidebar-box {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.neo-sidebar-box h4 {
  margin-bottom: 16px;
  font-size: 16px;
  color: #111;
}

/* SEARCH */
.neo-search-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

/* TAGS */
.neo-tags a {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 20px;
  background: #f4f4f4;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.neo-tags a:hover {
  background: #fdf0f5;
  color: #d90a5b;
}

/* TRENDING */
.neo-trending a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.neo-trending a:hover {
  color: #d90a5b;
}

/* NO RESULT */
.neo-no-result {
  display: none;
  font-size: 16px;
  color: #777;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .neo-blog-wrap {
    grid-template-columns: 1fr;
  }

  .neo-blog-item {
    flex-direction: column;
  }

  .neo-blog-item img {
    width: 100%;
    height: 220px;
  }
}


/* courses page css */

/* ===== COURSE HERO SECTION ===== */

.course-hero-section {
  padding: 90px 20px;
  background: #fafafa;
}

.course-hero-wrap {
  max-width: 1100px;
  margin: auto;
}

.course-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.course-hero-tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
}

/* HIGHLIGHTS */
.course-hero-highlights {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.course-highlight {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.1);
  min-width: 220px;
}

.course-highlight span {
  font-size: 24px;
}

.course-highlight p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.course-highlight strong {
  color: #111;
}

/* CTA */
.course-hero-cta {
  margin-top: 10px;
}

.course-enroll-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #d90a5b;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
}

.course-enroll-btn:hover {
  background: #bf094f;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .course-hero-content h1 {
    font-size: 30px;
  }

  .course-hero-tagline {
    font-size: 16px;
  }

  .course-hero-highlights {
    gap: 20px;
  }

  .course-highlight {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .course-hero-section {
    padding: 70px 16px;
  }

  .course-hero-content h1 {
    font-size: 26px;
  }
}


/* blog-dteails css */

/* ===== BLOG DETAIL HERO ===== */

.blog-detail-hero {
  background: #fafafa;
}

/* IMAGE */
.blog-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* CONTENT */
.blog-hero-content {
  max-width: 900px;
  margin: -80px auto 0;
  background: #fff;
  padding: 36px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  position: relative;
}

/* CATEGORY BADGE */
.blog-hero-category {
  display: inline-block;
  background: #fdf0f5;
  color: #d90a5b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* TITLE */
.blog-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* META */
.blog-hero-meta {
  font-size: 14px;
  color: #666;
}

.blog-hero-meta span {
  margin-right: 10px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .blog-hero-image img {
    height: 300px;
  }

  .blog-hero-content {
    margin: -60px 16px 0;
    padding: 28px 22px;
  }

  .blog-hero-content h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .blog-hero-image img {
    height: 240px;
  }

  .blog-hero-content h1 {
    font-size: 22px;
  }
}


/* ===== BLOG DETAIL CONTENT ===== */

.bd-content-section {
  padding: 80px 20px;
  background: #fff;
}

.bd-content-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 50px;
}

/* ARTICLE */
.bd-article {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.bd-intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

.bd-article h2 {
  font-size: 26px;
  margin: 42px 0 14px;
  color: #111;
}

.bd-article h3 {
  font-size: 20px;
  margin: 30px 0 10px;
  color: #111;
}

.bd-article ul {
  margin: 16px 0 26px 22px;
}

.bd-article li {
  margin-bottom: 10px;
}

/* EXAMPLE BOX */
.bd-example {
  background: #fdf0f5;
  border-left: 4px solid #d90a5b;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 30px 0;
}

.bd-example strong {
  color: #d90a5b;
}

/* TAGS */
.bd-tags {
  margin-top: 40px;
}

.bd-tags span {
  font-weight: 600;
  margin-right: 10px;
}

.bd-tags a {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 6px 14px;
  background: #f4f4f4;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
}

.bd-tags a:hover {
  background: #fdf0f5;
  color: #d90a5b;
}

/* SIDEBAR */
.bd-sidebar {
  position: sticky;
  top: 100px;
}

.bd-box {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.bd-box h4 {
  margin-bottom: 16px;
}

/* SEARCH */
#bdSearchInput {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

/* RELATED POSTS */
.bd-related-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px dashed #eee;
  text-decoration: none;
}

.bd-related-item h5 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #222;
}

.bd-related-item span {
  font-size: 12px;
  color: #777;
}

.bd-related-item:hover h5 {
  color: #d90a5b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bd-content-wrap {
    grid-template-columns: 1fr;
  }

  .bd-sidebar {
    position: static;
  }
}

@media (max-width: 480px) {
  .bd-article {
    font-size: 15px;
  }
}


/* college page css */
/* ===== Colleges Hero Section ===== */
.colleges-hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

/* Background Image */
.colleges-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.colleges-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content */
.colleges-hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.colleges-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.colleges-hero-content h1 span {
  color: #d90a5b;
}

.colleges-hero-content p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

/* Search Box */
.college-search {
  display: flex;
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.college-search input {
  flex: 1;
  padding: 16px 20px;
  font-size: 16px;
  border: none;
  outline: none;
}

.college-search button {
  background: #d90a5b;
  color: #ffffff;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.college-search button:hover {
  background: #b5084c;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .colleges-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .colleges-hero {
    min-height: 75vh;
  }

  .colleges-hero-content h1 {
    font-size: 32px;
  }

  .college-search {
    flex-direction: column;
    border-radius: 15px;
  }

  .college-search button {
    padding: 14px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .colleges-hero-content h1 {
    font-size: 26px;
  }
}


.clg-carousel-section {
  padding: 80px 20px;
}

.clg-container {
  max-width: 1200px;
  margin: auto;
}

.clg-heading {
  text-align: center;
  margin-bottom: 40px;
}

.clg-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.clg-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.clg-card {
  flex: 0 0 50%; /* 2 cards on desktop */
  padding: 15px;
  box-sizing: border-box;
}

.clg-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}

.clg-body {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.clg-location {
  font-size: 14px;
  color: #777;
}

.clg-desc {
  margin: 12px 0;
  font-size: 14px;
  color: #555;
}

.clg-actions {
  display: flex;
  gap: 10px;
}

.clg-btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.clg-btn.primary {
  background: #d90a5b;
  color: #fff;
}

.clg-btn.outline {
  border: 1px solid #d90a5b;
  color: #d90a5b;
}

/* Arrows */
.clg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 24px;
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  z-index: 10;
}

.clg-arrow.left { left: 0; }
.clg-arrow.right { right: 0; }

/* Responsive */
@media (max-width: 768px) {
  .clg-card {
    flex: 0 0 100%; /* 1 card on mobile */
  }

  .clg-actions {
    flex-direction: column;
  }
}
.clg-auto-section {
  padding: 80px 20px;
}

.clg-container {
  max-width: 1200px;
  margin: auto;
}

.clg-heading {
  text-align: center;
  margin-bottom: 40px;
}

.clg-auto-wrapper {
  overflow: hidden;
}

.clg-auto-track {
  display: flex;
  gap: 20px;
  animation: clgScroll 25s linear infinite;
}

/* Card size */
.clg-card {
  flex: 0 0 calc(50% - 10px); /* 2 cards desktop */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.clg-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.clg-body {
  padding: 20px;
}

.clg-location {
  font-size: 14px;
  color: #777;
}

.clg-desc {
  margin: 10px 0;
  font-size: 14px;
  color: #555;
}

.clg-actions {
  display: flex;
  gap: 10px;
}

.clg-btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.clg-btn.primary {
  background: #d90a5b;
  color: #fff;
}

.clg-btn.outline {
  border: 1px solid #d90a5b;
  color: #d90a5b;
}

/* Mobile */
@media (max-width: 768px) {
  .clg-card {
    flex: 0 0 100%;
  }
}

/* Infinite animation */
@keyframes clgScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.clg-auto-wrapper:hover .clg-auto-track {
  animation-play-state: paused;
}

/* ===============================
   Featured Colleges Section
================================ */

.feat-college-section {
  padding: 90px 20px;
  background: #f9fafc;
}

.feat-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.feat-heading {
  text-align: center;
  margin-bottom: 50px;
}

.feat-badge {
  display: inline-block;
  background: #fff;
  color: #d90a5b;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feat-heading h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.feat-heading p {
  color: #666;
}

/* Slider */
.feat-slider-wrapper {
  overflow: hidden;
}

.feat-slider-track {
  display: flex;
  gap: 30px;
  animation: featScroll 22s linear infinite;
}

/* Pause on hover */
.feat-slider-wrapper:hover .feat-slider-track {
  animation-play-state: paused;
}

/* Card */
.feat-card {
  flex: 0 0 45%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.feat-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.feat-body {
  padding: 24px;
}

.feat-body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.feat-body span {
  font-size: 14px;
  color: #777;
}

.feat-body p {
  margin: 12px 0 18px;
  color: #555;
  font-size: 15px;
}

/* CTA */
.feat-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #d90a5b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .feat-card {
    flex: 0 0 90%;
  }

  .feat-heading h2 {
    font-size: 28px;
  }
}

/* Animation */
@keyframes featScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================
   Why Choose Us - Alternate UI
================================ */

.why-alt-section {
  padding: 90px 20px;
  background: #f9fafc;
}

.why-alt-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.why-alt-head {
  text-align: center;
  margin-bottom: 60px;
}

.why-alt-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.why-alt-head p {
  color: #666;
  max-width: 720px;
  margin: auto;
}

/* Timeline */
.why-alt-timeline {
  position: relative;
  padding-left: 40px;
}

/* Vertical line */
.why-alt-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e2e5ea;
}

/* Item */
.why-alt-item {
  display: flex;
  gap: 24px;
  margin-bottom: 45px;
  position: relative;
}

/* Icon */
.why-alt-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d90a5b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}

/* Content */
.why-alt-content {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  flex: 1;
}

.why-alt-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-alt-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

  .why-alt-timeline {
    padding-left: 0;
  }

  .why-alt-timeline::before {
    display: none;
  }

  .why-alt-item {
    flex-direction: column;
    gap: 14px;
  }

  .why-alt-icon {
    align-self: flex-start;
  }

  .why-alt-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   Split Course Explorer
================================ */

.course-split-section {
  padding: 100px 20px;
  background: #ffffff;
}

.course-split-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Left */
.course-split-left h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.course-split-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.course-split-points {
  list-style: none;
  padding: 0;
}

.course-split-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* Right */
.course-split-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Tiles */
.course-tile {
  height: 160px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
  overflow: hidden;
}

/* Overlay */
.course-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.course-tile span {
  position: relative;
  z-index: 1;
}

.course-tile:hover {
  transform: translateY(-6px);
}

/* Backgrounds (replace images later) */
.course-tile.engineering { background: url("https://via.placeholder.com/500x300") center/cover; }
.course-tile.mba { background: url("https://via.placeholder.com/500x300") center/cover; }
.course-tile.medical { background: url("https://via.placeholder.com/500x300") center/cover; }
.course-tile.arts { background: url("https://via.placeholder.com/500x300") center/cover; }
.course-tile.abroad {
  background: url("https://via.placeholder.com/500x300") center/cover;
  grid-column: span 2;
}

/* Responsive */
@media (max-width: 900px) {
  .course-split-container {
    grid-template-columns: 1fr;
  }

  .course-split-right {
    grid-template-columns: 1fr;
  }

  .course-tile.abroad {
    grid-column: span 1;
  }

  .course-split-left h2 {
    font-size: 30px;
  }
}
/* ===============================
   FAQ Section
================================ */

.faq-section {
  padding: 90px 20px;
  background: #f9fafc;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.faq-head p {
  color: #666;
}

/* FAQ Items */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-icon {
  font-size: 22px;
  color: #d90a5b;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-head h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
}
.college-hero {
  padding: 100px 20px;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.college-hero-content {
  max-width: 1100px;
  margin: auto;
}

.college-hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.college-meta {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-top: 20px;
  padding: 0;
}

@media(max-width:768px){
  .college-meta { flex-direction: column; }
  .college-hero h1 { font-size: 32px; }
}


/* ===============================
   Clean College Hero
================================ */

.college-hero-clean {
  padding: 60px 20px;
  background: #ffffff;
}

.college-hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Left */
.college-title {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.college-subinfo {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Approvals */
.college-approvals {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.college-approvals span {
  background: #f1f3f6;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Buttons */
.college-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-main {
  background: #d90a5b;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.btn-main:hover {
  background: #b5084c;
}

.btn-alt {
  border: 2px solid #d90a5b;
  color: #d90a5b;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

/* Right Image */
.college-hero-image img {
  width: 100%;
  border-radius: 14px;
}

/* Sticky CTA */
.college-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d90a5b;
  text-align: center;
  padding: 14px;
  z-index: 999;
}

.college-sticky-bar a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

/* Desktop hide sticky */
@media (min-width: 992px) {
  .college-sticky-bar {
    display: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .college-hero-wrap {
    grid-template-columns: 1fr;
  }

  .college-title {
    font-size: 32px;
  }
}


/* ===============================
   College Overview Section
================================ */

.college-overview-section {
  /* padding: 80px 20px; */
  background: #ffffff;
}

.college-overview-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left content */
.college-overview-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.college-overview-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Right facts box */
.college-overview-facts {
  background: #f9fafc;
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e6e8ec;
}

.fact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.fact-item:last-child {
  margin-bottom: 0;
}

.fact-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.fact-value {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.fact-value a {
  color: #d90a5b;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .college-overview-container {
    grid-template-columns: 1fr;
  }

  .college-overview-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .college-overview-desc {
    font-size: 15px;
  }

  .college-overview-facts {
    padding: 22px;
  }
}

/* ===============================
   Courses Offered - Smart UI
================================ */

.courses-smart-section {
  padding: 60px 20px;
  background: #ffffff;
}

.courses-smart-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.courses-smart-head {
  text-align: center;
  margin-bottom: 50px;
}

.courses-smart-head h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.courses-smart-head p {
  color: #666;
}

/* Card */
.course-smart-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Header */
.course-smart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
}

.course-smart-header h3 {
  font-size: 18px;
}

/* Toggle */
.course-toggle {
  background: none;
  border: none;
  color: #d90a5b;
  font-weight: 600;
  cursor: pointer;
}

/* Body */
.course-smart-body {
  display: none;
  padding: 24px 26px;
  border-top: 1px solid #e5e7eb;
}

/* Info grid */
.course-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-info span {
  font-size: 13px;
  color: #666;
}

.course-info strong {
  font-size: 15px;
}

/* CTA */
.course-action {
  margin-top: 24px;
}

.course-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #d90a5b;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

/* Active */
.course-smart-card.active .course-smart-body {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .course-info {
    grid-template-columns: 1fr;
  }

  .courses-smart-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   Admission Process Section
================================ */

.admission-process-section {
  /* padding: 90px 20px; */
  background: #ffffff;
}

.admission-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.admission-head {
  text-align: center;
  margin-bottom: 60px;
}

.admission-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.admission-head p {
  color: #666;
}

/* Steps wrapper */
.admission-steps {
  position: relative;
}

/* Vertical line */
.admission-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e5e7eb;
}

/* Step */
.admission-step {
  display: flex;
  gap: 30px;
  margin-bottom: 45px;
  position: relative;
}

/* Circle */
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d90a5b;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Content */
.step-content {
  background: #f9fafc;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  flex: 1;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Highlight last step */
.admission-step.highlight .step-circle {
  background: #111827;
}

.admission-step.highlight .step-content {
  border-left: 4px solid #d90a5b;
}

/* Note */
.admission-note {
  margin-top: 40px;
  background: #fff7fa;
  border-left: 4px solid #d90a5b;
  padding: 18px 24px;
  border-radius: 10px;
}

.admission-note p {
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {

  .admission-steps::before {
    display: none;
  }

  .admission-step {
    flex-direction: column;
    gap: 14px;
  }

  .step-circle {
    align-self: flex-start;
  }

  .admission-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   Placements Section
================================ */

.placements-section {
  padding: 70px 20px;
  background: #ffffff;
}

.placements-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.placements-head {
  text-align: center;
  margin-bottom: 50px;
}

.placements-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.placements-head p {
  color: #666;
}

/* Stats */
.placements-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-box {
  background: #f9fafc;
  padding: 28px 20px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #d90a5b;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: #555;
}

/* Recruiters */
.placements-recruiters {
  margin-bottom: 50px;
}

.placements-recruiters h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.recruiter-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.recruiter-logos span {
  padding: 10px 18px;
  background: #f1f3f6;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

/* Internship */
.placements-internship h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.placements-internship p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.placements-internship ul {
  padding-left: 18px;
}

.placements-internship li {
  margin-bottom: 8px;
}

/* Note */
.placements-note {
  margin-top: 40px;
  background: #f9fafc;
  padding: 16px;
  border-left: 4px solid #d90a5b;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .placements-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .placements-stats {
    grid-template-columns: 1fr;
  }

  .placements-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   Campus Facilities Section
================================ */

.campus-facilities-section {
  padding: 1px 20px;
  background: #ffffff;
}

.campus-facilities-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.campus-facilities-head {
  text-align: center;
  margin-bottom: 60px;
}

.campus-facilities-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.campus-facilities-head p {
  color: #666;
  max-width: 720px;
  margin: auto;
  font-size: 16px;
}

/* Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.facility-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.facility-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* Text */
.facility-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-facilities-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    padding: 30px 20px;
  }
}

/* ===============================
   Location - Friendly UI
================================ */

.location-friendly-section {
  padding: 50px 20px;
  background: #ffffff;
}

.location-friendly-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.location-friendly-head {
  text-align: center;
  margin-bottom: 40px;
}

.location-friendly-head h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.location-friendly-head p {
  color: #666;
}

/* Map */
.location-map-box {
  margin-bottom: 50px;
}

.location-map-box iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Info cards */
.location-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.location-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.location-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.location-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.location-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .location-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .location-info-cards {
    grid-template-columns: 1fr;
  }

  .location-map-box iframe {
    height: 300px;
  }

  .location-friendly-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   College FAQ Section
================================ */

.college-faq-section {
  /* padding: 90px 20px; */
  background: #ffffff;
}

.college-faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.college-faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.college-faq-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.college-faq-head p {
  color: #666;
}

/* FAQ Item */
.college-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

/* Question */
.college-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: #f9fafc;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Toggle */
.faq-toggle {
  font-size: 22px;
  font-weight: 700;
  color: #d90a5b;
  transition: transform 0.3s;
}

/* Answer */
.college-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.college-faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Active */
.college-faq-item.active .college-faq-answer {
  max-height: 300px;
}

.college-faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .college-faq-head h2 {
    font-size: 28px;
  }

  .college-faq-question {
    font-size: 15px;
    padding: 18px 20px;
  }
}

/* ===============================
   Soft Final CTA (2 Buttons)
================================ */

.cta-soft-section {
  padding: 60px 20px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.cta-soft-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-soft-container h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.cta-soft-container p {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Buttons */
.cta-soft-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-soft-btn {
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

/* Primary */
.cta-soft-btn.primary {
  background: #d90a5b;
  color: #ffffff;
}

.cta-soft-btn.primary:hover {
  background: #b5084c;
}

/* Secondary */
.cta-soft-btn.secondary {
  border: 1.5px solid #d90a5b;
  color: #d90a5b;
}

.cta-soft-btn.secondary:hover {
  background: #fce8f1;
}

/* Responsive */
@media (max-width: 600px) {
  .cta-soft-btn {
    width: 100%;
    max-width: 280px;
  }

  .cta-soft-container h2 {
    font-size: 23px;
  }
}


/* ===============================
   College Detail Page Header
================================ */

.college-detail-header {
  background: #f1ebee;
  border-bottom: 1px solid #e5e7eb;
  padding: 30px 20px 36px;
}

.college-detail-container {
  max-width: 1200px;
  margin: auto;
}

/* Breadcrumb */
.college-breadcrumb {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.college-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.college-breadcrumb .active {
  color: #999;
}

/* Title */
.college-detail-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* Meta */
.college-detail-meta {
  font-size: 14px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .college-detail-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .college-detail-title {
    font-size: 22px;
  }

  .college-detail-meta {
    font-size: 13px;
  }
}


/* ===============================
   Courses Hero - Friendly
================================ */

.courses-hero-friendly {
  padding: 70px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.courses-hero-wrap {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

/* Heading */
.courses-hero-wrap h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

/* Text */
.courses-hero-wrap p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Search */
.courses-search-area {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.courses-search-area input {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
}

.courses-search-area button {
  padding: 14px 22px;
  background: #d90a5b;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* CTA link */
.courses-help-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #d90a5b;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  .courses-hero-wrap h1 {
    font-size: 26px;
  }

  .courses-search-area {
    flex-direction: column;
  }

  .courses-search-area button {
    width: 100%;
  }
}


/* ===============================
   Course Streams Section
================================ */

.course-streams-section {
  padding: 90px 20px;
  background: #ffffff;
}

.course-streams-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.course-streams-head {
  text-align: center;
  margin-bottom: 60px;
}

.course-streams-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.course-streams-head p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* Grid */
.streams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.stream-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.35s ease;
}

.stream-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.stream-icon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* Text */
.stream-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.stream-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* Button */
.stream-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #d90a5b;
  color: #ffffff;
}

.stream-btn:hover {
  background: #b5084c;
}

/* Responsive */
@media (max-width: 1024px) {
  .streams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .streams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-streams-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .streams-grid {
    grid-template-columns: 1fr;
  }

  .stream-card {
    padding: 30px 20px;
  }
}


/* ===============================
   Course Selector Section
================================ */

.course-selector-section {
  padding: 90px 20px;
  background: #ffffff;
}

.course-selector-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.course-selector-head {
  text-align: center;
  margin-bottom: 50px;
}

.course-selector-head h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.course-selector-head p {
  color: #666;
}

/* Layout */
.course-selector {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Left list */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-item {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

.course-item.active {
  background: #d90a5b;
  color: #ffffff;
  border-color: #d90a5b;
}

/* Right details */
.course-details {
  background: #f9fafc;
  padding: 32px;
  border-radius: 14px;
}

.course-detail {
  display: none;
}

.course-detail.active {
  display: block;
}

.course-detail h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.course-detail ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.course-detail li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #555;
}

.course-detail-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #d90a5b;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive (Mobile = Accordion Feel) */
@media (max-width: 900px) {
  .course-selector {
    grid-template-columns: 1fr;
  }

  .course-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .course-item {
    white-space: nowrap;
  }
}
/* ===============================
   Courses by Education Stage
================================ */

.edu-stage-section {
  padding: 90px 20px;
  background: #ffffff;
}

.edu-stage-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.edu-stage-head {
  text-align: center;
  margin-bottom: 40px;
}

.edu-stage-head h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.edu-stage-head p {
  color: #666;
}

/* Tabs */
.edu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.edu-tab {
  padding: 10px 22px;
  border: 1.5px solid #d90a5b;
  background: #ffffff;
  color: #d90a5b;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

.edu-tab.active {
  background: #d90a5b;
  color: #ffffff;
}

/* Content */
.edu-tab-content {
  max-width: 900px;
  margin: auto;
}

.edu-content {
  display: none;
}

.edu-content.active {
  display: block;
}

/* Box */
.edu-box {
  background: #f9fafc;
  padding: 28px 26px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.edu-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.edu-box ul {
  padding-left: 18px;
}

.edu-box li {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .edu-stage-head h2 {
    font-size: 28px;
  }

  .edu-tabs {
    justify-content: center;
  }
}


/* ===============================
   Course Snapshot Section
================================ */

.course-snapshot-section {
  padding: 90px 20px;
  background: #ffffff;
}

.course-snapshot-container {
  max-width: 1100px;
  margin: auto;
}

/* Heading */
.course-snapshot-head {
  text-align: center;
  margin-bottom: 60px;
}

.course-snapshot-head h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.course-snapshot-head p {
  font-size: 16px;
  color: #666;
}

/* Snapshot */
.course-snapshot {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
}

.course-snapshot:last-child {
  border-bottom: none;
}

/* Left */
.snapshot-left h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.snapshot-tag {
  font-size: 13px;
  color: #d90a5b;
  font-weight: 700;
}

/* Right */
.snapshot-overview {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.snapshot-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.snapshot-points span {
  background: #f1f3f6;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
}

/* CTA */
.snapshot-cta {
  display: inline-block;
  padding: 10px 22px;
  background: #d90a5b;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .course-snapshot {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .course-snapshot-head h2 {
    font-size: 28px;
  }
}


/* ===============================
   Career Outcome Section
================================ */

.career-outcome-section {
  padding: 90px 20px;
  background: #ffffff;
}

.career-outcome-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.career-outcome-head {
  text-align: center;
  margin-bottom: 60px;
}

.career-outcome-head h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.career-outcome-head p {
  font-size: 16px;
  color: #666;
}

/* Grid */
.career-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Card */
.career-outcome-card {
  background: #f9fafc;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Header */
.outcome-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.outcome-icon {
  font-size: 36px;
}

.outcome-header h3 {
  font-size: 20px;
}

/* Body */
.outcome-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.outcome-block h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.outcome-block ul {
  padding-left: 18px;
}

.outcome-block li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .career-outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .career-outcome-head h2 {
    font-size: 28px;
  }
}

/* ===============================
   FAQ Section
================================ */

.faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-head h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.faq-head p {
  font-size: 16px;
  color: #666;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #d90a5b;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-head h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }
}
