/* Global Styles */
:root {
    --primary-color: #ffcd00;
    --primary-dark: #ffcd00;
    --secondary-color: #1a1a2e;
    --accent-color: #e74c3c;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}


/* carousel */

.notice-section {
    background: #fafafa;
    padding: 60px 0;
    text-align: center;
}

.notice-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffcd00;
    margin-bottom: 5px;
}

.notice-sub {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.notice-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 10px;
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.1);
}

.ttxt{
    font-size: 10px !important;
}
.date-circle {
    background: #f2f2f2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.date-circle strong {
    font-size: 35px;
    color: #ff9800;
}

.date-circle span {
    font-size: 14px;
    color: #777;
}

.notice-content {
    text-align: left;
    max-width: 420px;
}

.tag-new {
    background: #ff4444;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 999px;
}

.notice-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px;
    color: #ffcd00;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffc107;
    font-weight: bold;
    
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #ff9800;

}

@media(max-width: 768px) {
    .notice-card {
        flex-direction: column;
    }

    .date-circle {
        margin-bottom: 15px;
    }

    .notice-content {
        text-align: center;
    }
}


/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    font-size: 1rem;
}

.top-bar a:hover {
    color: var(--primary-color) !important;
}

/* Navigation */
.navbar {
    
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #ffcd00;
    border-radius: 30px;
    position: fixed;
    top: 40px;
    width: 1170px;
    border: .5px solid #312F2C;

    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav {
    width: 100%;
    height: 40px;
    justify-content: center;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.4rem !important;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--white) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: #ffcd00;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0px 0;
    margin-top: 0px;
    min-width: 220px;
    animation: dropdownFade 0.3s ease;
    border-top: 4px solid orange;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding: 5px 20px;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid #e7bd11;
    border-radius: 10px;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 25px;
}

.dropdown-item:focus {
    background: var(--primary-color);
    color: var(--white);
}

.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}



.logo-container {
    
    padding: 10px 10px;
    margin-top: 30px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 15px rgba(0,0,0,0.1);*/
    
}



.btn-login {
    background: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 25px;
    padding: 0.5rem 1.1rem !important;
    font-size: 0.85rem;
}

.btn-login:hover {
    background: var(--white);
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
}

.welcome-text {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0rem;
    animation: fadeInDown 1s ease;
}

.school-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.motto-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    animation: fadeIn 1s ease 0.6s both;
}

/* Notice Board */
.notice-board {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 100;
}

.notice-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.notice-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.motto-small {
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 5px;
    opacity: 0.9;
}

.notice-content {
    max-height: 300px;
    overflow-y: auto;
}

.notice-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.notice-item .date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.notice-item .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
}

.notice-footer {
    padding: 15px;
    text-align: center;
    background: var(--bg-light);
}

/* Floating Buttons */
.floating-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.title-underline-dark {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #121244, #262656);
    margin: 0 auto;
    border-radius: 2px;
}

.btn-fees {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-fees:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-admission {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.btn-admission:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-admission small {
    font-size: 0.7rem;
    display: block;
    opacity: 0.8;
}

/* Quick Links */
.quick-links {
    background: var(--white);
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    border-radius: 15px;
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.quick-link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

.quick-link-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.quick-link-card span {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-title .year {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    margin: 0 auto;
    border-radius: 2px;
}

.subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-light);
}

.stat-box {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-box:hover {
    background: var(--primary-color);
    color: var(--white);
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-box h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.85rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
}

/* Message Section */
.message-section {
    background: var(--bg-light);
}

.nav-pills .nav-link {
    color: var(--secondary-color);
    background: var(--white);
    border-radius: 30px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 500;
    border: 2px solid transparent;
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.nav-pills .nav-link:hover:not(.active) {
    border-color: var(--primary-color);
}

.message-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.message-author img {
    width: 100%;
    height: 350px;
    /*object-fit: cover;*/
    border: 5px solid var(--primary-color);
}

/* Facilities Section */
.facilities-section {
    background: var(--white);
}

.facility-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    background: var(--primary-color);
    transform: translateY(-10px);
}

.facility-card:hover .facility-icon {
    background: var(--white);
    color: var(--primary-color);
}

.facility-card:hover h5 {
    color: var(--white);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    transition: var(--transition);
}

.facility-card h5 {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin: 0;
}

/* Toppers Section */
.toppers-section {
    background: var(--bg-light);
}

.topper-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.topper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.topper-card .rank {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.topper-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.topper-card h5 {
    padding: 15px 15px 5px;
    font-size: 1rem;
    color: var(--secondary-color);
}

.topper-card .percentage {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.topper-card .stream {
    display: block;
    padding-bottom: 15px;
    color: var(--text-light);
}

/* Achievements Section */
.achievements-section {
    background: var(--white);
}

.achievement-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.achievement-image {
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-content {
    padding: 20px;
}

.achievement-content h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
}

.gallery-stats {
    margin-top: 1rem;
}

.gallery-stats .badge {
    margin: 0 5px;
    padding: 8px 15px;
    font-size: 0.85rem;
}

.gallery-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-content {
    padding: 20px;
}

.gallery-content h5 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.gallery-content .stats {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-card:hover .quote {
    color: var(--white);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-card .author h6 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card .author small {
    color: var(--primary-color);
}

.testimonial-card:hover .author small {
    color: var(--white);
}

/* Birthday Section */
.birthday-section {
    background: var(--bg-light);
}

.birthday-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.birthday-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.birthday-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.birthday-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.birthday-card h5 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.birthday-card .class {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.birthday-card .date {
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Admission CTA */
.admission-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.motto-quote {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--primary-color);
}

.hashtag {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

.cta-description {
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.footer-links h5,
.footer-app h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #aaa;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .logo-center {
        order: -1;
        margin: 10px 0 !important;
    }
    
    .logo-container {
        margin: 0;
        padding: 10px 15px;
    }
    
    .school-logo {
        font-size: 1.5rem;
    }
    
    .logo-text h5 {
        font-size: 0.7rem;
    }
    
    .notice-board {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
    }
    
    .carousel-caption {
        position: relative;
        top: auto;
        transform: none;
        padding: 40px 20px;
    }
    
    .school-name {
        font-size: 2.5rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .floating-buttons {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        padding: 20px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
    
    .cta-description {
        padding-left: 0;
        border-left: none;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 3px solid var(--primary-color);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .motto-quote {
        font-size: 1.8rem;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .top-bar .d-flex {
        flex-direction: column;
        gap: 5px !important;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


@media (max-width: 992px) {
    .navbar {
        display: none !important;
    }
}


/* Desktop hidden */
@media (min-width: 992px) {
    .mobile-nav { display: none !important; }
}

/* Remove bullet dots */
.mobile-menu, .mobile-menu ul, .submenu {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

/* Main top bar */
.mobile-nav {
    width: 100%;
    margin-bottom: -8px;
    background: transparent;
    padding: 8px 0;
}

/* TOP BAR STYLE */
.mobile-topbar {
    background: #ffc928;
    width: 95%;
    margin: auto;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-menu {
    background: #000;
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    border: none;
    font-size: 20px;
}

/*.top-logo {
    height: 40px;
}*/
.top-logo {
    height: 80px;
    position: absolute;
    left: 39.5%;
}

/* Right Icons */
.right-icons {
    display: flex;
    gap: 10px;
}

.left-icons{
    display: flex;
    gap: 10px;
    margin-left: -38%;
}

.icon-circle {
    width: 43px;
    height: 43px;
    background: #000;
    border-radius: 50%;
    color: #ffc928;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

/* MOBILE MENU BOX */
.mobile-menu {
    width: 95%;
    margin: auto;
    margin-top: 10px;
    background: #ffc928;
    border-radius: 12px;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    max-height: 600px;
    opacity: 1;
}

/* MENU ITEM */
.menu-item {
    border-bottom: 2px solid #eedc9b;
}

.menu-link {
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* SUBMENU */
.submenu {
    background: #fff0b5;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.menu-item.open .submenu {
    max-height: 300px;
}

.menu-item.open i {
    transform: rotate(180deg);
}
/* Remove blue color & underline from all links */
.mobile-menu a,
.menu-link,
.submenu a {
    text-decoration: none !important;
    color: #000 !important;     /* Black text */
}

/* Hover bhi clean rahe */
.mobile-menu a:hover,
.submenu a:hover {
    text-decoration: none !important;
    color: #000 !important;
}
.menu-link i,
.submenu a i {
    color: #000 !important;
}

.fas.fa-chevron-down:before,
.fas.fa-chevron-down:after {
    content: none !important;
}

.dropdown-toggle::after {
    
    border-top: .4em solid !important;
    border-right: .4em solid transparent !important;
    border-left: .4em solid transparent !important;
}

/* MOBILE FIX ONLY */
@media (max-width: 600px) {

    .school-name {
        font-size: 1.5rem !important;
    }

    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item {
        width: 100% !important;
        height: 400px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* Image fit properly */
    .hero-section .carousel-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }

    /* Caption fix so it comes in front (NOT behind) */
    .hero-section .carousel-caption {
        position: absolute !important;
        bottom: 20px !important;     /* caption ko neeche fix */
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 10 !important;       /* image se upar lana */
        width: 100% !important;
        padding: 0 20px !important;
        text-align: center !important;
        color: #fff !important;
    }

}

/* MOBILE VIEW ONLY (max 600px) */
@media (max-width: 600px) {
    .facility-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .facility-item {
        height: 160px !important;  /* mobile friendly height */
        background-size: cover !important;
        background-position: center !important;
        position: relative;
        border-radius: 6px;
        overflow: hidden;
    }

    .facility-item .content h3 {
        font-size: 12px !important;
        line-height: 14px !important;
    }

    .facility-item .icon {
        width: 30px !important;
        margin-bottom: 5px;
    }
}


  /* Hero Section Like DWPS */
.inner-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.inner-hero-bg img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(0.27);
}

.inner-hero-content {
    position: absolute;
    z-index: 5;
    color: #fff;
}

.inner-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
}

.inner-hero-content p {
    margin-top: 10px;
    font-size: 20px;
    opacity: 0.9;
}

/* Yellow Underline */
.underline {
    width: 60px;
    height: 6px;
    background: #f1c40f;
    border-radius: 10px;
    margin: 12px auto;
}
