.sticky-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

/* Colors */
.contact-btn.call {
  background: #007bff;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.email {
  background: #ff4d4d;
}

/* Hover Effect */
.contact-btn:hover {
  transform: scale(1.1);
}

/* Pulse Animation */
.contact-btn.call {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}


.school-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.school-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #3498db;
}

.card-title {
  font-size: 22px;
  margin: 15px 20px 10px;
  color: #2c3e50;
  position: relative;
}

.card-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  margin-top: 6px;
  border-radius: 2px;
}

.card-quote {
  font-style: italic;
  color: #34495e;
  font-weight: 500;
  margin: 0 20px 10px;
}

.card-text {
  font-size: 16px;
  line-height: 28px;
  padding: 0 20px 20px 20px;
}

.academics-section {
  padding: 60px 0;
  background: #f5f8ff;
}

.section-heading {
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: #97053b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 15px;
}

.section-description {
  max-width: 750px;
  margin: auto;
  color: #666;
  line-height: 1.8;
}

.academic-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.academic-card::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 0;
  background: linear-gradient(to bottom, #97053b, #3b82f6);
  left: 0;
  top: 0;
  transition: all 0.5s ease;
}

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

.academic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.15);
}

.academic-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1c39;
}

.academic-card p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 0;
}

.curriculum-box {
  background: #f8fbff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #e8eefc;
}

.curriculum-box:hover {
  background: #97053b;
  transform: translateY(-10px);
}

.curriculum-box h4 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #0b1c39;
  transition: all 0.4s ease;
}

.curriculum-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-box ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: #555;
  transition: all 0.4s ease;
}

.curriculum-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #97053b;
  font-weight: bold;
  transition: all 0.4s ease;
}

.curriculum-box:hover h4,
.curriculum-box:hover ul li,
.curriculum-box:hover ul li::before {
  color: #ffffff;
}

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.subject-item {
  background: #f8fbff;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 1px solid #e8eefc;
}

.subject-item:hover {
  background: #97053b;
  transform: scale(1.05);
}

.subject-item h5 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0b1c39;
  transition: all 0.4s ease;
}

.subject-item p {
  color: #666;
  margin: 0;
  transition: all 0.4s ease;
}

.subject-item:hover h5,
.subject-item:hover p {
  color: #ffffff;
}

.methodology-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.methodology-list span {
  background: #eef4ff;
  color: #2c3e50;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.methodology-list span:hover {
  background: #97053b;
  color: #ffffff;
  transform: translateY(-5px);
}

.assessment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 25px;
}

.assessment-grid div {
  background: #f8fbff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: #0b1c39;
  transition: all 0.4s ease;
  border: 1px solid #e8eefc;
}

.assessment-grid div:hover {
  background: #97053b;
  color: #ffffff;
  transform: translateY(-8px);
}

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

  .academic-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .academics-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .academic-card h3 {
    font-size: 24px;
  }
}

/* =========================================
   SCHOOL TIMING SECTION
========================================= */

.school-timing-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef7ff, #f3fff8);
  position: relative;
  overflow: hidden;
}

.school-timing-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(80px);
}

.school-timing-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 200, 150, 0.08);
  border-radius: 50%;
  bottom: -180px;
  right: -120px;
  filter: blur(80px);
}

/* Wrapper */
.timing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.timing-subtitle {
  display: inline-block;
  color: #009688;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.timing-title {
  font-size: 48px;
  font-weight: 800;
  color: #071c2f;
  margin-bottom: 25px;
}

.timing-description {
  color: #555;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 20px;
}

/* Timing Grid */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Timing Card */
.timing-card {
  background: linear-gradient(135deg, #071c2f, #123524);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.timing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 255, 200, 0.15),
      rgba(0, 123, 255, 0.15));
  opacity: 0;
  transition: all 0.5s ease;
}

.timing-card:hover::before {
  opacity: 1;
}

.timing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

/* Icon */
.timing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.timing-icon i {
  font-size: 32px;
  color: #00ffcc;
  transition: all 0.5s ease;
}

.timing-card:hover .timing-icon {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0.15);
}

.timing-card:hover .timing-icon i {
  transform: rotateY(180deg);
}

/* Text */
.timing-card h4 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.timing-card p {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {

  .timing-wrapper {
    grid-template-columns: 1fr;
  }

  .timing-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {

  .school-timing-section {
    padding: 70px 0;
  }

  .timing-title {
    font-size: 30px;
  }

  .timing-grid {
    grid-template-columns: 1fr;
  }

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

/* =========================================
   ADMISSION SECTION
========================================= */

.admission-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef7ff, #f4fff8);
  position: relative;
  overflow: hidden;
}

.admission-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(80px);
}

.admission-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(0, 200, 150, 0.08);
  border-radius: 50%;
  bottom: -160px;
  right: -100px;
  filter: blur(80px);
}

/* Heading */
.admission-heading {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.admission-subtitle {
  color: #009688;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.admission-title {
  font-size: 48px;
  font-weight: 800;
  color: #071c2f;
  margin-bottom: 20px;
}

.admission-description {
  max-width: 760px;
  margin: auto;
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

/* Cards */
.admission-card {
  background: linear-gradient(135deg, #071c2f, #123524);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.admission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 255, 200, 0.12),
      rgba(0, 123, 255, 0.12));
  opacity: 0;
  transition: all 0.5s ease;
}

.admission-card:hover::before {
  opacity: 1;
}

.admission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.admission-card * {
  position: relative;
  z-index: 2;
}

/* Icon */
.admission-icon {
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.admission-icon i {
  font-size: 34px;
  color: #00ffcc;
  transition: all 0.5s ease;
}

.admission-card:hover .admission-icon {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0.15);
}

.admission-card:hover .admission-icon i {
  transform: rotateY(180deg);
}

/* Text */
.admission-card h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.admission-card p,
.admission-card li {
  color: #ffffff;
  line-height: 1.9;
}

.admission-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.admission-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.admission-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ffcc;
  font-weight: bold;
}

/* Procedure Steps */
.procedure-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.step-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.step-box span {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d9a6, #007bff);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 18px;
  font-size: 22px;
  font-weight: 700;
}

/* Withdrawal */
.withdraw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.withdraw-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
}

.withdraw-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.withdraw-box i {
  font-size: 34px;
  color: #00ffcc;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991px) {

  .admission-title {
    font-size: 38px;
  }

  .admission-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {

  .admission-section {
    padding: 70px 0;
  }

  .admission-title {
    font-size: 30px;
  }

  .admission-card h3 {
    font-size: 24px;
  }
}

/* =========================================
   DISCIPLINE SECTION
========================================= */

.discipline-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef7ff, #f4fff8);
  position: relative;
  overflow: hidden;
}

.discipline-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(80px);
}

.discipline-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(0, 200, 150, 0.08);
  border-radius: 50%;
  bottom: -180px;
  right: -120px;
  filter: blur(80px);
}

/* Heading */
.discipline-heading {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.discipline-subtitle {
  color: #009688;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.discipline-title {
  font-size: 48px;
  font-weight: 800;
  color: #071c2f;
  margin-bottom: 20px;
}

.discipline-description {
  max-width: 760px;
  margin: auto;
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

/* Cards */
.discipline-card {
  background: linear-gradient(135deg, #071c2f, #123524);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.discipline-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Image */
.discipline-image {
  overflow: hidden;
  height: 460px;
}

.discipline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.discipline-card:hover .discipline-image img {
  transform: scale(1.08);
}

/* Content */
.discipline-content {
  padding: 30px;
  position: relative;
}

.discipline-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -70px;
  margin-bottom: 20px;
  border: 5px solid #071c2f;
  position: relative;
  z-index: 2;
}

.discipline-icon i {
  font-size: 30px;
  color: #00ffcc;
}

.discipline-content h3 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.discipline-content p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 0;
}

/* Commitment Box */
.commitment-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 30px 30px;
  background: url('../img/school-bg.jpg') center/cover no-repeat;
  text-align: center;
}

.commitment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 28, 47, 0.9),
      rgba(18, 53, 36, 0.88));
}

.commitment-content {
  position: relative;
  z-index: 2;
}

.commitment-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #00ffcc;
  border-radius: 50px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.commitment-content h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
}

.commitment-content p {
  max-width: 850px;
  margin: auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {

  .discipline-title,
  .commitment-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {

  .discipline-section {
    padding: 50px 0;
  }

  .discipline-title,
  .commitment-content h2 {
    font-size: 28px;
  }

  .discipline-content {
    padding: 25px;
  }

  .commitment-box {
    padding: 70px 25px;
  }
}

/* =========================================
   FEE STRUCTURE CARD
========================================= */

.fee-structure-card {
  background: linear-gradient(135deg, #071c2f, #123524);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.fee-structure-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
}

/* Image */
.fee-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.fee-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.fee-structure-card:hover .fee-card-image img {
  transform: scale(1.08);
}

/* Shine Effect */
.fee-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: all 0.8s ease;
  z-index: 2;
}

.fee-structure-card:hover .fee-card-image::before {
  left: 130%;
}

/* Content */
.fee-card-content {
  padding: 40px;
  position: relative;
  z-index: 2;
}

/* Icon */
.fee-icon {
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}

.fee-icon i {
  font-size: 34px;
  color: #00ffcc;
}

.fee-structure-card:hover .fee-icon {
  transform: rotateY(180deg);
}

/* Title */
.fee-card-content h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.fee-description {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 35px;
}

/* Installment Boxes */
.installment-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.installment-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.installment-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 255, 204, 0.12),
      rgba(0, 123, 255, 0.12));
  opacity: 0;
  transition: all 0.5s ease;
}

.installment-box:hover::before {
  opacity: 1;
}

.installment-box:hover {
  transform: translateY(-10px);
}

.installment-box * {
  position: relative;
  z-index: 2;
}

/* Number */
.installment-number {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #00d9a6, #007bff);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 18px;
  font-size: 24px;
  font-weight: 700;
}

.installment-box h5 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
}

.installment-box p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

/* Points */
.fee-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-points li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.9;
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}

.fee-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ffcc;
  font-size: 18px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {

  .fee-card-content {
    padding: 28px;
  }

  .fee-card-content h3 {
    font-size: 26px;
  }

  .installment-wrapper {
    grid-template-columns: 1fr;
  }

  .fee-card-image {
    height: 220px;
  }
}

/* =========================================
   CO-CURRICULAR SECTION
========================================= */

.cocurricular-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #eef7ff, #f4fff8);
  position: relative;
  overflow: hidden;
}

/* Heading */
.cocurricular-heading {
  margin-bottom: 70px;
}

.cocurricular-subtitle {
  color: #009688;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.cocurricular-title {
  font-size: 48px;
  font-weight: 800;
  color: #071c2f;
  margin-bottom: 20px;
}

.cocurricular-description {
  max-width: 760px;
  margin: auto;
  color: #555;
  line-height: 1.9;
  font-size: 17px;
}

/* Activity Card */
.activity-card {
  background: linear-gradient(135deg, #071c2f, #123524);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.5s ease;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
}

/* Image */
.activity-image {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.08);
}

/* Content */
.activity-content {
  padding: 40px;
}

/* Icon */
.activity-icon {
  width: 85px;
  height: 85px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  margin-bottom: 25px;
  border: 5px solid #071c2f;
  position: relative;
  z-index: 2;
}

.activity-icon i {
  font-size: 34px;
  color: #00ffcc;
}

/* Title */
.activity-content h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-item {
  display: flex;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 18px;
  transition: all 0.5s ease;
}

.activity-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.12);
}

.activity-item span {
  font-size: 30px;
}

.activity-item h5 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.activity-item p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Competition Grid */
.competition-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.competition-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
}

.competition-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
}

.competition-box i {
  font-size: 34px;
  color: #00ffcc;
  margin-bottom: 18px;
}

.competition-box h5 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

.competition-box p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Bottom Note */
.activity-note {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  border-left: 4px solid #00ffcc;
  padding-left: 20px;
}

.discipline-text h3 {
  color: #ffe900;
}

.discipline-text p {
  color: #ffffff;
}

.discipline-text {
  padding: 25px;
}

.amala-academics-area {
  padding: 60px 0;
  background: #f6f9ff;
}

.amala-academics-heading {
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.amala-tagline {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: #e7f0ff;
  color: #970a3e;
  font-weight: 600;
  margin-bottom: 15px;
}

.amala-main-title {
  font-size: 46px;
  font-weight: 800;
  color: #0b2239;
  margin-bottom: 20px;
}

.amala-main-description {
  color: #666;
  line-height: 1.9;
}

.amala-academic-block,
.amala-digital-learning,
.amala-methodology-box {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.amala-academic-image img,
.amala-digital-image img,
.amala-method-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.amala-academic-content,
.amala-digital-content,
.amala-method-content {
  padding: 50px;
}

.amala-academic-content span,
.amala-digital-content span,
.amala-method-content span {
  display: inline-block;
  color: #970a3e;
  font-weight: 700;
  margin-bottom: 15px;
}

.amala-academic-content h3,
.amala-digital-content h3,
.amala-method-content h3 {
  font-size: 34px;
  font-weight: 700;
  color: #0b2239;
  margin-bottom: 20px;
}

.amala-academic-content p,
.amala-digital-content p {
  color: #666;
  line-height: 1.9;
}

.amala-curriculum-section,
.amala-subjects-wrapper,
.amala-assessment-section {
  margin-bottom: 50px;
}

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

.amala-section-header h3 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2239;
}

.amala-curriculum-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.amala-curriculum-card:hover,
.amala-subject-card:hover {
  transform: translateY(-8px);
}

.amala-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.amala-card-content {
  padding: 30px;
}

.amala-card-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b2239;
}

.amala-card-content ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.amala-card-content ul li {
  margin-bottom: 12px;
  color: #666;
  line-height: 1.7;
}

.amala-subject-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  height: 100%;
}

.amala-subject-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.amala-subject-content {
  padding: 25px;
}

.amala-subject-content h5 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0b2239;
}

.amala-subject-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.amala-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.amala-method-tags span {
  background: #edf4ff;
  color: #970a3e;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}

.amala-assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.amala-assessment-item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
  color: #0b2239;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.amala-assessment-item:hover {
  transform: translateY(-5px);
  background: #970a3e;
  color: #fff;
}
.amala-fees-area {
    padding: 60px 0;
    background: #f7faff;
}

.amala-fees-heading {
    max-width: 760px;
    margin: auto;
    margin-bottom: 60px;
}

.amala-fees-subtitle {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: #e9f1ff;
    color: #970a3e;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.amala-fees-title {
    font-size: 46px;
    font-weight: 800;
    color: #0b2239;
    margin-bottom: 20px;
}

.amala-fees-description {
    color: #666;
    line-height: 1.9;
}

.amala-fees-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.amala-fees-image img {
    width: 100%;
    height: 100%;
    min-height: 780px;
    object-fit: cover;
}

.amala-fees-content {
    padding: 55px;
}

.amala-fees-tag {
    display: inline-block;
    color: #970a3e;
    font-weight: 700;
    margin-bottom: 15px;
}

.amala-fees-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 20px;
}

.amala-fees-content p {
    color: #666;
    line-height: 1.9;
}

.amala-installment-grid {
    margin-top: 35px;
    display: grid;
    gap: 25px;
}

.amala-installment-card {
    display: flex;
    align-items: center;
    background: #f8fbff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
}

.amala-installment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.amala-installment-image {
    width: 180px;
    flex-shrink: 0;
}

.amala-installment-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.amala-installment-info {
    padding: 25px 30px;
}

.amala-installment-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #970a3e;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.amala-installment-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: #0b2239;
    margin-bottom: 10px;
}

.amala-installment-info p {
    margin-bottom: 0;
}

.amala-policy-wrapper {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.amala-policy-box {
    background: #f8fbff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: 0.4s;
}

.amala-policy-box:hover {
    transform: translateY(-5px);
    background: #970a3e;
}

.amala-policy-box:hover p {
    color: #fff;
}

.amala-policy-box img {
    width: 65px;
    margin-bottom: 18px;
}

.amala-policy-box p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.8;
    transition: 0.4s;
}
/*=================================
Fees Section
=================================*/
.edu-fees-area {
    position: relative;
    padding: 60px 0;
    background: #f5f9ff;
    overflow: hidden;
}

.edu-fees-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.edu-fees-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #970a3e;
    background: rgba(13, 110, 253, 0.12);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.edu-fees-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 18px;
}

.edu-fees-title span {
    color: #970a3e;
}

.edu-fees-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* Card */
.edu-fees-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.edu-fees-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(13, 110, 253, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Top */
.edu-fees-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.edu-fees-icon {
    width: 80px;
    height: 80px;
    background: #970a3e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.edu-fees-icon img {
    width: 42px;
}

.edu-fees-top h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.edu-fees-top p {
    color: #64748b;
    line-height: 1.8;
}

/* Installments */
.edu-installment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.edu-installment-item {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 28px 20px;
    text-align: center;
    transition: 0.4s ease;
}

.edu-installment-item:hover {
    transform: translateY(-8px);
    background: #970a3e;
}

.edu-installment-item:hover h5,
.edu-installment-item:hover p {
    color: #fff;
}

.edu-installment-no {
    width: 58px;
    height: 58px;
    background: #970a3e;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 18px;
}

.edu-installment-item:hover .edu-installment-no {
    background: #fff;
    color: #970a3e;
}

.edu-installment-item h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    transition: 0.3s;
}

.edu-installment-item p {
    margin: 0;
    color: #64748b;
    transition: 0.3s;
}

/* Notes */
.edu-fees-notes {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.edu-fees-note {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f8fbff;
    padding: 18px 22px;
    border-radius: 16px;
}

.edu-fees-note i {
    color: #970a3e;
    font-size: 18px;
    margin-top: 4px;
}

.edu-fees-note span {
    color: #475569;
    line-height: 1.7;
}

/* Image */
.edu-fees-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 620px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.edu-fees-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge */
.edu-image-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(255,255,255,0.95);
    padding: 22px 28px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.edu-image-badge h4 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.edu-image-badge p {
    margin: 0;
    color: #64748b;
}

.main-slider-one__item {
    position: relative;
    overflow: hidden;
}

.main-slider-one__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .main-slider-one__img {
        /* height: 600px; */
    }
}

@media (max-width: 767px) {
    .main-slider-one__img {
        /* height: 450px; */
    }
}
/* Responsive */
@media (max-width: 991px) {

    .edu-fees-title {
        font-size: 34px;
    }

    .edu-installment-grid {
        grid-template-columns: 1fr;
    }

    .edu-fees-image {
        min-height: 450px;
    }
}

@media (max-width: 575px) {

    .edu-fees-area {
        padding: 70px 0;
    }

    .edu-fees-card {
        padding: 25px;
    }

    .edu-fees-top {
        flex-direction: column;
    }

    .edu-fees-title {
        font-size: 28px;
    }

    .edu-fees-top h3 {
        font-size: 24px;
    }

    .edu-image-badge {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
@media (max-width: 991px) {

    .amala-fees-image img {
        min-height: 350px;
    }

    .amala-fees-content {
        padding: 35px;
    }

    .amala-fees-title {
        font-size: 34px;
    }

    .amala-fees-content h3 {
        font-size: 30px;
    }

    .amala-policy-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .amala-fees-title {
        font-size: 28px;
    }

    .amala-installment-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .amala-installment-image {
        width: 100%;
    }

    .amala-installment-image img {
        height: 220px;
    }

    .amala-policy-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

  .amala-main-title,
  .amala-section-header h3,
  .amala-academic-content h3,
  .amala-digital-content h3,
  .amala-method-content h3 {
    font-size: 32px;
  }

  .amala-academic-content,
  .amala-digital-content,
  .amala-method-content {
    padding: 35px;
  }

  .amala-assessment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .amala-main-title {
    font-size: 28px;
  }

  .amala-assessment-grid {
    grid-template-columns: 1fr;
  }

  .amala-academic-image img,
  .amala-digital-image img,
  .amala-method-image img {
    min-height: 280px;
  }
}

/* Responsive */
@media (max-width: 991px) {

  .competition-grid {
    grid-template-columns: 1fr;
  }

  .cocurricular-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {

  .cocurricular-section {
    padding: 50px 0;
  }

  .activity-content {
    padding: 28px;
  }

  .activity-content h3 {
    font-size: 26px;
  }

  .cocurricular-title {
    font-size: 30px;
  }

  .activity-image {
    height: 220px;
  }
}