:root {
    /* Main Colors */
    --primary-color: #000062;    /* Dark Blue (Footer/Headers) */
    --secondary-color: #c4001d;  /* School Red (Buttons/Headings) */
    --accent-color: #ffcc00;     /* Yellow (Highlights/Span) */
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-text: #333333;
    --muted-text: #666666;
    --black: #000000;
    
    /* Spacing & Transitions */
    --main-transition: all 0.3s ease-in-out;
    --border-radius: 8px;
}


/* Main Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

.three h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;
}
.three h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #111;
}
.three h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #333;
}

 

/* TOP BAR */
.topbar {
  background: var(--black) !important;
  color: #fff;
  font-size: 14px;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top-right span {
  margin-left: 20px;
}

/* HEADER */
.header {
  background: #fff;
  padding: 2px 0;
  border-bottom: 1px solid #ddd;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  margin-right: 10px;
}

.school-name h2 {
  font-size: 20px;
  color: #8b2c2c;
}

.school-name p {
  font-size: 14px;
  color: #444;
}

/* NAVBAR */
.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  display: block;
  font-weight: 500;
}

.navbar ul li a:hover {
  color: #a5302a;
}

/* MENU TOGGLE (MOBILE) */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
  
ul.dropdown-menu {
    display: none;
}

/* Dropdown show on hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block !important;
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {

  .topbar-flex {
    flex-direction: column;
    gap: 5px;
  }

  .top-right span {
    margin-left: 0;
    display: block;
  }
}

/* hero section start  */
/* HERO SLIDER SETTINGS */
/* Slider Main Container */
.hero {
    width: 100%;
    background-color: #000; /* Loading ke time ya gaps mein black dikhega */
    overflow: hidden;
}

/* Carousel Item Styling */
.carousel-item {
    width: 100%;
    /* Desktop Aspect Ratio (16:7 ya 21:9 best hota hai banner ke liye) */
    aspect-ratio: 16 / 7; 
    
    background-size: cover; /* Image ko stretch nahi hone dega */
    background-position: center top; /* Top se focus rakhega taaki faces na kutein */
    background-repeat: no-repeat;
    
    /* Smooth transition for fade effect */
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* --- Tablet View --- */
@media (max-width: 991px) {
    .carousel-item {
        aspect-ratio: 16 / 9; /* Tablet par thoda bada dikhega */
    }
}

/* --- Mobile View --- */
@media (max-width: 576px) {
    .carousel-item {
        /* Mobile par height fix karna better hai taaki image bahut choti na ho jaye */
        height: 300px; 
        aspect-ratio: auto;
        background-position: center center;
    }
    
    /* Mobile controls adjustment */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

/* Optional: Black Overlay agar tum chaho (varna ise hata dena) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Halka dark effect */
    pointer-events: none;
}
/* --- Mobile View Updated --- */
@media (max-width: 576px) {
    .carousel-item {
        /* Mobile par height fix ki jagah auto rakhein taaki aspect ratio kaam kare */
        height: auto; 
        aspect-ratio: 4 / 3; /* Mobile ke liye standard square-ish ratio */
        
        /* Image ko poora dikhane ke liye changes */
        background-size: 100% 100%; /* Image ko width aur height dono mein fit kar dega */
        background-position: center center;
    }
    
    /* Mobile controls adjustment */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    
    a.navbar-brand.d-flex.align-items-center {
    width: 75%;
}
}

/* hero section end  */

/* about us section start  */

/* SECTION */
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

/* FLEX */
.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 50px;
}

/* IMAGE */
.about-img img {
  width: 100%;
  max-width: 450px;
}

/* CONTENT */
.about-content {
  max-width: 550px;
}

.small-heading {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.read-btn {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-btn:hover {
  letter-spacing: 1px;
}

/* about us section end  */

/* Our journey section start */
.journey-section {
  padding: 80px 0;
  background: #f8f9fb;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
}

/* FLEX */
.journey-flex {
  display: flex;
  gap: 40px;
}

/* LEFT STATS */
.stats {
  width: 35%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  color: #1a2a44;
}

.stat-box span {
  background:  var(--accent-color);
  color: var(--dark-text);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  margin: 5px 0;
}

.stat-box p {
  font-size: 13px;
  color: #555;
}

/* RIGHT GRID */
.gallery-grid {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* GALLERY CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 14px;
}

/* HOVER */
.gallery-card:hover img {
  transform: scale(1.1);
}
 
/* Our journey section end   */


/* facility section start */

/* Color Palette */
.title-blue { color: #2e3192; }

/* The Icon Container */
.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px dashed transparent; /* Base for the rings */
}

/* Icons within the circles */
.icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Specific Border Colors with Dashed effect */
.border-orange { border: 2px dashed #f36b21; }
.border-blue   { border: 2px dashed #00aeef; }
.border-red    { border: 2px dashed #ed1c24; }
.border-darkblue { border: 2px dashed #2e3192; }
.border-green  { border: 2px dashed #8cc63f; }
.border-purple { border: 2px dashed #662d91; }

/* Center Image Styling */
.main-img-container img {
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
}

/* Typography */
.facility-card p {
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Fix for Mobile (Alignment) */
@media (max-width: 991px) {
    .facility-card { text-align: center !important; }
    .facility-card .d-flex { 
        justify-content: center !important; 
        flex-direction: column;
    }
    .facility-card h5 { margin: 10px 0 !important; }
}

/* facility section end  */

/* cta section start  */

.quote-section {
    position: relative;
    background: url('your-image.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dark background effect */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Photo ko dark karne ke liye */
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.7rem;
    line-height: 1.4;
    font-family: sans-serif;
    letter-spacing: 0.5px;
}

/* Apply Now Button Design */
.btn-apply {
    background-color: #0b4199 !important;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 500;
}

/* Vertical Sticky Button (Right Side) */
.sticky-enquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #0d6efd;
    color: white;
    padding: 10px 25px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    z-index: 999;
    cursor: pointer;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

/* For Responsive screens */
@media (max-width: 768px) {
    .quote-text { font-size: 1.2rem; }
    .sticky-enquiry { font-size: 12px; padding: 5px 15px; }
}

/* cta section end  */

/* campus section start  */

.campus-section {
    position: relative;
    /* Background Image Settings */
    background-image: url('images/clouds.png');
}

/* --- Campus Section Styles --- */
.campus-section {
    background-color: #fcfcfc;
    overflow: hidden;
}

/* Clouds Positioning */
.cloud-wrapper {
    margin-left: -10px; /* Aligns with text start */
}

.clouds-icon {
    max-width: 130px; /* Adjust size as needed */
    opacity: 0.8;
}

/* Badge Design */
.badge-highlights {
    display: inline-block;
    background-color: #fff1f1;
    color: #ed1c24;
    padding: 7px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #f9d6d6;
    letter-spacing: 0.3px;
}

/* Typography */
.campus-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

.campus-description {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 90%;
}

/* Gallery Grid Styling */
.gallery-img-box img {
    width: 100%;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-img-box img:hover {
    transform: scale(1.04);
}

.object-fit-cover {
    object-fit: cover;
    min-height: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .campus-title { font-size: 2.2rem; }
    .cloud-wrapper { text-align: center; }
    .campus-description { max-width: 100%; text-align: center; }
}

/* campus section end  */


/* gallery section start   */


.vsi-gallery-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.vsi-slider-container {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.vsi-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px; /* Images ke beech ka gap */
}

.gallery-box {
    width: 280px; /* Image width */
    flex-shrink: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- ANIMATIONS --- */

/* Left Side Slide */
.scroll-left {
    animation: slideLeft 40s linear infinite;
}

/* Right Side Slide */
.scroll-right {
    animation: slideRight 40s linear infinite;
}

/* Hover par dono ruk jayenge */
.vsi-slider-track:hover {
    animation-play-state: paused;
}

/* Keyframes for Left */
@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Aadhe track par loop reset */
}

/* Keyframes for Right */
@keyframes slideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .gallery-box { width: 180px; }
}


/* gallery section end  */



/* faq section start  */

/* FAQ Container Background (Optional pattern match) */
.faq-section {
    background-color: #fff;
}

/* Removing default Bootstrap background and borders */
.custom-faq-item {
    border: none !important;
    border-bottom: 1px solid #dee2e6 !important; /* Only bottom line */
    padding: 10px 0;
}

.custom-faq-btn {
    background-color: transparent !important;
    color: #333 !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 0 !important;
    box-shadow: none !important; /* Removes blue glow on click */
}

/* Changing the arrow icon color or style if needed */
.custom-faq-btn::after {
    background-size: 1.2rem;
}

/* Active state (when open) */
.custom-faq-btn:not(.collapsed) {
    color: #1b365d !important; /* Dark blue color from your theme */
}

.accordion-body {
    padding-left: 0 !important;
    padding-bottom: 20px;
}

/* faq section end     */






/* Footer section start  */
 
img.footer-company {
    width: 100px;
}
.main-footer {
    background-color: #000; /* Black background as per design */
    position: relative;
    overflow: visible; /* Important: taaki white box upar nikal sake */
}

/* White Vertical Logo Card */
.footer-logo-card {
    border-radius: 0 0 10px 10px;
    z-index: 10;
    margin-top: -60px; /* Isse box upar ki taraf niklega */
}

/* Footer Links Styling */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--main-transition);
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links li a::before {
    content: "";
    transition: 0.3s;
}

/* Social Icons */
.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .main-footer {
        background-color: #000;
        text-align: center;
    }
    .footer-logo-card {
        margin-top: 0; /* Mobile par box upar nahi jayega */
        margin-bottom: 40px;
        min-height: auto;
    }
    .social-icons {
        justify-content: center;
    }
    .text-end {
        text-align: center !important;
    }
}


.footer-links li {
    margin-bottom: 10px;
    text-align: left;
}

/* footer section end  */


/* about section top banner  start */

/* .story-banner {
    width: 100%;
    
    background:url('images/top banner.png') no-repeat center bottom;
    
 
    background-size: cover;  
    height: 450px;  
    position: relative;
    overflow: hidden;
} */

/* Breadcrumb Styling (Tanvik style) */
.story-banner .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--white);
    padding: 0 10px;
}

.story-banner .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--main-transition);
}

.story-banner .breadcrumb-item a:hover {
    color: var(--accent-color); /* Yellow highlight */
}

/* 3. MOBILE RESPONSIVE FIX (Important) */
@media (max-width: 768px) {
    .story-banner {
        height: 300px; /* Mobile par height kam kar do */
        background-position: center bottom; /* Bottom logic se wave shape visible rahega */
    }
    
    .story-banner h1 {
        font-size: 2.5rem; /* Text size mobile par theek */
    }
}

/* about section top banner end  */


/* LOADER FULL SCREEN */
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CANVAS SIZE */
#loaderCanvas {
  width: 150px;
  height: 150px;
}
/* loader section end  */

 

/* mission and vision section start  */

.vision-mission-section {
    background-color: #ffffff;
}

/* Icon Circle Styling */
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color); /* Red color from root */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Image Box Styling */
.vision-img-box {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--main-transition);
}

.vision-img-box:hover {
    transform: scale(1.02);
}

.vision-img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Vertical Line Adjustment */
.content-body {
    border-color: var(--secondary-color) !important; /* Custom Red border */
}

.content-body p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .vision-img-box img {
        height: 250px;
    }
    .content-header h2 {
        font-size: 1.8rem;
    }
}

/* mission vision section end  */

/* cta section with background image start  */

.join-us-cta {
    position: relative;
    padding: 100px 0;
    background: url('images/topbanner.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

/* Blue Overlay to match the design */
.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(46, 49, 113, 0.85); /* Deep Blue with opacity */
 
}

.z-index-2 { z-index: 2; }

/* Text Styling */
.join-text {
    color: var(--accent-color); /* Yellow color from root */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-heading {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    /* Fancy font use kar sakte ho jaise 'Fredoka' or 'Pangolin' */
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* --- BUTTONS --- */
.btn-enroll {
    background: linear-gradient(to bottom, #ffdb4d, #f9bc06); /* Yellow Gradient */
    color: #333 !important;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 188, 6, 0.3);
    transition: var(--main-transition);
}

.btn-download {
    background-color: #8e44ad; /* Purple shade from screenshot */
    color: #fff !important;
    font-weight: bold;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    transition: var(--main-transition);
}

.btn-enroll:hover, .btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-heading { font-size: 2rem; }
    .cta-subtext { font-size: 0.95rem; }
    .join-us-cta { padding: 60px 0; }
}

/* cta section with background image end  */








/* contact page start   */

.admission-card {
    background-color: #dc3545; /* Tumhara school red color */
}

.icon-box {#dc3545
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Form Inputs Styling */
.form-control, .form-select {
    border: 1px solid #dee2e6;
    padding: 12px;
    font-size: 0.9rem;
    background-color: #fcfcfc;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

/* Button Styling */
.btn-send {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: #a00018; /* Thoda dark red */
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive fixes */
@media (max-width: 991px) {
    .ps-lg-5 { padding-left: 12px !important; }
    .admission-card { margin-bottom: 20px; }
}


.map-section {
    position: relative;
    line-height: 0; /* Gap khatam karne ke liye */
}

.map-container {
    filter: grayscale(20%); /* Thoda sober look */
    transition: var(--main-transition);
}

.map-container:hover {
    filter: grayscale(0%); /* Hover par full color */
}

/* Floating Card positioning */
.map-overlay-card {
    position: absolute;
    top: -100px; /* Isse card thoda upar map par overlap karega */
    z-index: 10;
    border-left: 5px solid var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .map-container iframe {
        height: 350px;
    }
}

/* contact page end  */



/* Academic page start  */

/* Custom Font (Bachon wale playful look ke liye) */
.program-card h3 {
    color: #fff;
}

.program-card {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.card-img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* --- THEMES (Colors as per Image) --- */

/* Daycare (Blue) */
.daycare-theme .card-header-custom, 
.daycare-theme .card-body-custom { background-color: #0d47a1; }

/* Playgroup (Red) */
.playgroup-theme .card-header-custom, 
.playgroup-theme .card-body-custom { background-color: #f44336; }

/* Kindergarten (Purple) */
.kindergarten-theme .card-header-custom, 
.kindergarten-theme .card-body-custom { background-color: #7b1fa2; }

/* Yellow Button Styling */
.btn-yellow {
    background: #ffdb4d;
    color: #333;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.btn-yellow:hover {
    background: #f9bc06;
    transform: scale(1.05);
}

/* Header border radius fix */
.card-header-custom {
    border-radius: 30px 30px 0 0;
}

/* Body border radius fix */
.card-body-custom {
    border-radius: 0 0 30px 30px;
}

/* academic page end   */




/* pre primary section start  */

.nurturing-section {
    background-color: #fff;
}

/* Image Wrapper with Shadow */
.info-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--main-transition);
}

.info-img-wrapper:hover {
    transform: scale(1.01);
}

.info-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Check Icons */
.check-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Icon size fix */
    font-size: 1.1rem;
}

/* Text adjustments */
.feature-list p {
    font-size: 1.05rem;
    color: #444;
}

/* Responsive Handling */
@media (max-width: 991px) {
    .ps-lg-5 {
        padding-left: 12px !important;
    }
    .nurturing-section h2 {
        font-size: 2.2rem;
    }
}

/* pre-primary section end  */


/* pre primary second section start   */

.life-at-section {
    background-color: #fff;
}

/* Feature Boxes Styling */
.feature-box {
    background-color: #f8f9fa; /* Light grey background like screenshot */
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--main-transition);
}

.feature-box:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Button Styling */
.btn-apply {
    background-color: #c4001d; /* Red color */
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    border: none;
    transition: 0.3s;
}

.btn-apply:hover {
    background-color: #1b365d;
    color: #fff;
    transform: translateX(5px);
}

/* Slider Custom Arrows */
.custom-arrow {
    background-color: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
    width: 10%;
}

/* Big Round Corners for Slider */
.rounded-5 {
    border-radius: 30px !important;
}

@media (max-width: 991px) {
    .life-at-section { text-align: center; }
    .feature-box { text-align: left; }
    .btn-apply { margin-bottom: 30px; }
}

/* Sirf 'lpContentSlider' ke andar wale items ki height change hogi */
#lpContentSlider .carousel-item {
    height: 400px !important;    /* Home page par 100vh rahega, yahan 400px ho jayega */
    min-height: auto !important; /* Min-height ko reset kar diya */
    transition: transform 0.6s ease-in-out !important; /* Agar transition fast karni ho */
}

/* Slider ki images ke liye fix */
#lpContentSlider .lp-slider-img {
    height: 400px !important;
    object-fit: cover;
    width: 100%;
}

/* Mobile responsive height */
@media (max-width: 768px) {
    #lpContentSlider .carousel-item,
    #lpContentSlider .lp-slider-img {
        height: 250px !important;
    }
}

/* pre-primary-second section end  */



/*leadership section css */



/* Our leasership section start */
.chairman-section {
  padding: 90px 0;
  background: #f8fafc;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

.chairman-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.chairman-image::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #b00020;
  /* brand color */
}

.chairman-image img {
  width: 100%;
  display: block;
}

.chairman-content .role {
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
}

.chairman-content h2 {
  font-size: 34px;
  margin: 10px 0 25px;
  color: #0f172a;
}

.quote-box {
  background: #ffffff;
  border-left: 5px solid var(--primary);
  padding: 22px 26px;
  margin-bottom: 22px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  position: absolute;
  top: -18px;
  left: 20px;
  font-size: 60px;
  color: #b00020;
  opacity: 0.2;
}

.quote-box p {
  font-size: 18px;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
}

.desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 25px;
}


/* Container management */
.chairman-grid {
    display: flex;
    flex-direction: row; /* Desktop par side-by-side */
    align-items: center;
    gap: 40px;
    padding: 60px 15px;
}

/* Image styling */
.chairman-image {
    flex: 1;
    max-width: 450px;
}

.chairman-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content styling */
.chairman-content {
    flex: 1.5;
}

.chairman-content .role {
    color: #f36f21; /* Orange color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.chairman-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b365d;
    margin-bottom: 25px;
}

/* Quote box styling */
.quote-box {
    background: #f8faff;
    padding: 25px 35px;
    border-radius: 15px;
    position: relative;
    border-left: 5px solid #1b365d;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 50px;
    color: rgba(27, 54, 93, 0.1);
    position: absolute;
    top: 5px;
    left: 15px;
    line-height: 1;
}

.quote-box p {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.desc {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* --- Responsive Media Query (Mobile Fix) --- */

@media (max-width: 991px) {
    .chairman-grid {
        flex-direction: column; /* Mobile par image upar, text niche */
        text-align: center;
        gap: 30px;
    }

    .chairman-image {
        max-width: 350px; /* Mobile par image ka size control */
        margin: 0 auto;
    }

    .chairman-content h2 {
        font-size: 1.8rem;
    }

    .chairman-content .role {
        justify-content: center;
    }

    .quote-box {
        text-align: left; /* Quote hamesha left rahe toh better lagta hai */
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .chairman-image {
        max-width: 100%;
    }
    
    .chairman-content h2 {
        font-size: 1.5rem;
    }
}

/*leadership section css end  */


/*admission section css start */

/* Container Background */
.smart-admission-section {
    background-color: #f0f2f5;
    padding: 80px 0;
}

/* White form area ke piche abstract pattern */
.abstract-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Light Abstract Pattern Link */
    background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png"); 
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.z-index-2 { z-index: 2; }

/* Form Elements */
.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.9);
}

.admission-wrapper {
    border: none;
}

/* Responsive Image Height */
@media (max-width: 991px) {
    .admission-banner-img img {
        height: auto !important;
        max-height: 400px;
    }
}



/*admission section css end */





/*Activities page css start */

/* Section Main Background */
.social-hub {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Glassmorphism Card Style */
.social-hub .card {
    transition: all 0.4s ease;
    border: none !important;
    background: #ffffff;
}

.social-hub .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Header Gradient Styles */
.header-fb { background: linear-gradient(135deg, #1877F2, #0056b3); }
.header-activity { background: linear-gradient(135deg, #1d976c, #11998e); }
.header-insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.card-header-title {
    padding: 20px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Custom Scrollbar for Activity & Feed */
.custom-scroll {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

/* Activity Items Styling */
.activity-item {
    transition: 0.3s;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.activity-item:hover {
    background: #fdfdfd;
    border-color: #1d976c;
}

.activity-img {
    height: 160px;
    object-fit: cover;
    width: 100%;
    transition: 0.5s;
}

.activity-item:hover .activity-img {
    transform: scale(1.05);
}

/* Instagram Grid Zoom */
.insta-zoom {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.insta-zoom img {
    transition: 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-zoom:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(80%);
}



/*Activities page css end */








