﻿ :root {
      --blue-light:  #002c99;
      --blue-mid:   #001a5a;
      --blue-dark: #001b66;
      --gold-light: #c78426;
      --gold:        #f5a623;
      --gold-dark:   #d4891a;
      --white:       #ffffff;
      --text-dark:   #1a1a1a;
      --topbar-bg:   #002374;
    }

    * { font-family: 'Poppins', sans-serif; }
    
    body
    {
        background:#f7f8fa;
    }

    /* ──────────────── TOP BAR ──────────────── */
    .topbar {
      background: var(--topbar-bg);
      color: var(--white);
      font-size: .82rem;
      padding: 7px 0;
      border-bottom: 2px solid var(--gold);
    }
    .topbar a { color: var(--white); text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: var(--gold); }
    .topbar .contact-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-right: 20px;
    }
    .topbar .contact-item i { color: var(--gold); font-size: .9rem; }
    .topbar .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      margin-left: 6px;
      font-size: .85rem;
      transition: background .2s, color .2s;
    }
    .topbar .social-icons a:hover { background: var(--gold); color: var(--text-dark); }

    /* ──────────────── MAIN NAVBAR ──────────────── */
    .main-navbar {
      background: var(--white);
      box-shadow: 0 3px 14px rgba(0,0,0,.12);
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    /* Logo */
    .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-circle {
      width: 62px; height: 62px;
      background: var(--blue-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 3px solid var(--gold);
      flex-shrink: 0;
    }
    .logo-circle span {
      font-size: .65rem; font-weight: 700;
      color: var(--white); text-align: center; line-height: 1.2;
      text-transform: uppercase; letter-spacing: .5px;
    }
    .brand-text .school-name {
      font-size: 1.05rem; font-weight: 700;
      color: var(--blue-light); line-height: 1.1;
      text-transform: uppercase; letter-spacing: .5px;
    }
    .brand-text .school-tagline {
      font-size: .68rem; color: var(--gold-dark);
      font-style: italic; font-weight: 500;
    }

    /* Nav links */
    .navbar-nav .nav-link {
      color: var(--text-dark) !important;
      font-weight: 600;
      font-size: .9rem;
      padding: 8px 8px !important;
      border-radius: 4px;
      transition: color .2s, background .2s;
      position: relative;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
      color: var(--blue-mid) !important;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute; bottom: 4px; left: 14px; right: 14px;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform .25s;
      border-radius: 2px;
    }
    .navbar-nav .nav-link:hover::after { transform: scaleX(1); }

    /* Dropdown toggle arrow */
    .navbar-nav .dropdown-toggle::after { border-color: var(--gold-dark) transparent transparent; }

    /* Dropdown menu */
    .dropdown-menu {
      border: none;
      border-top: 3px solid var(--gold);
      border-radius: 0 0 8px 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,.14);
      padding: 6px 0;
      min-width: 210px;
      animation: fadeDown .2s ease;
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .dropdown-item {
      font-size: .88rem; font-weight: 500;
      color: var(--text-dark);
      padding: 9px 20px;
      border-left: 3px solid transparent;
      transition: all .18s;
    }
    .dropdown-item:hover {
      background: #f0faf2;
      color: var(--blue-mid);
      border-left-color: var(--gold);
      padding-left: 24px;
    }
    .dropdown-divider { margin: 4px 0; border-color: #e9ecef; }

    /* Phone CTA box */
    .phone-cta {
      background: var(--blue-mid);
      color: var(--white);
      border-radius: 8px;
      padding: 6px 14px;
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
      transition: background .2s;
      white-space: nowrap;
    }
    .phone-cta:hover { background: var(--blue-light); color: var(--white); }
    .phone-cta .phone-icon {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-dark); font-size: 1rem;
    }
    .phone-cta .phone-label { font-size: .68rem; opacity: .85; font-weight: 400; }
    .phone-cta .phone-number { font-size: .95rem; font-weight: 700; line-height: 1.1; }

    /* Hamburger */
    .navbar-toggler {
      border: 2px solid var(--blue-mid);
      border-radius: 6px;
      padding: 5px 9px;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f5a623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Desktop par hover dropdown */
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all .3s ease;
    }

    .navbar .dropdown:hover > .nav-link {
        color: var(--blue-mid) !important;
    }

    .navbar .dropdown:hover > .nav-link::after {
        transform: scaleX(1);
    }
}

.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--gold-dark);
}

/* Hover par rotate */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

/*========= END Navbar Style ================**/

/* ===================== NEWS MARQUEE ===================== */
.news-marquee-bar {
  background: #002873;
  padding: 10px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
 
}
.news-label {
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 24px;
  margin-right: 16px;
}
/*
.marquee-track {
  display: flex;
  animation: marqueeScroll 15s linear infinite;
  white-space: nowrap;
}
*/

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-size:14px;
  gap: 7px;
  padding-right: 25px; /* spacing between notices */
  white-space: nowrap;
}

.dot {
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
}

.marquee-item span { color: var(--gold2); font-weight: 500; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/*========= NEW And Notice Section Style END =========*/

    /* ──────────────── DEMO HERO ──────────────── */
   /* .hero {
      min-height: 88vh;
      background: linear-gradient(135deg, var(--blue-light) 45%, #0d3318 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,.12) 0%, transparent 65%);
    }
    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--text-dark);
      font-size: .8rem; font-weight: 700;
      padding: 6px 18px; border-radius: 50px;
      margin-bottom: 20px; letter-spacing: .5px;
    }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800; color: var(--white);
      line-height: 1.15; margin-bottom: 14px;
    }
    .hero .tagline {
      font-size: clamp(1rem, 2.5vw, 1.45rem);
      color: var(--gold); font-weight: 700; margin-bottom: 16px;
    }
    .hero p { color: rgba(255,255,255,.78); font-size: .97rem; max-width: 520px; margin-bottom: 32px; }
    .btn-apply {
      background: var(--gold); color: var(--text-dark);
      font-weight: 700; font-size: .95rem;
      padding: 13px 32px; border-radius: 8px;
      border: none; text-decoration: none;
      display: inline-block;
      transition: background .2s, transform .15s;
    }
    .btn-apply:hover { background: var(--gold-dark); color: var(--text-dark); transform: translateY(-2px); }
*/

 .hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 8s ease;
}

.hero-slider .swiper-slide-active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.35)
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 650px;
}

.slide-content span {
    display: inline-block;
    background: #ffb400;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.slide-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ffb400;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .4s;
}

.slide-btn:hover {
    background: #fff;
    transform: translateY(-4px);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ffb400;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{
    bottom: var(--swiper-pagination-bottom, 50px);
}

@media(max-width:991px)
{
    .slide-content h1{
        font-size:50px;
    }
}

@media(max-width:767px)
{
    .hero-slider{
        height:75vh;
    }

    .slide-content{
        left:20px;
        right:20px;
        text-align:center;
    }

    .slide-content h1{
        font-size:34px;
    }

    .slide-content p{
        font-size:15px;
    }
    
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
    {
        bottom: var(--swiper-pagination-bottom, 8px);
    }

}

    /* Responsive tweaks */
    @media (max-width: 991.98px) {
      .navbar-collapse { border-top: 2px solid #e9ecef; margin-top: 10px; padding-top: 8px; }
      .navbar-nav .nav-link::after { display: none; }
      .dropdown-menu { box-shadow: none; border: none; border-left: 3px solid var(--gold); border-top: none; border-radius: 0; margin-left: 12px; }
      .phone-cta { margin-top: 12px; }
    }
    @media (max-width: 575.98px) {
      .topbar .contact-item:last-of-type { display: none; }
    }
    
    
    /*=========================
 FEATURE STRIP
==========================*/
.feature-strip{
    position: relative;
    margin-top: -30px;
    z-index: 20;
    padding: 0 15px;
}

.feature-strip .row{
    max-width: 1100px;
    margin: auto;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
}

.feature-box{
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 25px;
    transition: .4s;
    cursor: pointer;
}

.feature-box.light{
    background:#f3e6c4;
    color:#111;
}

.feature-box.green{
    background:var(--blue-mid);
    color:#fff;
}

.feature-icon{
    font-size:38px;
    margin-right:20px;
    position:relative;
}

.feature-icon::after{
    content:'';
    position:absolute;
    right:-12px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:45px;
    background:rgba(255,255,255,.4);
}

.feature-box.light .feature-icon::after{
    background:rgba(0,0,0,.2);
}

.feature-content h4{
    font-size:16px;
    margin:0;
    font-weight:600;
    line-height:1.4;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box.green:hover{
    background:var(--blue-light);
}

.feature-box.light:hover{
    background:#ebdbb2;
}

/*=========================
 RESPONSIVE
==========================*/

@media(max-width:991px){

    .feature-strip{
        margin-top:0;
        padding:30px 15px;
    }

    .feature-box{
        min-height:100px;
    }

    .feature-content h4{
        font-size:20px;
    }
}

@media(max-width:767px){

    .feature-box{
        justify-content:flex-start;
        padding:20px;
        min-height:90px;
    }

    .feature-icon{
        font-size:30px;
        margin-right:15px;
    }

    .feature-content h4{
        font-size:18px;
    }
}

@media(max-width:575px){

    .feature-box{
        text-align:left;
    }

    .feature-content h4{
        font-size:17px;
    }
}
 /**============== Card Style END ============**/
    
    
    /*=========================
 ABOUT SCHOOL
==========================*/

.about-school{
    background:#f7f8fa;
    overflow:hidden;
}

.section-title span{
    color:var(--blue-dark);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-top:10px;
    margin-bottom:25px;
}

.about-text{
    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.feature-item i{
    width:50px;
    height:50px;
    background:var(--blue-dark);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    transition:.4s;
}

.feature-item:hover i{
    transform:rotateY(180deg);
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--blue-dark);
    color:#fff;
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.about-btn:hover{
    background:var(--blue-light);
    color:#fff;
    transform:translateY(-3px);
}

.about-image-wrap{
    position:relative;
    text-align:center;
}

.about-img{
    border-radius:20px;
    position:relative;
    z-index:2;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.shape{
    position:absolute;
    width:85%;
    height:85%;
    background:var(--blue-dark);
    right:-20px;
    bottom:-20px;
    border-radius:25px;
    z-index:1;
}

/*=========================
 RESPONSIVE
==========================*/

@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }

    .about-image-wrap{
        margin-top:50px;
    }

    .shape{
        display:none;
    }
}

@media(max-width:767px){

    .section-title h2{
        font-size:30px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-text{
        font-size:16px;
    }

    .feature-item{
        font-size:16px;
    }

    .about-btn{
        width:100%;
        justify-content:center;
    }
}

@media(max-width:575px){

    .section-title h2{
        font-size:26px;
    }

    .about-text{
        text-align:justify;
    }
}
 /**============== END About Style ============**/
 
  /**============== Teachers Style ============**/
  .faculty-section{
    background:#f5f7fb;
}

.faculty-card{
    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    text-align:center;
    margin:15px;
    min-height:320px;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.faculty-card:hover{
    transform:translateY(-10px);
}

.faculty-img{
    width:130px;
    height:130px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #fff;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.faculty-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.faculty-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.faculty-card p{
    color:#666;
    line-height:1.8;
}

/* ==========================
   Owl Nav Buttons
========================== */

.owl-nav {
    margin-top: 0 !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #0b2c74 !important;
    font-size: 20px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    transition: all .4s ease;
}

.owl-prev {
    left: -25px;
}

.owl-next {
    right: -25px;
}

.owl-prev:hover,
.owl-next:hover {
    background: #0b2c74 !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1);
}

/* Remove default span spacing */
.owl-prev span,
.owl-next span {
    line-height: 50px;
    font-size: 30px;
    font-weight: 600;
}

/* ==========================
   Owl Dots
========================== */
/*
.owl-dots{
    margin-top:30px;
}

.owl-dot span{
    width:12px !important;
    height:12px !important;
}

.owl-dot.active span{
    width:35px !important;
    border-radius:20px;
}


.owl-dots{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    text-align:center;
    margin-top:30px;
}

.owl-dot{
    display:inline-block !important;
}

.owl-dot span{
    display:block !important;
    width:12px !important;
    height:12px !important;
    background:#0b2c74 !important;
    border-radius:50%;
}

.owl-dot.active span{
    width:35px !important;
    background:#f4a100 !important;
}
*/
   /**============== END Teachers Style ============**/
   
   /*=========================
 LEADERSHIP SECTION
=========================*/
.leadership-section{
    background:#f6f8fb;
}

/* heading */
.section-heading span{
    color:#001b66;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#1d1d1d;
}

.section-heading p{
    color:#6c757d;
}

/* CARD */
.leader-box{
    display:flex;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transition:0.3s ease;
    border:1px solid #eee;
}

/* subtle hover only */
.leader-box:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(0,0,0,0.10);
}

/* IMAGE */
.leader-img{
    width:40%;
    min-width:230px;
}

.leader-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CONTENT */
.leader-info{
    padding:20px 22px;
}

.leader-info h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:5px;
    color:#222;
}

.leader-info h5{
    font-size:14px;
    color:var(--gold-light);
    margin-bottom:12px;
    font-weight:600;
}

.leader-info p{
    font-size:14px;
    color:#6c757d;
    line-height:1.7;
    margin-bottom:15px;
}

/* READ MORE LINK (professional style) */
.leader-info a{
    font-weight:600;
    font-size:14px;
    color:var(--blue-dark);
    text-decoration:none;
    position:relative;
}

.leader-info a:hover{
    color:var(--blue-light);
}

/* Responsive Code */
@media (max-width: 768px){

    /* CARD becomes vertical */
    .leader-box{
        flex-direction: column;
    }

    /* IMAGE full width */
    .leader-img{
        width:100%;
        height:220px;
    }

    .leader-img img{
        height:240px !important;
        width:100%;
        object-fit:cover;
    }

    /* CONTENT spacing adjust */
    .leader-info{
        padding:18px;
    }

    .leader-info h3{
        font-size:20px;
    }

    .leader-info p{
        font-size:13px;
    }

    /* heading adjustment */
    .section-heading h2{
        font-size:28px;
    }
}

@media (max-width: 480px){

    .leader-img{
        height:230px;
    }

    .leader-img img{
        height:200px;
    }

    .leader-info{
        padding:15px;
    }

    .leader-info h3{
        font-size:18px;
    }

    .leader-info a{
        font-size:13px;
    }
}
 /**============== END  LEADERSHIP SECTION Style ============**/
 
  /**==============  GALLERY SECTION Style ============**/
  .school-gallery{
    background:#f8fafc;
    overflow:hidden;
}

/* Gallery Card */

.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.7s;
}

.gallery-box:hover img{
    transform:scale(1.15);
}

.gallery-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0, 0, 0, .85), rgb(1 28 126 / 64%));
    opacity:0;
    transition:.4s;
}

.gallery-box:hover::before{
    opacity:1;
}

.overlay{
    position:absolute;
    left:25px;
    bottom:20px;
    color:#fff;
    transform:translateY(25px);
    opacity:0;
    transition:.4s;
    z-index:2;
}

.gallery-box:hover .overlay{
    opacity:1;
    transform:translateY(0);
}

.overlay h5{
    margin:0;
    font-size:22px;
    font-weight:700;
}

/* Active Center Slide */

.gallery-carousel .owl-item.center .gallery-box{
    transform:scale(1.08);
}

.gallery-carousel .owl-item:not(.center){
    opacity:.75;
}

/* Arrows */

.gallery-carousel .owl-nav{
    margin-top:35px;
    text-align:center;
}

.gallery-carousel .owl-nav button{
    width:55px;
    height:55px;
    border-radius:50% !important;
    background:var(--blue-dark) !important;
    color:#fff !important;
    font-size:24px !important;
    margin:0 8px;
    transition:.4s;
}

.gallery-carousel .owl-nav button:hover{
    background:#f5a623 !important;
}

/* Dots */

.gallery-carousel .owl-dots{
    margin-top:25px;
    text-align:center;
}

.gallery-carousel .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#ccc !important;
}

.gallery-carousel .owl-dot.active span{
    background:#f5a623 !important;
    width:28px;
    border-radius:20px;
}


.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s ease;
}

/* Dark Overlay */

.gallery-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top, rgba(0, 0, 0, .85), rgb(1 28 126 / 64%));
    opacity:0;
    transition:.5s ease;
    z-index:1;
}

/* Hover Effects */

.gallery-box:hover img{
    transform:scale(1.12);
}

.gallery-box:hover::before{
    opacity:1;
}

.overlay{
    position:absolute;
    left:25px;
    right:25px;
    bottom:20px;
    color:#fff;
    z-index:2;
    opacity:0;
    transform:translateY(30px);

    transition:.5s ease;
}

.gallery-box:hover .overlay{
    opacity:1;
    transform:translateY(0);
}

.overlay h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
    color:#fff;
}

.overlay span{
    display:block;
    color:#fdb913;
    font-size:14px;
    font-weight:500;
}
   /**============== END  GALLERY SECTION Style ============**/
   
/**============== Home Contact SECTION Style ============**/
 .contact_section .contact_form-container  .bk {
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  width: 90%;
  margin: 15px 0;
  background-color: transparent;
}

.contact_section .contact_form-container input::-webkit-input-placeholder {
  color: #595959;
  font-size: 14px;
}

.contact_section .contact_form-container input:-ms-input-placeholder {
  color: #595959;
  font-size: 14px;
}

.contact_section .contact_form-container input::-ms-input-placeholder {
  color: #595959;
  font-size: 14px;
}

.contact_section .contact_form-container input::placeholder {
  color: #595959;
  font-size: 14px;
}

.contact_section .contact_form-container input.message_input {
  margin-top: 80px;
}

.contact_section .contact_form-container button {
  border: none;
  background-color: #0e35f6;
  color: #fff;
  font-size: 15px;
  padding: 15px 55px;
  border-radius: 30px;
  text-transform: uppercase;
}

.contact_section .contact_form-container button:hover {
  background-color: #082de2;
}

.contact_section .map-box #map {
  width: 100%;
  height: 100%;
}

.contact_items {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact_items .item {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.contact_items .item .img-box {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.contact_items .item .detail-box {
  color: #5e5e5e;
}

.contact_items .item .detail-box p {
  margin: 0;
}

.contact_items {
  position: relative;
}

.contact_items a {
  position: relative;
}

.contact_items .item .img-box.box-1 {
  background-image: url(../images/location.png);
}

.contact_items .item .img-box.box-2 {
  background-image: url(../images/telephone.png);
}

.contact_items .item .img-box.box-3 {
  background-image: url(../images/envelope.png);
}


.info_section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  background:#0A32C7;
  color: #ffffff;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px auto;
}

.info_section .info_social img {
  width: 40px;
  margin-left: 8px;
}

.info_section p {
  margin: 35px 0 0 0;
}


/* Admission Card  Enquiry Style*/
.admission-card {
background:#0A32C7;
  padding: 35px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Heading */
.admission-card h3 {
  font-weight: 700;
  margin-bottom: 5px;
}

.admission-card p {
  font-size: 13px;
  margin-bottom: 25px;
  color: #defffa;
}

/* Inputs */
.admission-input {
  background: transparent;
  border: 1px solid #defffa;
  color: #fff;
  height: 45px;
}

.admission-input::placeholder {
  color: #ffdede;
}

.admission-input:focus {
  background: transparent;
  border-color: #ffc107;
  box-shadow: none;
  color: #fff;
}

/* Floating Placeholder Effect */
.floating-label {
  position: relative;
  margin-bottom: 22px;
}

.floating-label .admission-input {
  width: 100%;
  padding: 14px 10px;
}

/* Fake floating text */
.floating-label::after {
  content: attr(data-placeholder);
  position: absolute;
  left: 12px;
  top: 13px;
  color: #defffa;
  font-size: 14px;
  transition: 0.3s ease;
  pointer-events: none;
  background: #0A32C7;
  padding: 0 5px;
}

/* When focused or filled */
.floating-label.active::after {
  top: -8px;
  font-size: 12px;
  color: #ffc107;
}

/* Hide original placeholder */
.admission-input::placeholder {
  color: transparent;
}

#otpBox input::placeholder {
    opacity: 1 !important;
    color: #ffffff !important;  
}

/* Message box */
.message-box {
  height: 90px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  background: #ffc107;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 10px 40px;
  border-radius: 6px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ffb300;
}

/* Success Message */
.success-msg {
  display: block;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  color: #00ffae;
  font-weight: 600;
  text-align: center;
}
 
/**============== END  Home Contact SECTION Style ============**/
   
/**============== Footer Style ============**/
.modern-footer{
    background:linear-gradient(135deg, #001b66, #002c99);
    color:#fff;
    margin-top:25px;
    position:relative;
    overflow:hidden;
}

/* Decorative Shapes */

.modern-footer::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
}

.modern-footer::after{
    content:'';
    position:absolute;
    bottom:-120px;
    left:-165px;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}

/* CTA */

.footer-top-box{
    width:90%;
    max-width:1200px;
    margin:auto;
    transform:translateY(-80px);
}

.footer-top-content{
    backdrop-filter:blur(15px);
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    padding:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.tag{
    background:#f5a623;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.footer-top-content h2{
    margin:15px 0;
    font-size:42px;
    font-weight:700;
}

.footer-top-content p{
    font-size:17px;
    opacity:.9;
    max-width:650px;
}

.apply-btn{
    background:#f5a623;
    color:#fff;
    padding:16px 38px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.apply-btn:hover{
    background:#fff;
    color:#001b66;
}

/* Main Footer */

.footer-wrapper{
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap:50px;
    padding:20px 0 70px;
}

.footer-about img{
    max-width:220px;
    border-radius:16px;
    padding:10px;
    margin-bottom:20px;
}

.footer-about p{
    line-height:1.9;
    max-width:420px;
}

.footer-links h4,
.footer-contact h4{
    margin-bottom:25px;
    font-size:26px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f5a623;
    padding-left:8px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.footer-links a i{
    color:#f5a623;
    font-size:13px;
    transition:.3s;
}

.footer-links a:hover{
    color:#f5a623;
    transform:translateX(5px);
}

.footer-links a:hover i{
    transform:translateX(3px);
}

.footer-contact p{
    margin-bottom:18px;
    line-height:1.8;
}

.footer-contact i{
    color:#f5a623;
    width:25px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    background:rgba(255,255,255,.12);
    text-decoration:none;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.4s;
}

.social-icons a:hover{
    background:#f5a623;
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    padding:18px 0;
}

.copyright-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.copyright-content a{
    color:#f5a623;
    text-decoration:none;
    font-weight:600;
}

.copyright-content a:hover{
    color:#fff;
}

@media(max-width:768px){

    .copyright-content{
        flex-direction:column;
        text-align:center;
    }
}

/* Responsive */

@media(max-width:992px){

    .footer-top-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-wrapper{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-top-content h2{
        font-size:30px;
    }
}      
/**============== END  Footer Style ============**/



/* Back to Top Button */
#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:linear-gradient(135deg, #002c99, #001a5a);
    color:#fff;
    border: 1px solid #ffffff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:18px;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.4s ease;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.35);
}

#backToTop i{
    pointer-events:none;
}

/** Back To Top Style END **/


/*======= Toppers & Birthday Style =============*/
.card-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;  
}

.custom-card {
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.custom-card h3 
{
    color:#000000 !important;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-body {
    display: flex;
    overflow-x: auto;
    gap: 15px;
}

.card-item {
    min-width: 200px;
}

.card-img {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #fff;
}

.marks {
    color: #ffd700;
    font-weight: bold;
}

.wish {
    font-size: 13px;
}

.no-data {
    color: #302f2f;
    font-size: 14px;
}


.topper-wrapper {
    display: flex;
    overflow: hidden;
    gap: 20px;
    padding: 10px;
}

.card-item {
    min-width: 200px;
    background: #001a5a;
    color: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.card-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #fff;
}

.birthday-wrapper {
    display: flex;
    overflow: hidden;
    gap: 20px;
    padding: 10px;
}


@media (max-width: 768px) {
    .card-section {
        flex-wrap: wrap;  /* mobile में नीचे आना सही है */
    }
}
/*======= END Toppers & Birthday Style =============*/
   
   
 
 