:root {
  --brand: #01b5fb;
  --sub: #6ac754;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
/* NAVBAR */
#nav {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

#nav li {
  position: relative;
}

#nav a {
  text-decoration: none;
  color: #000;
  padding: 10px 0;
  display: block;
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 10px 0;
  list-style: none;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 999;
}

.submenu li {
  width: 100%;
}

.submenu a {
  padding: 10px 20px;
  white-space: nowrap;
}

.submenu a:hover {
  background: #f5f5f5;
}

/* SHOW SUBMENU ON HOVER */
.has-submenu:hover .submenu {
  display: block;
}

/*** Header Carousel ***/
.header-carousel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url(../img/slide1.jpeg) center center no-repeat;
  background-size: cover;
}

.header-carousel .carousel-img {
  position: relative;
}

.carousel-img img {
  border-radius: 10px;
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: var(--secondary);
}

.carousel-text h2 {
  color: #ffffff;
}
.carousel-text p {
  color: #ececec;
}

/*** About ***/
.about-img {
  position: relative;
}

.about-img::before,
.about-img::after {
  position: absolute;
  content: "";
  width: 33%;
  height: 90px;
  background: var(--bs-white);
}

.about-img::before {
  top: 0px;
  left: 0px;
}

.about-img::after {
  right: 0px;
  bottom: 0px;
}

/*** Service ***/
.service-title {
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/image-5/pexels-enginakyurt-6749331.jpg) center center
    no-repeat;
  background-size: cover;
}

.service-item {
  overflow: hidden;
}

.service-item .btn-square {
  width: 65px;
  height: 65px;
}

.service-item a {
  position: relative;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  transition: 0.5s;
}

.service-item a::after {
  position: absolute;
  content: "";
  width: 500%;
  height: 0;
  left: 100%;
  bottom: 3px;
  margin-left: 10px;
  border-bottom: 2px solid var(--bs-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kidzee-section {
  background: linear-gradient(135deg, #fff5f5, #fff9e6) !important;
}

.kidzee-title {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #ff4d4d !important;
}
/* Standard mobile devices (480px and below) */
@media screen and (max-width: 480px) {
  .kidzee-title {
    font-size: 24px !important; /* Adjust this value as needed */
  }
}

/* Tablets and small screens (768px and below) */
@media screen and (max-width: 768px) {
  .kidzee-title {
    font-size: 32px !important; /* Adjust this value for tablets */
  }
}


.kidzee-subtitle {
  color: #ff9900 !important;
  font-weight: 600 !important;
}

/* CARD */
.inst-card {
  background: #fff !important;
  border-radius: 25px !important;
  overflow: hidden !important;
  transition: 0.4s !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  height: 100%;
}

/* HOVER */
.inst-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
}

/* IMAGE */
.inst-img img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  transition: 0.5s !important;
}

.inst-card:hover img {
  transform: scale(1.05) !important;
}

/* CONTENT */
.inst-content {
  padding: 25px !important;
}

.inst-content h3 {
  font-weight: 700 !important;
  margin-bottom: 15px !important;
}

.inst-content p {
  color: #555 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* LIST */
.inst-list {
  list-style: none !important;
  padding: 0 !important;
}

.inst-list li {
  margin-bottom: 8px !important;
}

/* BUTTON */
.inst-btn {
  display: inline-block !important;
  margin-top: 15px !important;
  padding: 10px 25px !important;
  border-radius: 25px !important;
  background: linear-gradient(45deg, #ff4d4d, #ff9900) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.inst-btn:hover {
  background: linear-gradient(45deg, #ff9900, #ff4d4d) !important;
}
/* .banner-area {
  font-family: 'Georgia', serif;
} */

.banner-text {
  background: #0e0e0e;
  border-radius: 12px;
  overflow: hidden;
}

.banner-inner {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

/* --- Decorative rings --- */
.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  top: -40px;
  left: -60px;
  width: 320px;
  height: 320px;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
}

.ring-2 {
  top: -80px;
  left: -100px;
  width: 480px;
  height: 480px;
  border: 0.5px solid rgba(255, 255, 255, 0.04);
}

.ring-3 {
  bottom: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
}

.diagonal-rule {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%) rotate(-3deg);
  pointer-events: none;
}

/* --- Section label --- */
.section-label {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  /* font-family: 'Courier New', monospace; */
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

/* --- Eyebrow --- */
.eyebrow {
  /* font-family: 'Courier New', monospace; */
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.3);
}

/* --- Headline --- */
.banner-title {
  /* font-family: 'Georgia', serif; */
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: #f5f2ec;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
}

/* --- Breadcrumb --- */
.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  /* font-family: 'Courier New', monospace; */
  font-size: 12px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Dot cluster --- */
.dot-cluster {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.dot--mid {
  background: rgba(255, 255, 255, 0.35);
}

/* =========================
   RK VIDYASHRAM SECTION CSS
========================= */

.rk-wrap{
    background: #bad5fd;
    padding: 60px 0;
    overflow: hidden;
}

/* CONTAINER */
.rk-wrap .container{
    max-width: 1200px;
}

/* HERO */
.rk-hero{
    background: linear-gradient(135deg,#ff8b5a,#eb7944);
    border-radius: 30px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.rk-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fc7341;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rk-hero h1{
    font-size: 60px;
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 15px;
    line-height: 1.1;
}

.rk-hero .sub{
    font-size: 22px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.rk-motto{
    font-size: 20px;
    color: #fc7341;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.6;
}

.rk-tags-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.rk-tag{
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* STATS */
.rk-stats{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.rk-stat{
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.rk-stat:hover{
    transform: translateY(-8px);
}

.rk-stat .num{
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #fc7341;
    margin-bottom: 10px;
}

.rk-stat .lbl{
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* SECTION */
.rk-section{
    margin-bottom: 60px;
}

.rk-section-title{
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #1d1d1d;
    margin-bottom: 40px;
}

/* ABOUT */
.rk-about-card{
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.highlight{
    color: #fc7341;
    font-weight: 700;
}

/* AFFILIATION */
.rk-affil{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg,#fc7341,#ff9966);
    padding: 35px;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 15px 45px rgba(252,115,65,0.25);
}

.rk-affil i{
    font-size: 55px;
}

.rk-affil p{
    margin: 0;
    line-height: 1.8;
    font-size: 18px;
}

/* CAMPUS SECTION */
.rk-hospital{
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.rk-hosp-icon{
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: #fc7341;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.rk-hospital h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.rk-hospital p{
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* TWO COLUMN */
.rk-two-col{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.rk-card{
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.rk-card:hover{
    transform: translateY(-8px);
}

.rk-card h3{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1d1d1d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rk-card h3 i{
    color: #fc7341;
}

/* LIST */
.rk-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.rk-list li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.rk-list li i{
    color: #fc7341;
    font-size: 18px;
    margin-top: 3px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .rk-hero{
        padding: 50px 25px;
    }

    .rk-hero h1{
        font-size: 42px;
    }

    .rk-stats{
        grid-template-columns: repeat(2,1fr);
    }

    .rk-two-col{
        grid-template-columns: 1fr;
    }

    .rk-hospital{
        flex-direction: column;
    }
}

@media(max-width:767px){

    .rk-wrap{
        padding: 50px 0;
    }

    .rk-hero h1{
        font-size: 34px;
    }

    .rk-hero .sub{
        font-size: 18px;
    }

    .rk-motto{
        font-size: 17px;
    }

    .rk-stats{
        grid-template-columns: 1fr;
    }

    .rk-about-card,
    .rk-affil,
    .rk-card,
    .rk-hospital{
        padding: 25px;
    }

    .rk-section-title{
        font-size: 32px;
    }

    .rk-hospital h3{
        font-size: 26px;
    }

    .rk-affil{
        flex-direction: column;
    }
}
/* ================================
   TESTIMONIAL SECTION
================================ */

.testimonial-section{
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.08), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #ffffff 100%);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.testimonial-section .w{
  max-width: 1350px;
  margin: auto;
}

/* ================================
   HEADER
================================ */

.hd{
  text-align: center;
  margin-bottom: 70px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255, 193, 7, 0.12);
  color: #ff9800;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.25);
  backdrop-filter: blur(10px);
}

.hd h1{
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 14px;
}

.hd p{
  font-size: 1.08rem;
  color: #666;
  font-weight: 500;
  letter-spacing: .3px;
}

/* ================================
   GRID
================================ */

.grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ================================
   CARD
================================ */

.card{
  position: relative;
  padding: 34px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 2px 10px rgba(0,0,0,0.03);
  transition: all .4s ease;
  overflow: hidden;
  isolation: isolate;
}

.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,193,7,.08),
    rgba(255,255,255,0)
  );
  z-index: -1;
}

.card::after{
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,193,7,0.08);
  z-index: -1;
}

.card:hover{
  transform: translateY(-10px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12),
    0 5px 18px rgba(0,0,0,0.06);
}

/* ================================
   TAGS
================================ */

.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag{
  padding: 8px 16px;
  border-radius: 100px;
  background: #fff7df;
  color: #d88900;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,193,7,.25);
}

/* ================================
   QUOTE
================================ */

.qmark{
  font-size: 5rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 193, 7, 0.18);
  position: absolute;
  top: 18px;
  right: 22px;
}

/* ================================
   BODY TEXT
================================ */

.body-text{
  position: relative;
  z-index: 2;
  color: #444;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.body-text em{
  color: #111;
  font-style: normal;
  font-weight: 700;
}

/* ================================
   AUTHOR
================================ */

.author{
  display: flex;
  align-items: center;
  gap: 16px;
}

.avi{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  background: linear-gradient(135deg, #ffb300, #ff7b00);
  box-shadow: 0 8px 18px rgba(255, 152, 0, .28);
  flex-shrink: 0;
}

.aname{
  font-size: 1rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 4px;
}

.ameta{
  font-size: .92rem;
  color: #777;
}



.fstat{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fnum{
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.flabel{
  margin-top: 8px;
  font-size: .95rem;
  opacity: .9;
  letter-spacing: .4px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px){

  .testimonial-section{
    padding: 70px 16px;
  }

  .card{
    padding: 28px 24px;
  }

  .footer{
    padding: 35px 24px;
    text-align: center;
    justify-content: center;
  }

  .footer-stats{
    justify-content: center;
    gap: 30px;
  }

  .qmark{
    font-size: 4rem;
  }

}
.reading-icon{
  font-size:40px;
  color:#0d6efd;
  margin-bottom:20px;
  display:inline-block;
}
/* CURRICULUM SECTION */
.rk-curriculum-section{
  background:#f8fbff;
}

.curriculum-tag{
  display:inline-block;
  background:#e7f1ff;
  color:#0d6efd;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  margin-bottom:15px;
}

.curriculum-title{
  font-size:42px;
  font-weight:800;
  color:#1b1b1b;
  margin-bottom:15px;
}

.curriculum-subtitle{
  max-width:750px;
  margin:auto;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.curriculum-card{
  background:#fff;
  padding:40px 35px;
  border-radius:24px;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.4s ease;
  border:1px solid #eef2f7;
}

.curriculum-card:hover{
  transform:translateY(-8px);
}

.curriculum-icon{
  width:80px;
  height:80px;
  background:#0d6efd;
  color:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin-bottom:25px;
}

.curriculum-card h3{
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}

.curriculum-card .level{
  color:#0d6efd;
  font-weight:600;
  margin-bottom:18px;
}

.curriculum-card p{
  color:#666;
  line-height:1.8;
  margin-bottom:20px;
}

.curriculum-card ul{
  padding-left:18px;
  margin:0;
}

.curriculum-card ul li{
  margin-bottom:12px;
  color:#444;
  font-weight:500;
}

@media(max-width:768px){

  .curriculum-title{
    font-size:30px;
  }

  .curriculum-card{
    padding:30px 25px;
  }

  .curriculum-card h3{
    font-size:24px;
  }

}