body {
    font-family: Arial, sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

/* Navbar */
.navbar {
    height: 85px !important; /* Keeps navbar compact */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays on top */
    transition: all 0.3s ease-in-out;
    padding: 0 10px 5px;
}

/* Logo */
.navbar-brand img {
    width: auto;
    margin-bottom:12px;
}



@media (max-width: 768px) {
    .navbar-brand img {
        margin-top: 0px !important;
        padding: 0px !important;
    }
}



/* Navbar Toggler */
.navbar-toggler {
    padding: 4px 8px;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
}

/* Navbar Items */
.navbar-nav .nav-item {
    padding: 5px 10px;
}

/* Navbar Links */
.navbar-nav .nav-item a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover {
    color: #007bff; /* Change color on hover */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    text-decoration: none;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* 🔹 Responsive Navbar Fixes */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start;
        gap: 5px;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}




/* crusel */

.carousel {
    padding: 0% !important;
    width: 100%;
    overflow: hidden;
}
.carousel img {
    width: 100%;
    height: auto;
}


/* About Section */





.heading-subtitle {
    color: #1e5aaa;
    font-style: italic;
    font-size: 18px;
}

.heading-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.card {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.card-body {
    text-align: left;
    padding: 20px;
}


/* featuress*/
.feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-number {
    font-size: 32px;
    font-weight: bold;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.feature-text {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* Color Styles */
.blue-text { color: #1e5aaa; }
.orange-text { color: #cc5500; }


/* class program */
/* Program Section Background */
.programs-section {
    background: url("../images/background.png") no-repeat center top;
    background-size: cover;
    background-position: 50% -100px; /* Move background 50px upwards */
 
}



/* Headings & Description */
.programs-section .subheading {
    font-style: italic;
    color: #4a90e2;
    font-size: 18px;
    text-align: center;
}

.programs-section .main-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

.programs-section .description {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Programs Grid */
.programs-grid {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping */
    justify-content: center;
    gap: 20px; /* Space between cards */
    max-width: 100%; /* Ensure it never exceeds the screen width */
    width: 100%;
}

/* Program Card */
.program-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.333% - 20px); /* Show 3 per row on large screens */
    max-width: 300px;
    text-align: center;
    min-width: 0; /* Prevent flexbox items from stretching */
}

/* Responsive for Tablets */
@media (max-width: 768px) {
    .program-card {
        width: calc(50% - 20px); /* Show 2 per row on tablets */
    }
}

/* Responsive for Mobile */
@media (max-width: 480px) {
    .program-card {
        width: 100%; /* Full width on small screens */
    }
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

/* Ensure images load correctly */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay Effect */
.image-container .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hover Effect */
.image-container:hover .overlay {
    opacity: 1;
}

/* Program Name (Below Image) */
.program-name {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 12px 0;
    border-radius: 0 0 10px 10px;
}

/* Different Background Colors */
.playgroup-bg {
    background: #D96D1E;
}

.nursery-bg {
    background: #017BFF;
}

.lkg-bg {
    background: #5C43DA;
}

.ukg-bg {
    background: #04618D;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .programs-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .program-card {
        width: 220px;
    }

    .image-container {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .program-card {
        width: 180px;
    }

    .image-container {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .programs-section {
        padding: 40px 5%;
    }

    .program-card {
        width: 100%;
        max-width: 100%;
    }
}

/* our usps*/
.circle-container {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 130px;
    height: 130px;
    position: absolute;
    border-radius: 50%;
    background-color: #EAF5F7;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.circle img {
    width: 90%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.circle:hover img {
    transform: scale(1.1);
}

/* Adjust Circle Positions */
.circle:nth-child(1) { transform: translate(180px, 0px); }  /* Right */
.circle:nth-child(2) { transform: translate(140px, -140px); } /* Top-Right */
.circle:nth-child(3) { transform: translate(0px, -180px); } /* Top */
.circle:nth-child(4) { transform: translate(-140px, -140px); } /* Top-Left */
.circle:nth-child(5) { transform: translate(-180px, 0px); } /* Left */
.circle:nth-child(6) { transform: translate(-140px, 140px); } /* Bottom-Left */
.circle:nth-child(7) { transform: translate(0px, 180px); } /* Bottom */
.circle:nth-child(8) { transform: translate(140px, 140px); } /* Bottom-Right */

/* Center Text Area */
#circle-center {
    position: absolute;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Title Styling */
#circle-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}



/* Description Styling */
#circle-description {
    font-size: 14px;
    color: #555;
}

/* Show the card ONLY when hovering over a circle */
#circle-center.active {
    opacity: 1;
}

/* Responsive Adjustments */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .circle-container {
        width: 350px;
        height: 350px;
    }

    .circle {
        width: 110px;
        height: 110px;
    }

    /* Adjust Circle Positions */
    .circle:nth-child(1) { transform: translate(150px, 0px); }
    .circle:nth-child(2) { transform: translate(120px, -120px); }
    .circle:nth-child(3) { transform: translate(0px, -150px); }
    .circle:nth-child(4) { transform: translate(-120px, -120px); }
    .circle:nth-child(5) { transform: translate(-150px, 0px); }
    .circle:nth-child(6) { transform: translate(-120px, 120px); }
    .circle:nth-child(7) { transform: translate(0px, 150px); }
    .circle:nth-child(8) { transform: translate(120px, 120px); }

    #circle-center {
        width: 180px;
        height: 180px;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    .circle-container {
        width: 300px;
        height: 300px;
    }

    .circle {
        width: 90px;
        height: 90px;
    }

    /* Adjust Circle Positions */
    .circle:nth-child(1) { transform: translate(120px, 0px); }
    .circle:nth-child(2) { transform: translate(100px, -100px); }
    .circle:nth-child(3) { transform: translate(0px, -120px); }
    .circle:nth-child(4) { transform: translate(-100px, -100px); }
    .circle:nth-child(5) { transform: translate(-120px, 0px); }
    .circle:nth-child(6) { transform: translate(-100px, 100px); }
    .circle:nth-child(7) { transform: translate(0px, 120px); }
    .circle:nth-child(8) { transform: translate(100px, 100px); }

    #circle-center {
        width: 160px;
        height: 160px;
        font-size: 12px;
    }
}

/* Small Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .circle-container {
        width: 250px;
        height: 250px;
    }

    .circle {
        width: 75px;
        height: 75px;
    }

    /* Adjust Circle Positions */
    .circle:nth-child(1) { transform: translate(100px, 0px); }
    .circle:nth-child(2) { transform: translate(80px, -80px); }
    .circle:nth-child(3) { transform: translate(0px, -100px); }
    .circle:nth-child(4) { transform: translate(-80px, -80px); }
    .circle:nth-child(5) { transform: translate(-100px, 0px); }
    .circle:nth-child(6) { transform: translate(-80px, 80px); }
    .circle:nth-child(7) { transform: translate(0px, 100px); }
    .circle:nth-child(8) { transform: translate(80px, 80px); }

    #circle-center {
        width: 140px;
        height: 140px;
        font-size: 11px;
    }

    #circle-title {
        font-size: 16px;
    }

    #circle-description {
        font-size: 12px;
    }
}


/*footer section*/

.footer-section {
    background: url("../images/footer.png") no-repeat center top;
    background-size: cover;
    background-position: 50% -100px; /* Move background 50px upwards */
    padding: 60px 10% 25px 10%; /* Increase padding to adjust content */
    text-align: center;
}


/* Logo & Description */
.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 16px;
    color:white;
    line-height: 1.6;
    text-align: justify;

}

/* Quick Links */
.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color:white;
}

.footer-links {
    display: flex;
    justify-content:center;
    text-align: justify;
    margin-left: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
    margin-left: 20px;

}

.footer-links ul li a {
    text-decoration: none;
color:white;
    font-size: 14px;
}

.footer-links ul li a:hover {
    text-decoration: #b4cce7 !important;
}

/* Contact Details */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 14px;
    color:white;
    margin-bottom: 4px;
    text-align: start;
}

.footer-contact i {
    color: #007bff;
    margin-right: 8px;
}



/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    font-size: 13px;
    color:white;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons span {
    margin-right: 10px;
}

.social-icons a img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    transition: transform 0.2s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}



/* fracnchise Section*/

.franch-section {
    background: url("../images/background.png") no-repeat center top;
    background-size: cover;
    background-position: 50% -100px; /* Move background 50px upwards */
}
.franchise-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
width:100%;
  margin: auto;
}

.franchise-text {
    width: 55%;
}

.franchise-subtitle {
    font-style: italic;
    color: #1e5aaa;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    border-top: 2px solid #1e5aaa;
    padding-top: 5px;
}

.franchise-title {
    font-size: 40px;
    line-height: 1.2;
}

.franchise-title span {
    color: #1e5aaa;
}

.franchise-description {
    font-size: 18px;
    margin-top: 15px;
}

.franchise-description b {
font-weight: bold;}


.franchise-text .franchise-description {
    font-size: 17px !important;
}



.read-more {
    color: #1e5aaa;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.franchise-icons {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.icon-box {
    width: 30%;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-box img {
    width: 100px;
    height: 100px;
}



@media (max-width: 992px) {
    .franchise-section {
        flex-direction: column;
        text-align: center;
    }
    .franchise-text, .franchise-icons {
        width: 100%;
    }
    .franchise-icons {
        margin-top: 20px;
        justify-content: center;
    }
    .icon-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .franchise-title {
        font-size: 34px;
    }
    .icon-box {
        width: 100%;
    }
}


/* Awards Grid */
.awards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.award-icon {
    width: 120px;
    height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
}
 /* admission page*/


/* Admission Banner */
.admission-banner {
    --background: #007bff; /* Background color for the banner */
    --foreground: #faf5f5; /* Text color for the banner */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    width: fit-content; /* Adjust width based on content */
    max-width: 90%; /* Prevents it from being too wide on larger screens */
    margin: 10px auto; /* Centering the banner */
    padding: 20px 20px; /* Adds spacing around text */
    border: 2px dashed var(--background);
    color: var(--foreground);
    box-sizing: border-box;
    border-radius: 32px;
    background: linear-gradient(var(--background) 0 0) padding-box,
        linear-gradient(to bottom left, #2cd9ff, #7effb2 18%, #f4ff7a 84%, #ffd80e) border-box;
    text-align: center;
}

.admission-banner .container {
    position: fit-content;
    max-width: 100%;
}

/* Age Criteria Table */
.age-criteria table {
    border: 2px solid #362A2C;
}

.age-criteria th {
    background-color: #362A2C !important;
    color: white;
    font-size: 1.2rem;
}

.age-criteria td {
    font-size: 1rem;
    font-weight: 500;
}

/* Steps Section */
.step-card {
    background: rgb(223,208,234) !important;
background: linear-gradient(90deg, rgba(223,208,234,1) 0%, rgba(201,208,201,1) 42%, rgba(206,226,225,1) 75%) !important;    
        border-radius: 12px;
        transition: all 0.3s ease-in-out;
        padding: 20px;
    }

    /* Hover Effect */
    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Icon Styling */
    .icon-style {
        font-size: 40px;
        color: #007bff;
        background: #ffffff;
        padding: 15px;
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .icon-style {
            font-size: 35px;
            padding: 12px;
        }
    }

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.step-card i {
    font-size: 35px;
    color: #007bff;
}

/* Documents Section */
.documents-required h5 {
    color: #007bff;
    font-weight: bold;
}

.documents-required ul {
    list-style: none;
    padding: 0;
}

.documents-required ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.documents-required ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admission-banner {
        padding: 60px 0;
    }

    .step-card {
        text-align: center;
    }
}
 /* frquently */
 
/* FAQ Section Styling */
/* FAQ Section Styling */
.faq-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}
.faq-section .row {
    display: flex;
    align-items: start; /* Dono accordion ek hi level pe rahenge */
}

.faq-section .accordion {
    min-height: 100%; /* Ensures both sides stay aligned */
}

/* Add spacing between FAQ items */
.accordion-item {
    margin-bottom: 15px; /* Adds space between items */
    border-radius: 10px;
    overflow: hidden; /* Keeps corners rounded */
}

/* Accordion button styles */
.accordion-button {
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    transition: background 0.3s ease-in-out;
}

/* Colored Borders */
.border-green { border: 2px solid #69c326; }
.border-purple { border: 2px solid #a15ae2; }
.border-orange { border: 2px solid #ff9800; }
.border-blue { border: 2px solid #2196F3; }
.border-red { border: 2px solid #e53935; }

/* Ensure Smooth Expand/Collapse */
.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

/* Add spacing inside the collapsed content */
.accordion-body {
    padding: 21px;
}


/* about page */
.vision-section {
    background: #f8f9fa;
    padding: 50px 80px;
    border-left: 5px solid #007bff;
    border-right: 5px solid #007bff;
}

.card-about {
    transition: all 0.3s ease-in-out;
    background: rgb(223,208,234);
background: linear-gradient(90deg, rgba(223,208,234,1) 0%, rgba(201,208,201,1) 42%, rgba(206,226,225,1) 75%);    }

.card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

    /* Direction msg  Background */
    .director-desk {
        background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
        padding: 60px 0;
    }

    /* Director's Image - Full Width & Circular */
    .director-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 20px !important;
        object-fit: cover;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .director-img:hover {
        transform: scale(1.05);
    }

    /* Typography */
    .director-desk h2 {
        font-size: 28px;
        color: #0056b3;
    }

    .director-desk p {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }

    /* Make Both Columns Equal Height */
    .row.align-items-center {
        display: flex;
        align-items: stretch;
    }


    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .director-img {
            width: 70%;
            max-width: 300px;
        }

        .director-desk h2 {
            font-size: 24px;
        }
    }
