.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);
  }
}

/* CARD BASE */
.course-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* HOVER EFFECT */
.course-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* ICON */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  font-size: 22px;
  transition: 0.4s ease;
}

/* ICON ANIMATION */
.course-card:hover .icon-box {
  transform: rotateY(180deg) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

/* TITLE */
.course-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

/* TEXT */
.course-card p {
  color: #fff;
}

/* STREAMS TEXT */
.streams p {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* LIGHT SWEEP EFFECT */
.course-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: rotate(25deg);
  transition: 0.5s;
}

.course-card:hover::before {
  transform: rotate(0deg) scale(1.3);
  opacity: 0.8;
}

/* GRADIENT COLORS */
/* 🌿 KG - Soft & Child Friendly (Light Green + Sky) */
.card-1 {
  background: linear-gradient(135deg, #00784c, #4c7806);
}

/* 📘 Primary - Calm Blue Education Theme */
.card-2 {
  background: linear-gradient(135deg, #003e77, #095a9d);
}

/* 📚 Middle - Academic Purple Calm */
.card-3 {
  background: linear-gradient(135deg, #1e0186, #16016b);
}

/* 🧠 Secondary - Focus Orange Soft */
.card-4 {
  background: linear-gradient(135deg, #783102, #660601);
}

/* 🎓 Higher Secondary - Professional Navy Blue */
.card-5 {
  background: linear-gradient(135deg, #011650, #01235a);
  color: #fff;
}

.admission-section {
  background: #f5f9ff;
}

/* CARD */
.admission-card {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  overflow: hidden;
}

/* HOVER */
.admission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ICON */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eef2ff;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.4s ease;
}

/* ICON HOVER */
.admission-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
  background: #dbeafe;
}

/* TITLE */
.admission-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

/* TEXT */
.admission-card p {
  color: #252525;
  ;
}

/* LIST */
.admission-card ul {
  padding-left: 18px;
  margin: 0;
}

.admission-card ul li {
  margin-bottom: 6px;
  color: #334155;
}

/* BORDER COLORS */
.card-1 {
  border-left: 5px solid #4f46e5;
}

.card-2 {
  border-left: 5px solid #16a34a;
}

.card-3 {
  border-left: 5px solid #0ea5e9;
}

.card-4 {
  border-left: 5px solid #f59e0b;
}

.card-5 {
  border-left: 5px solid #ef4444;
}

.card-6 {
  border-left: 5px solid #8b5cf6;
}

/* LIGHT EFFECT */
.admission-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s;
}

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

/* CARD STYLE (DARK) */
.rules-card {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #0f172a);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: 0.4s ease;
  overflow: hidden;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* HOVER EFFECT */
.rules-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border-color: rgba(59, 130, 246, 0.3);
}

/* ICON BOX */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  margin-bottom: 15px;
  color: #60a5fa;
  transition: 0.4s ease;
}

/* ICON ANIMATION */
.rules-card:hover .icon-box {
  transform: rotate(12deg) scale(1.15);
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

/* TITLE */
.rules-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f5f9;
}

/* TEXT */
.rules-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* LIGHT GLOW EFFECT */
.rules-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s;
}

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

/* BORDER COLORS (DARK ACCENT STYLE) */
.card-1 {
  border-left: 5px solid #3b82f6;
}

.card-2 {
  border-left: 5px solid #22c55e;
}

.card-3 {
  border-left: 5px solid #0ea5e9;
}

.card-4 {
  border-left: 5px solid #f59e0b;
}

.card-5 {
  border-left: 5px solid #a78bfa;
}

.card-6 {
  border-left: 5px solid #ef4444;
}

.card-7 {
  border-left: 5px solid #60a5fa;
}


/* CARD STYLE */
.fees-card {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827, #0f172a);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.4s ease;
  overflow: hidden;
  color: #e5e7eb;
}

/* HOVER */
.fees-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border-color: rgba(59, 130, 246, 0.3);
}

/* ICON */
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  margin-bottom: 15px;
  color: #60a5fa;
  transition: 0.4s ease;
}

/* ICON HOVER */
.fees-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
  background: rgba(59, 130, 246, 0.2);
}

/* TITLE */
.fees-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f1f5f9;
}

/* LIST */
.fees-card ul {
  padding-left: 18px;
  margin: 0;
}

.fees-card ul li {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

/* LIGHT EFFECT */
.fees-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s;
}

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

/* BORDER COLORS */
.card-1 {
  border-left: 5px solid #3b82f6;
}

.card-2 {
  border-left: 5px solid #22c55e;
}

.card-3 {
  border-left: 5px solid #ef4444;
}

/* SECTION BACKGROUND */
.uniform-section {
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  padding: 60px 0;
}

/* CARD STYLE */
.uniform-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER EFFECT */
.uniform-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  font-size: 22px;
  margin-bottom: 15px;
  color: #2563eb;
  transition: 0.4s ease;
}

/* ICON ANIMATION */
.uniform-card:hover .icon-box {
  transform: rotate(10deg) scale(1.15);
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
  color: #1d4ed8;
}

/* TITLE */
.uniform-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* TEXT */
.uniform-card p,
.uniform-card ul li {
  color: #475569;
  line-height: 1.6;
}

/* LIST STYLE */
.uniform-card ul {
  padding-left: 18px;
}

/* LIGHT SWEEP EFFECT */
.uniform-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 60%);
  transform: rotate(25deg);
  opacity: 0;
  transition: 0.5s;
}

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

/* BORDER COLORS (SOFT SCHOOL COLORS) */
.card-1 {
  border-left: 5px solid #ef4444;
}

/* KG */
.card-2 {
  border-left: 5px solid #3b82f6;
}

/* Primary */
.card-3 {
  border-left: 5px solid #8b5cf6;
}

/* Secondary */
.card-4 {
  border-left: 5px solid #22c55e;
}

/* House */
.card-5 {
  border-left: 5px solid #f59e0b;
}
/* =================================
      BANNER SLIDER CSS
================================= */

.banner-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-wrapper {
    width: 100%;
}

.banner-single {
    position: relative;
}

.banner-thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.banner-thumb img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.banner-area .owl-carousel{
  display: block !important;
}
/* Owl Dots */
.banner-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.banner-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all 0.4s ease;
    display: block;
}

.banner-carousel .owl-dot.active span {
    width: 28px;
    border-radius: 30px;
    background: #ffffff;
}
.quote-box {
    background: #f8f9fa;
    border-left: 5px solid #c62828;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.quote-box p {
    margin: 0;
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

/* =================================
      LAPTOP RESPONSIVE
================================= */
@media (max-width: 1199px) {

    .banner-thumb {
        height: 600px;
    }

}

/* =================================
      TABLET RESPONSIVE
================================= */
@media (max-width: 991px) {

    .banner-thumb {
        height: 450px;
    }

}

/* =================================
      MOBILE RESPONSIVE
================================= */
@media (max-width: 767px) {

    .banner-thumb {
        height: 260px;
    }

    .banner-carousel .owl-dots {
        bottom: 15px;
    }

    .banner-carousel .owl-dot span {
        width: 10px;
        height: 10px;
    }

    .banner-carousel .owl-dot.active span {
        width: 22px;
    }

}
/* House System */