/* ===== INNER HERO / PAGE BANNER ===== */

.inner-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/classes-banner.jpg") center/cover no-repeat;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.inner-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 0 20px;
}

.inner-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
}

.inner-hero-content p {
  font-size: 18px;
  margin-bottom: 18px;
  opacity: 0.95;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
}

.breadcrumb a {
  color: #19b5e5;
  text-decoration: none;
}

.breadcrumb span {
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inner-hero {
    height: 240px;
  }

  .inner-hero-content h1 {
    font-size: 32px;
  }

  .inner-hero-content p {
    font-size: 15.5px;
  }
}

.inner-hero {
  position: relative;
  height: 320px;
  background: url("../images/classes-banner.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Dark overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.inner-hero p {
  font-size: 18px;
}

.breadcrumb {
  margin-top: 12px;
  font-size: 14px;
}

.breadcrumb a {
  color: #ffd700;
  text-decoration: none;
}

.overview-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35);
}

.overview-box:hover i {
  color: #0fa3d1;
}
/* ===== CLASSES OVERVIEW ===== */

.classes-overview {
  padding: 70px 0;
  background: #f9fbff;
}

.overview-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.overview-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1b1b1b;
}

.overview-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-box {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.overview-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35); /* BLUE hover */
}

.overview-box i {
  font-size: 40px;
  color: #19b5e5;
  margin-bottom: 18px;
}

.overview-box:hover i {
  color: #0fa3d1;
}

.overview-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.overview-box p {
  font-size: 15.5px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CLASSES LISTING ===== */

.classes-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 40px;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.class-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.class-card:hover {
  transform: translateY(-6px);
  border: 1px solid #19b5e5; /* BLUE border */
}

.class-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.class-card p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #555;
}

.class-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #b51f1f;   /* THEME RED */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.class-btn:hover {
  background: #19b5e5;   /* INDEX BLUE */
}


.subjects-section {
  padding: 60px 0;
  background: #ffffff;
}

.accordion {
  max-width: 800px;
  margin: auto;
}

.accordion-item {
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* HEADER */
.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: #b51f1f;        /* theme RED */
  color: #fff;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* HOVER = INDEX BLUE */
.accordion-header:hover {
  background: #19b5e5;        /* theme BLUE */
}

/* BODY */
.accordion-body {
  display: none;
  padding: 18px 20px;
  background: #fff;
  font-size: 15px;
  color: #444;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-body {
  display: block;
}


/* ===== BATCH TIMING & SCHEDULE ===== */

.batch-section {
  padding: 70px 0;
  background: #ffffff;
}

.batch-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.batch-card {
  background: #f9fbfd;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.batch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35);
}

.batch-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #b51f1f;   /* THEME RED */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
}

.batch-card:hover .batch-icon {
  background: #19b5e5;   /* INDEX BLUE */
}

.batch-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1b1b1b;
}

.batch-card p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .batch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .batch-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TEACHING METHODOLOGY ===== */

.methodology-section {
  padding: 70px 0;
  background: #f9fbff;
}

.methodology-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.method-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(25,181,229,0.35);
}

.method-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #b51f1f;   /* THEME RED */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s;
}

.method-card:hover .method-icon {
  background: #19b5e5;   /* INDEX BLUE */
}

.method-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1b1b1b;
}

.method-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESULTS & SUCCESS STORIES ===== */

.results-success {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9fbff, #ffffff);
}

.results-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.success-stats h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #1b1b1b;
}

.success-percentage {
  margin-bottom: 25px;
}

.success-percentage span {
  font-size: 64px;
  font-weight: 800;
  color: #b51f1f; /* theme red */
}

.success-percentage p {
  font-size: 16px;
  color: #555;
}

.success-points {
  padding-left: 18px;
  color: #444;
}

.success-points li {
  margin-bottom: 10px;
}

/* RIGHT */
.class-results h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.result-row {
  margin-bottom: 22px;
}

.result-row span {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.progress {
  height: 10px;
  background: #eaeaea;
  border-radius: 20px;
  overflow: hidden;
}

.progress div {
  height: 100%;
  background: linear-gradient(135deg, #19b5e5, #0fa3d1);
  border-radius: 20px;
}

.result-row small {
  font-size: 13px;
  color: #777;
}

/* TOPPERS STRIP */
.toppers-strip {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.toppers-strip h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.toppers-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.toppers-names span {
  background: #f1f6fb;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .results-top {
    grid-template-columns: 1fr;
  }

  .success-stats h2 {
    font-size: 30px;
  }
}

/* ===== WHY CHOOSE OUR CLASSES (STEPS DESIGN) ===== */

.why-choose-steps {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffffff, #f9fbff);
}

.steps-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.step-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 45px;
  position: relative;
}

.step-item::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 70px;
  width: 2px;
  height: calc(100% - 40px);
  background: #e6e6e6;
}

.step-item:last-child::before {
  display: none;
}

/* NUMBER */
.step-number {
  min-width: 65px;
  height: 65px;
  background: #b51f1f; /* theme red */
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* CONTENT */
.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b1b1b;
}

.step-content p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.step-item:hover .step-number {
  background: #19b5e5; /* index blue */
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .step-item {
    gap: 20px;
  }

  .step-number {
    min-width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .step-item::before {
    left: 27px;
  }
}


/* ===== FEES STRUCTURE ===== */

.fees-section {
  padding: 90px 20px;
  background: #ffffff;
}

/* TABLE */
.fees-table-wrapper {
  max-width: 900px;
  margin: 50px auto 40px;
  overflow-x: auto;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}

.fees-table thead {
  background: #b51f1f; /* theme red */
  color: #fff;
}

.fees-table th,
.fees-table td {
  padding: 16px 18px;
  text-align: left;
}

.fees-table tbody tr {
  border-bottom: 1px solid #eee;
}

.fees-table tbody tr:hover {
  background: #f1f6fb; /* soft blue hover */
}

.fees-table td:last-child {
  font-weight: 600;
  color: #19b5e5; /* index blue */
}

/* INFO STRIP */
.fees-info-strip {
  max-width: 900px;
  margin: auto;
  padding: 25px 30px;
  background: linear-gradient(135deg, #f9fbff, #ffffff);
  border-left: 5px solid #19b5e5;
}

.fees-info-strip h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1b1b1b;
}

.fees-info-strip p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .fees-table th,
  .fees-table td {
    padding: 12px;
    font-size: 14px;
  }
}

/* ===== FREE DEMO / COUNSELING ===== */

.demo-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #b51f1f, #8e1515); /* theme red */
  color: #fff;
}

.demo-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.demo-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.demo-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.demo-benefits {
  list-style: none;
  padding: 0;
}

.demo-benefits li {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.demo-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19b5e5; /* index blue */
  font-weight: bold;
}

/* RIGHT CTA */
.demo-cta {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 40px 30px;
  border-radius: 16px;
}

.demo-btn {
  display: inline-block;
  background: #19b5e5; /* index blue */
  color: #fff;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.demo-btn:hover {
  background: #ffffff;
  color: #b51f1f;
}

.demo-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .demo-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .demo-benefits li {
    padding-left: 0;
  }

  .demo-benefits li::before {
    position: static;
    margin-right: 8px;
  }
}

/* ===== FAQ SECTION ===== */

.faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 17px;
  font-weight: 600;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  color: #19b5e5;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

/* ===== ENQUIRY / CONTACT CTA ===== */

.enquiry-cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9fbff, #ffffff);
}

/* WRAPPER */
.enquiry-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* FORM */
.enquiry-form-box {
  background: #ffffff;
  padding: 40px 35px;
  border-left: 6px solid #b51f1f; /* theme red */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.enquiry-form-box h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.enquiry-form-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.enquiry-form button {
  width: 100%;
  background: #b51f1f;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.enquiry-form button:hover {
  background: #19b5e5;
}

/* ACTIONS */
.enquiry-actions {
  background: #f9fbfd;
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
}

.enquiry-actions h4 {
  font-size: 22px;
  margin-bottom: 25px;
}

.action-btn {
  display: block;
  padding: 14px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.call-btn {
  background: #19b5e5;
  color: #fff;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.action-note {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
}

/* MAP */
.enquiry-map {
  max-width: 1100px;
  margin: 50px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.enquiry-map iframe {
  width: 100%;
  height: 260px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }
}
