/* Custom CSS for Blooming Buds Public School */

:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --dark-color: #1b5e20;
    --light-color: #e8f5e8;
    --gradient-primary: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    --gradient-secondary: linear-gradient(135deg, #66bb6a 0%, #81c784 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
    background: var(--gradient-primary) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    transition: transform 0.3s ease;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.2rem 0;
    z-index: 9999 !important;
    position: relative;
}

.navbar.sticky-top {
    z-index: 9999 !important;
}

.navbar-nav {
    flex-wrap: nowrap;

  
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.navbar-nav::-webkit-scrollbar {
    display: none;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
    color: var(--dark-color) !important;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}


.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 1rem 0;
    margin-top: 0.5rem;
    z-index: 99999 !important;
    position: absolute !important;
    background: white;
    display: none !important;
    min-width: 200px !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

/* Additional hover selectors for better compatibility */
.dropdown:hover .dropdown-menu,
.nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateX(5px);
}

/* Mobile Navigation Fixes */
@media (max-width: 991px) {
    .navbar-nav {
        overflow-x: visible;
        flex-wrap: wrap;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: auto !important;
        margin-top: 0 !important;
        background-color: #f8f9fa !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        margin-left: 1rem !important;
        margin-bottom: 0.5rem !important;
        display: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-item {
        color: #495057 !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .dropdown-item:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background: var(--gradient-primary);
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: slideZoom 20s infinite;
}

@keyframes slideZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    font-weight: 500;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border: none;
    color: #fff !important;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

/* Section Styling */
.section-padding {
    padding: 42px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
   
    text-align: center;
    font-weight: 500;
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    background: white;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Enhanced News & Notice Board Section */
.news-section,
.notice-board-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-header,
.notice-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h3,
.notice-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-header p,
.notice-header p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-category {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.news-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Enhanced Notice Board */
.notice-board-content {
    flex-grow: 1;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.notice-board-content::-webkit-scrollbar {
    width: 6px;
}

.notice-board-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.notice-board-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.notice-icon {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.notice-details {
    flex-grow: 1;
}

.notice-details h6 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.notice-details p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.notice-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.notice-date {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
}

.notice-priority {
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-priority.high {
    background: #ffebee;
    color: #c62828;
}

.notice-priority.medium {
    background: #fff3e0;
    color: #ef6c00;
}

.notice-priority.low {
    background: #e8f5e8;
    color: var(--primary-color);
}

.notice-footer-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section,
    .notice-board-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .news-image img {
        height: 180px;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .notice-item {
        padding: 1.2rem;
    }
    
    .notice-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .notice-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .news-section, .notice-board-section {
        padding: 1.0rem;
    }
    
    .news-image img {
        height: 160px;
    }
    
    .section-header h3,
    .notice-header h3 {
        font-size: 1.3rem;
    }
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Events */
.event-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--secondary-color);
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand span {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.bg-light-blue {
    background-color: #f8f9ff;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

/* Additional Enhancements */
.bg-light-blue {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

/* Enhanced Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

/* Enhanced Events */
.event-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--secondary-color);
    transition: all 0.4s ease;
}

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

.event-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: var(--light-color);
    font-family: serif;
    line-height: 1;
}

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

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Enhanced Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 0.6rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Loading Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn:active {
    animation: pulse 0.3s ease;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar-brand div {
        display: none;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .event-card {
        padding: 2rem;
    }
}
/* Enhanced Footer Styles */
.footer-section {
    background-image:url(../img/footer.jpg);
    
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-widget {
    position: relative;
}

.footer-logo img {
    filter: brightness(1.2);
}

.footer-title {
    color: #a5d6a7;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff9800;
}

.footer-text {
    color: #c8e6c9;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #c8e6c9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    color: #ffb74d;
}

.social-links {
    display: flex;
    gap: 15px;

}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.contact-info
 {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff9800;
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item div {
    color: #c8e6c9;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item strong {
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright-text {
    color: #c8e6c9;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    color: #c8e6c9;
    font-size: 0.9rem;
}

.enquiry-link {
    background: #ff9800;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.enquiry-link:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .footer-widget {
        text-align: left;
        margin-bottom: 30px;
    }
    
   .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 15px;
    }

    .hero-section {

    height: 50vh;
 
}

.m-dnone {
    display: none;;
}

    
    .footer-links li {
        margin-bottom: 0;
    }
}
/* Enhanced Dropdown Hover Effects */
.nav-item.dropdown {
    position: relative !important;
}

.nav-item.dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 99999 !important;
    min-width: 200px !important;
    transform: none !important;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    transition: transform 0.3s ease;
}

/* Prevent smooth scrolling on dropdown toggles */
.dropdown-toggle[href="#"] {
    cursor: pointer;
}

/* Mobile dropdown styling */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: #f8f9fa;
        border: 0;
        box-shadow: none;
        z-index: 99999 !important;
        border-radius: 8px;
        margin-left: 1rem;
        margin-bottom: 0.5rem;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .dropdown-item {
        color: #495057;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
}
/* Force dropdown hover to work - Override Bootstrap */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown {
        position: relative !important;
    }
    
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        transform: none !important;
        margin-top: 0 !important;
    }
    
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
    }
}

/* Ensure dropdown menu positioning */
.navbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
}
/* Enhanced Message Sections (Principal & Director) */
.message-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.message-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.message-image-wrapper:hover .message-image {
    transform: scale(1.05);
}

.message-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.message-image-wrapper:hover .message-overlay {
    transform: translateY(0);
}

.message-info h4 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.message-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.message-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.message-credentials span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-credentials i {
    color: var(--secondary-color);
}

.message-content {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 30px;
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.message-text {
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.message-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.highlight-text {
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

.message-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.signature-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin-bottom: 1rem;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive Design for Message Sections */
@media (max-width: 768px) {
    .message-image {
        
    }
    
 .message-content {
        padding: 0.5rem;
        margin-top: 0.1rem;
    }
    .message-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
       padding: 0.3rem!important;
        margin-bottom: 0;
        border-radius: 0 0 15px 15px;
    }
    
    .message-image-wrapper:hover .message-overlay {
        transform: none;
    }
    
    .quote-icon {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .message-text {
        margin-top: 1rem;
    }
}
/* Sticky Header Enhancements */
.navbar.sticky-top {
    z-index: 9999 !important;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    position: sticky !important;
    top: 0;
}

.navbar-logo {
    transition: height 0.3s ease;
    width: 170px;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.3rem 0;
}



/* Remove body padding for sticky navbar */
body {
    padding-top: 0;
}

/* Sticky Contact Buttons */
.sticky-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    margin-left: auto;
}

.sticky-btn:hover {
    transform: translateY(-3px) translateX(-100px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    width: 160px;
    color: white;
    text-decoration: none;
    justify-content: flex-start;
    padding-left: 20px;
}

.sticky-btn i {
    min-width: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.sticky-btn .btn-text {
    position: absolute;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    white-space: nowrap;
    z-index: 2;
}

.sticky-btn:hover .btn-text {
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.call-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.enquiry-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    animation: none;
}
    

.call-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.enquiry-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.enquiry-btn:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}

/* Pulse Animation for Buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Mobile Responsive Sticky Buttons */
@media (max-width: 768px) {
    .sticky-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .sticky-btn:hover {
        transform: translateY(-3px) translateX(-85px);
        width: 140px;
        padding-left: 15px;
    }
    
    .sticky-btn .btn-text {
        right: 15px;
        font-size: 0.8rem;
    }
    
    .navbar-scrolled {
        padding: 0.2rem 0;
    }
    
    .navbar-scrolled .navbar-logo {
        height: 45px !important;
    }
}

@media (max-width: 576px) {
    .sticky-contact-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sticky-btn:hover {
        transform: translateY(-3px) translateX(-80px);
        width: 130px;
        padding-left: 15px;
    }
    
    .sticky-btn .btn-text {
        right: 15px;
        font-size: 0.75rem;
    }
}

/* Hide text on very small screens */
@media (max-width: 480px) {
    .sticky-btn:hover {
        transform: translateY(-3px);
        width: 50px;
        padding-left: 0;
    }
    
    .sticky-btn:hover .btn-text {
        opacity: 0;
    }
}
/* About Us Carousel Styling */
.about-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-carousel .carousel-inner {
    border-radius: 20px;
}

.about-carousel .carousel-image {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.about-carousel .carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
}

.about-carousel .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.about-carousel .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.about-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.about-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.about-carousel .carousel-indicators button.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.about-carousel .carousel-control-prev,
.about-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.about-carousel .carousel-control-prev {
    left: 20px;
}

.about-carousel .carousel-control-next {
    right: 20px;
}

.about-carousel .carousel-control-prev:hover,
.about-carousel .carousel-control-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: translateY(-50%) scale(1.1);
}

.about-carousel .carousel-control-prev-icon,
.about-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Animation Effects */
.about-carousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

.about-carousel .carousel-item-next,
.about-carousel .carousel-item-prev {
    display: block;
}

.about-carousel .carousel-item-next:not(.carousel-item-start),
.about-carousel .active.carousel-item-end {
    transform: translateX(100%);
}

.about-carousel .carousel-item-prev:not(.carousel-item-end),
.about-carousel .active.carousel-item-start {
    transform: translateX(-100%);
}

/* Mobile Responsive Carousel */
@media (max-width: 768px) {
    .about-carousel .carousel-image {
        height: 300px;
    }
    
    .about-carousel .carousel-caption {
        padding: 1.5rem;
    }
    
    .about-carousel .carousel-caption h5 {
        font-size: 1.2rem;
    }
    
    .about-carousel .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .about-carousel .carousel-control-prev,
    .about-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .about-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .about-carousel .carousel-control-next {
        right: 10px;
    }
    
    .about-carousel .carousel-control-prev-icon,
    .about-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .about-carousel .carousel-image {
        height: 250px;
    }
    
    .about-carousel .carousel-caption {
        padding: 1rem;
    }
    
    .about-carousel .carousel-caption h5 {
        font-size: 1rem;
    }
    
    .about-carousel .carousel-caption p {
        font-size: 0.8rem;
    }
}
/* Gallery Carousel Styling */
.gallery-carousel {
    border-radius: 20px;
    overflow: hidden;
   
    position: relative;
}

.gallery-carousel .carousel-inner {
    border-radius: 20px;
}

.gallery-carousel .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-carousel .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-carousel .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-carousel .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(76, 175, 80, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    padding: 2rem;
}

.gallery-carousel .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-carousel .gallery-overlay h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-carousel .gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.gallery-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.gallery-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-indicators button.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-control-prev {
    left: 20px;
}

.gallery-carousel .carousel-control-next {
    right: 20px;
}

.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Events Carousel Styling */
.events-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: white;
}

.events-carousel .carousel-inner {
    border-radius: 20px;
    padding: 2rem;
}

.events-carousel .event-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.events-carousel .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.events-carousel .carousel-item:hover .event-image img {
    transform: scale(1.05);
}

.events-carousel .event-card {
    background: transparent;
    border: none;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.events-carousel .event-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    display: inline-block;
    width: fit-content;
}

.events-carousel .event-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.events-carousel .event-date .month {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.events-carousel .event-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.events-carousel .event-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.events-carousel .event-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-carousel .event-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    font-size: 1rem;
}

.events-carousel .event-detail-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.events-carousel .carousel-control-prev,
.events-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.events-carousel .carousel-control-prev {
    left: 20px;
}

.events-carousel .carousel-control-next {
    right: 20px;
}

.events-carousel .carousel-control-prev:hover,
.events-carousel .carousel-control-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Testimonials Carousel Styling */
.testimonials-carousel {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel .carousel-inner {
    border-radius: 20px;
    padding: 2rem 0;
}

.testimonial-card-carousel {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.testimonial-quote {
    position: absolute;
    top: -10px;
    left: 30px;
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.testimonial-card-carousel .testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid var(--light-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card-carousel .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-author-info {
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
    margin-top: auto;
}

.testimonial-card-carousel .testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    margin-top: 1rem;
    color: #ffc107;
    font-size: 1rem;
}

.testimonials-carousel .carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.testimonials-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.testimonials-carousel .carousel-control-next {
    right: -25px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    background: rgba(46, 125, 50, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive for New Carousels */
@media (max-width: 768px) {
    .gallery-carousel .gallery-item {
        height: 250px;
    }

    .contact-item div {

    text-align: left;
}
    
    .gallery-carousel .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-carousel .gallery-overlay h5 {
        font-size: 1.1rem;
    }
    
    .gallery-carousel .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .events-carousel .carousel-inner {
        padding: 1.5rem;
    }
    
    .events-carousel .event-image {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .events-carousel .event-card {
        padding: 0.5rem;
    }
    
    .events-carousel .event-card h5 {
        font-size: 1.5rem;
    }
    
    .events-carousel .event-card p {
        font-size: 1rem;
    }
    
    .testimonial-card-carousel {
        padding: 2rem;
        margin: 0.5rem;
    }
    
    .testimonial-card-carousel .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-card-carousel .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-carousel .carousel-control-prev {
        left: -20px;
    }
    
    .testimonials-carousel .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel .gallery-item {
        height: 200px;
    }
    
    .events-carousel .event-image {
        height: 280px;
    }
    
    .events-carousel .event-card h5 {
        font-size: 1.3rem;
    }
    
    .testimonial-card-carousel {
        padding: 1.5rem;
    }
    
    .testimonial-card-carousel .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        display: none;
    }
    
    /* Stack testimonials vertically on mobile */
    .testimonials-carousel .row .col-lg-6 {
        margin-bottom: 1rem;
    }
}

/* Enhanced Mobile Menu Animations */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    transition: height 0.3s ease;
}

.dropdown-menu {
    transition: all 0.3s ease;
    transform-origin: top;
}

.dropdown-menu.show {
    animation: dropdownSlide 0.3s ease-out;
}

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

/* Mobile Menu Close Button Enhancement */
@media (max-width: 991px) {
    .navbar-toggler {
        position: relative;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 5px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .navbar-toggler-icon {
        transition: transform 0.3s ease;
    }
}

/* Smooth scroll behavior for mobile menu links */
html {
    scroll-behavior: smooth;
}

/* Mobile menu backdrop */
@media (max-width: 991px) {
    .navbar-collapse.show {
        position: relative;
        z-index: 1000;
    }
    
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        z-index: -1;
        pointer-events: none;
    }
}

/* ===================================
   INTERNAL PAGES STYLING
   =================================== */

/* Page Header Styling */
.page-header {
    background-image:url(../img/breadcumb.jpg)!important;
  
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003c04;
    opacity: 0.8;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e8f5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb Styling */


.breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Content Wrapper */
.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Timeline Styling */
.timeline-section {
    position: relative;
    margin-top: 3rem;
}

.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--light-color);
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 5px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Achievements Section */
.achievements-section {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievement-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.achievement-list li i {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Sidebar Styling */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.sidebar-widget h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.fact-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.gallery-grid img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Approach Cards */
.approach-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.approach-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.approach-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.approach-features li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.approach-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Method Cards */
.method-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.method-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.method-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Vision Cards */
.vision-card, .mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.vision-card h2, .mission-card h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.vision-content .lead, .mission-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mission-points {
    margin-top: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-point:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.mission-point i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.mission-point span {
    color: #555;
    line-height: 1.5;
}

.vision-image, .mission-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vision-image img, .mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vision-image:hover img, .mission-image:hover img {
    transform: scale(1.05);
}

/* Core Values */
.values-section {
    margin-top: 4rem;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.value-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Goals Section */
.goals-section {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.goal-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.goal-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.goal-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Founder/Principal Profile Pages */
.founder-image-section, .principal-profile {
    position: sticky;
    top: 100px;
}

.founder-image, .principal-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.founder-image img, .principal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.founder-info-card, .principal-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.founder-info-card h3, .principal-info h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.founder-title, .principal-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-credentials, .principal-credentials {
    margin-bottom: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.credential-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.founder-contact, .principal-contact {
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* Biography Sections */
.founder-biography, .principal-background {
    margin-top: 3rem;
}

.biography-sections, .background-section {
    margin-top: 2rem;
}

.bio-section, .background-section {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.bio-section h4, .background-section h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.bio-section ul, .background-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-section li, .background-section li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.bio-section li::before, .background-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Experience Timeline */
.experience-timeline {
    position: relative;
    padding-left: 2rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.experience-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--light-color);
}

.experience-year {
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.experience-details h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.experience-details p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Vision Points */
.founder-vision-section {
    margin-top: 3rem;
}

.vision-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vision-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.vision-point h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.vision-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Chairpersons Page */
.chairman-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border-top: 6px solid var(--primary-color);
}

.chairman-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.chairman-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.chairman-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.chairman-content h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.chairman-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.chairman-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.chairman-credentials span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.chairman-credentials i {
    margin-right: 8px;
}

.chairman-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.chairman-quote {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    font-style: italic;
    margin-top: 2rem;
}

.chairman-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chairman-quote p {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-top: 1rem;
}

/* Chairperson Cards */
.chairperson-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

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

.chairperson-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.chairperson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.chairperson-content {
    padding: 2rem;
}

.chairperson-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.chairperson-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.chairperson-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.chairperson-credentials span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.chairperson-credentials i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 16px;
}

.chairperson-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.chairperson-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Board Responsibilities */
.board-responsibilities {
    margin-top: 3rem;
}

.responsibility-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

.responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.responsibility-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.responsibility-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.responsibility-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Meeting Schedule */
.meeting-schedule {
    margin-top: 3rem;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--secondary-color);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.schedule-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.schedule-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.schedule-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Internal Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
    
    .timeline-container {
        padding-left: 1rem;
    }
    
    .timeline-container::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -4px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .approach-card, .method-card, .value-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .vision-card, .mission-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .founder-image img, .principal-image img {
        height: 300px;
    }
    
    .founder-info-card, .principal-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .chairman-section {
        padding: 2rem;
    }
    
    .chairman-image img {
        height: 300px;
    }
    
    .chairperson-image {
        height: 200px;
    }
    
    .chairperson-content {
        padding: 1.5rem;
    }
    
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0 40px;
    }
    
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .approach-card, .method-card, .value-card {
        padding: 1.5rem;
    }
    
    .vision-card, .mission-card {
        padding: 1.5rem;
    }
    
    .founder-image img, .principal-image img {
        height: 250px;
    }
    
    .chairman-section {
        padding: 1.5rem;
    }
    
    .chairman-image img {
        height: 250px;
    }
    
    .chairperson-content {
        padding: 1rem;
    }
    
    .goal-item, .vision-point {
        flex-direction: column;
        text-align: center;
    }
    
    .goal-number, .vision-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
/* ===================================
   ADMISSION PAGES STYLING
   =================================== */

/* Admission Status Banner */
.admission-status-banner {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.admission-status-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.status-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.status-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.status-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Admission Timeline */
.admission-timeline {
    margin-top: 3rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item.completed .timeline-date {
    background: var(--gradient-primary);
    color: white;
}

.timeline-item.completed .timeline-status {
    color: var(--secondary-color);
}

.timeline-item.completed .timeline-status i {
    color: var(--secondary-color);
}

.timeline-item.active .timeline-date {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    animation: pulse 2s infinite;
}

.timeline-item.active .timeline-status {
    color: #ff9800;
}

.timeline-item.active .timeline-status i {
    color: #ff9800;
}

.timeline-item.upcoming .timeline-date {
    background: #f5f5f5;
    color: #999;
}

.timeline-item.upcoming .timeline-status {
    color: #999;
}

.timeline-item.upcoming .timeline-status i {
    color: #999;
}

.timeline-date {
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

.timeline-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin: 0.2rem 0;
}

.timeline-date .year {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e0e0e0;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-content {
    border-left-color: var(--secondary-color);
}

.timeline-item.active .timeline-content {
    border-left-color: #ff9800;
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.2);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    color: #555;
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Process Steps */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 6px solid var(--secondary-color);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.step-requirements {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.step-requirements h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-requirements li {
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.step-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Online Application Section */
.online-application {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.online-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.online-benefits li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.application-form-preview {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-section:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.form-section i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.form-section span {
    color: #555;
    font-weight: 500;
}

/* Important Guidelines */
.admission-guidelines {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guideline-section {
    margin-bottom: 2.5rem;
}

.guideline-section h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.guideline-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-section li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.guideline-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Help Section */
.help-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.help-item:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.help-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.help-item div strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.help-item div p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Download Links */
.download-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.download-link i {
    color: #dc3545;
    font-size: 1.5rem;
}

.download-link span {
    font-weight: 600;
    flex: 1;
}

.download-link small {
    color: #999;
    font-size: 0.8rem;
}

/* FAQ Quick */
.faq-quick {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.faq-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.8rem;
}

.quick-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links a i {
    color: var(--secondary-color);
}

/* Seat Availability */
.seat-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.class-name {
    font-weight: 600;
    color: var(--primary-color);
}

.seat-count {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.seat-count.available {
    background: #d4edda;
    color: #155724;
}

.seat-count.limited {
    background: #fff3cd;
    color: #856404;
}

.seat-count.full {
    background: #f8d7da;
    color: #721c24;
}

/* Age Criteria Table */
.age-criteria-table {
    margin-top: 1rem;
}

.age-criteria-table table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.age-criteria-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.age-criteria-table td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.age-criteria-table tr:last-child td {
    border-bottom: none;
}

.age-criteria-table tr:hover {
    background: var(--light-color);
}

/* Responsive Design for Admission Pages */
@media (max-width: 768px) {
    .status-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .status-text h3 {
        font-size: 1.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-date {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .step-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .online-application {
        padding: 2rem;
    }
    
    .admission-guidelines {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .admission-status-banner {
        padding: 1.5rem;
    }
    
    .status-text h3 {
        font-size: 1.3rem;
    }
    
    .status-text p {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .online-application {
        padding: 1.5rem;
    }
    
    .admission-guidelines {
        padding: 1.5rem;
    }
}
/* ===================================
   CURRICULUM & ACADEMIC PAGES STYLING
   =================================== */

/* Curriculum Overview */
.curriculum-overview {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.curriculum-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.curriculum-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curriculum-image:hover img {
    transform: scale(1.05);
}

/* Class-wise Curriculum */
.class-curriculum {
    margin-top: 3rem;
}

.curriculum-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.curriculum-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.curriculum-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.subject-list, .approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subject-list li, .approach-list li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
}

.subject-list li::before {
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.approach-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Teaching Methodology */
.teaching-methodology {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.method-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.method-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.method-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Assessment Pattern */
.assessment-pattern {
    margin-top: 3rem;
}

.assessment-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-left: 4px solid var(--secondary-color);
}

.assessment-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.assessment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.assessment-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assessment-card li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.assessment-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.grading-table {
    margin-top: 1.5rem;
}

.grading-table table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.grading-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
    text-align: center;
}

.grading-table td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.grading-table tr:last-child td {
    border-bottom: none;
}

.grading-table tr:hover {
    background: var(--light-color);
}

/* Special Programs */
.special-programs {
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.program-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   FEE STRUCTURE STYLING
   =================================== */

/* Fee Section */
.fee-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--secondary-color);
}

.fee-section .section-header {
    text-align: left;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.fee-section .section-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.fee-section .section-header p {
    color: #666;
    margin: 0;
}

/* Fee Table */
.fee-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fee-table thead th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1.2rem;
    text-align: center;
    font-size: 0.95rem;
}

.fee-table tbody td {
    padding: 1.2rem;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    font-weight: 500;
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table tbody tr:hover {
    background: var(--light-color);
}

.fee-table tbody tr td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
}

.fee-table tbody tr td:last-child {
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(76, 175, 80, 0.1);
}

/* Additional Fees */
.additional-fees {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.additional-fees h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.fee-category {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.fee-category h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.fee-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fee-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fee-item span:first-child {
    color: #555;
    font-weight: 500;
}

.fee-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Fee Policies */
.fee-policies {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fee-policies h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.policy-section h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    color: #555;
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Scholarships */
.scholarships {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.scholarship-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.scholarship-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.scholarship-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.scholarship-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.scholarship-card p strong {
    color: var(--primary-color);
}

/* Fee Contact */
.fee-contact {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary-color);
}

.fee-contact h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: left;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
}

.contact-details .contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ===================================
   CONTACT PAGE STYLING
   =================================== */

/* Contact Information Section */
.contact-info-section {
    background: white;
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    border-top: 6px solid var(--primary-color);
}
.contact-info-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-info-section .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-section .contact-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.contact-info-section .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.contact-info-section .contact-details h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.contact-info-section .contact-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Quick Contact */
.quick-contact {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.quick-contact h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.quick-btn.call-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.quick-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.quick-btn.email-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 6px solid var(--primary-color);
}

.contact-form-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
    transform: translateY(-2px);
}

.contact-form select.form-control {
    cursor: pointer;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Department Contacts */
.department-contacts {
    margin-top: 3rem;
}

.department-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

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

.department-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.department-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.department-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.department-contact {
    text-align: left;
}

.department-contact p {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.department-contact i {
    color: var(--secondary-color);
    width: 20px;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.direction-info {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    height: 100%;
}

.direction-info h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.5rem;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Curriculum, Fee & Contact Pages */
@media (max-width: 768px) {
    .curriculum-overview {
        padding: 2rem;
    }
    
    .curriculum-section {
        padding: 2rem;
    }
    
    .curriculum-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .teaching-methodology {
        padding: 2rem;
    }
    
    .method-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .fee-section {
        padding: 2rem;
    }
    
    .additional-fees, .fee-policies {
        padding: 2rem;
    }
    
    .scholarships {
        padding: 2rem;
    }
    
    .scholarship-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .department-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .direction-info {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .curriculum-overview {
        padding: 1.5rem;
    }
    
    .curriculum-section {
        padding: 1.5rem;
    }
    
    .curriculum-card {
        padding: 1rem;
    }
    
    .teaching-methodology {
        padding: 1.5rem;
    }
    
    .method-card {
        padding: 1rem;
    }
    
    .fee-section {
        padding: 1.5rem;
    }
    
    .additional-fees, .fee-policies {
        padding: 1.5rem;
    }
    
    .scholarships {
        padding: 1.5rem;
    }
    
    .scholarship-card {
        padding: 1rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .department-card {
        padding: 1rem;
    }
    
    .map-info {
        padding: 1rem;
    }
    
    .fee-table th, .fee-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .grading-table th, .grading-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Teachers Owl Carousel Styles */
.teachers-owl-carousel {
    position: relative;
    padding: 2rem 0;
}

.teacher-item {
    padding: 0 10px;
}

.teacher-image-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
    position: relative;
}

.teacher-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.teacher-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Teacher Overlay for Details */
.teacher-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 125, 50, 0.95) 0%, rgba(46, 125, 50, 0.85) 100%);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.teacher-image-card:hover .teacher-overlay {
    transform: translateY(0);
}

.teacher-overlay h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.teacher-overlay p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.teacher-overlay i {
    color: #ff9800;
}

/* Custom Owl Carousel Navigation */
.teachers-owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.teachers-owl-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    border-radius: 50%;
    border: none;
    color: white !important;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teachers-owl-carousel .owl-nav .owl-prev {
    left: -25px;
}

.teachers-owl-carousel .owl-nav .owl-next {
    right: -25px;
}

.teachers-owl-carousel .owl-nav button:hover {
    background: var(--dark-color) !important;
    transform: scale(1.1);
}

/* Custom Owl Carousel Dots */
.teachers-owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}



.teachers-owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.teachers-owl-carousel .owl-dots .owl-dot:hover {
    background: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
   
    
    .teachers-owl-carousel .owl-nav .owl-prev {
        left: -15px;
    }
    
    .teachers-owl-carousel .owl-nav .owl-next {
        right: -15px;
    }
    
    .teachers-owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Teacher section title and subtitle mobile fixes */
    .section-padding .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 15px;
        word-wrap: break-word;
    }
    
    .section-padding .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
 
    
    .teachers-owl-carousel {
        padding: 1rem 0;
    }
    
    .teacher-item {
        padding: 0 5px;
    }
    
    /* Teacher section title and subtitle mobile fixes for smaller screens */
    .section-padding .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 1rem;
    }
    
    .section-padding .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .section-padding .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }
}

/* Page Header Styles */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 21px 0 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.breadcrumb {
    
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
   
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Gallery Styles */
.gallery-filter, .video-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.gallery-grid .gallery-item-wrapper,
.video-grid .video-item-wrapper {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-link:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Video Styles */
.featured-video {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-content {
    padding: 1.5rem;
}

.video-content h5 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.video-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.video-info p {
    color: #666;
    margin-bottom: 1rem;
}

.video-player-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-large {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-filter, .video-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .gallery-item img,
    .video-thumbnail img {
        height: 220px;
    }
    
    .gallery-content {
        padding: 1.5rem;
    }
    
    .video-content {
        padding: 1.2rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .gallery-filter, .video-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .gallery-item img,
    .video-thumbnail img {
        height: 200px;
    }
    
    .featured-video {
        padding: 1.5rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}