body {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    background: #f9fafd;
    color: #222;
    margin: 0;
    padding: 0;
}

.navbar {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 1rem 0;
    transition: background 0.3s;
}
.navbar .navbar-brand {
    font-weight: 700;
    font-size: 2rem;
    color: #0d6efd;
    letter-spacing: 1px;
}
.navbar .nav-link {
    color: #222;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.2s;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    color: #20c997;
}

.hero-section {
    min-height: 80vh;
    background: linear-gradient(120deg, #0d6efd 60%, #20c997 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(13,110,253,0.7) 60%, rgba(32,201,151,0.5) 100%);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-glass {
    background: rgba(255,255,255,0.15);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(32,201,151,0.15);
    backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    display: inline-block;
    margin-top: 2rem;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.2);
    font-family: 'Poppins', 'Montserrat', sans-serif;
}
.hero-desc {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}
.btn-main {
    background: linear-gradient(90deg, #20c997 0%, #0d6efd 100%);
    color: #fff;
    border-radius: 2rem;
    padding: 0.75rem 2.5rem;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 2px 8px rgba(32,201,151,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
}
.btn-main:hover {
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.section-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #20c997;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #20c997 0%, #0d6efd 100%);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}
.card-modern {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(32,201,151,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    background: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}
.card-modern:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(32,201,151,0.12);
}
.card-modern .icon {
    font-size: 2.5rem;
    color: #20c997;
    margin-bottom: 1rem;
    background: rgba(32,201,151,0.08);
    border-radius: 50%;
    padding: 0.7rem;
    display: inline-block;
}
.section {
    padding: 5rem 0 4rem 0;
}
.footer {
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    text-align: center;
    border-radius: 2rem 2rem 0 0;
    margin-top: 4rem;
    font-size: 1.1rem;
}
.footer-modern {
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    text-align: center;
    border-radius: 2rem 2rem 0 0;
    margin-top: 4rem;
    font-size: 1.1rem;
}
.footer-modern .footer-social a {
    color: #fff;
    opacity: 0.85;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.2s, opacity 0.2s;
}
.footer-modern .footer-social a:hover {
    color: #ffd700;
    opacity: 1;
}
.gallery-img {
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-img:hover {
    box-shadow: 0 8px 32px rgba(32,201,151,0.18);
    transform: scale(1.04);
    z-index: 2;
}
/* Lightbox overlay */
#lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}
#lightbox-overlay.active {
    display: flex;
}
#lightbox-overlay img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(32,201,151,0.25);
}
/* Testimonial slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}
.testimonial-slider .testimonial {
    display: none;
    transition: opacity 0.5s;
}
.testimonial-slider .testimonial.active {
    display: block;
    opacity: 1;
}
.testimonial-slider .testimonial-controls {
    text-align: center;
    margin-top: 1rem;
}
.testimonial-slider .testimonial-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #20c997;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.testimonial-slider .testimonial-dot.active {
    opacity: 1;
    background: #0d6efd;
}
/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* About Section Modernization */
.about-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
}
.about-img-glass {
    background: rgba(255,255,255,0.18);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(32,201,151,0.15);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}
.about-section .about-content {
    flex: 1;
}
.about-section .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #20c997;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
}
.about-section .section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #20c997 0%, #0d6efd 100%);
    margin: 1rem 0 0 0;
    border-radius: 2px;
}
.about-section .about-mission-vision {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.about-section .about-mission-vision .mv-block {
    flex: 1;
    background: rgba(255,255,255,0.7);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(32,201,151,0.07);
    padding: 1.2rem 1.5rem;
    min-width: 180px;
}
.about-section .about-mission-vision .mv-block h5 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}
.about-section .about-mission-vision .mv-block i {
    color: #20c997;
    font-size: 1.3rem;
}

/* Contact Section Modernization */
.contact-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 0;
}
.contact-info-glass {
    background: rgba(255,255,255,0.18);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(32,201,151,0.15);
    backdrop-filter: blur(8px);
    padding: 2rem 2rem 1.5rem 2rem;
    margin-bottom: 1.5rem;
    min-width: 320px;
    max-width: 400px;
}
.contact-info-glass h4 {
    color: #0d6efd;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.contact-info-glass p {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
}
.contact-info-glass i {
    color: #20c997;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
.contact-form-glass {
    background: rgba(255,255,255,0.18);
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(32,201,151,0.15);
    backdrop-filter: blur(8px);
    padding: 2rem 2rem 1.5rem 2rem;
    min-width: 320px;
    max-width: 400px;
}
.contact-form-glass form {
    width: 100%;
}
.contact-form-glass .form-control {
    border-radius: 1.5rem;
    border: 1.5px solid #e3e3e3;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.7);
    box-shadow: none;
    transition: border 0.2s;
}
.contact-form-glass .form-control:focus {
    border: 1.5px solid #20c997;
    box-shadow: 0 2px 8px rgba(32,201,151,0.08);
}
.contact-form-glass .btn-main {
    width: 100%;
    font-size: 1.15rem;
    padding: 0.9rem 0;
    border-radius: 2rem;
    margin-top: 0.5rem;
}
.contact-map {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(32,201,151,0.10);
    margin-top: 1.5rem;
    min-width: 320px;
    max-width: 400px;
}
@media (max-width: 991px) {
    .about-section, .contact-modern {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    .about-section .about-content, .about-img-glass, .contact-info-glass, .contact-form-glass, .contact-map {
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 1200px) {
    .about-section, .contact-section-split {
        gap: 1.5rem;
    }
    .about-section .section-title {
        font-size: 2.1rem;
    }
}
@media (max-width: 991px) {
    .about-section, .contact-section-split {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        align-items: stretch;
    }
    .about-img-glass, .about-section .about-content, .contact-map-split, .contact-card-split {
        max-width: 100%;
        min-width: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .about-section .about-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.1rem;
    }
    .about-section, .contact-section-split {
        padding: 1.2rem 0.5rem;
        gap: 1rem;
    }
    .about-section .about-mission-vision {
        flex-direction: column;
        gap: 1rem;
    }
    .card-modern, .about-img-glass, .contact-info-glass, .contact-form-glass, .contact-card-split {
        padding: 1rem 0.7rem;
        border-radius: 1rem;
    }
    .gallery-img {
        border-radius: 0.7rem;
    }
    .testimonial-slider {
        max-width: 98vw;
    }
}
@media (max-width: 575px) {
    .about-section, .contact-section-split {
        padding: 0.5rem 0.2rem;
    }
    .about-section .section-title, .section-title {
        font-size: 1rem;
    }
    .about-img-glass, .about-section .about-content, .contact-map-split, .contact-card-split {
        padding: 0.5rem 0.3rem;
    }
    .contact-map-split {
        height: 180px;
    }
    .contact-card-split {
        font-size: 0.98rem;
    }
}

/* Contact Section Split Modern Layout */
.contact-section-split {
    display: flex;
    min-height: 480px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(32,201,151,0.10);
    background: #fff;
    margin-bottom: 3rem;
}
.contact-map-split {
    flex: 1 1 60%;
    min-width: 300px;
    height: 100%;
    position: relative;
}
.contact-map-split iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
}
.contact-card-split {
    flex: 1 1 40%;
    min-width: 320px;
    max-width: 480px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(2px);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 32px rgba(13,110,253,0.10);
    z-index: 2;
}
.contact-card-split h4 {
    color: #0d6efd;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.contact-card-split p {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
}
.contact-card-split i {
    color: #20c997;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
.contact-card-split form {
    margin-top: 1.5rem;
}
.contact-card-split .form-control {
    border-radius: 1.5rem;
    border: 1.5px solid #e3e3e3;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255,255,255,0.7);
    box-shadow: none;
    transition: border 0.2s;
}
.contact-card-split .form-control:focus {
    border: 1.5px solid #0d6efd;
    box-shadow: 0 2px 8px rgba(13,110,253,0.08);
}
.contact-card-split .btn-main {
    width: 100%;
    font-size: 1.15rem;
    padding: 0.9rem 0;
    border-radius: 2rem;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
}
@media (max-width: 991px) {
    .contact-section-split {
        flex-direction: column;
        border-radius: 1.2rem;
    }
    .contact-map-split, .contact-card-split {
        min-width: 0;
        max-width: 100%;
        height: 300px;
        padding: 1.5rem 1rem;
    }
    .contact-card-split {
        height: auto;
        min-height: 0;
    }
} 

.top-header-bar {
    position: sticky;
    top: 0;
    z-index: 1041;
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(13,110,253,0.08);
    transition: background 0.3s;
}
.top-header-bar .bi {
    color: #fff;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}
.top-header-bar a {
    color: #fff;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}
.top-header-bar a:hover .bi, .top-header-bar a:hover {
    color: #ffd700;
    opacity: 1;
}

.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 2px 12px rgba(13,110,253,0.07);
    background: #fff;
    transition: box-shadow 0.3s, top 0.3s;
}
.sticky-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(13,110,253,0.13);
    background: #fff;
}

.section-bg-alt {
    background: linear-gradient(90deg, #f8fafd 0%, #e3f6f3 100%);
}

.section-sep {
    border-bottom: 1.5px solid #e3e3e3;
    margin-bottom: 2.5rem;
} 

.top-header-bar.hide-on-scroll {
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.top-header-bar {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), background 0.3s;
}

/* Remove extra gap below nav */
.sticky-navbar + .hero-section,
.sticky-navbar + #hero {
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    .sticky-navbar {
        top: 0;
    }
} 

.section {
    padding: 5rem 0 4rem 0;
}
.section-title {
    font-size: 2.9rem;
    font-weight: 900;
    color: #0d6efd;
    margin-bottom: 2.7rem;
    text-align: center;
    letter-spacing: 1.5px;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    margin: 1.2rem auto 0 auto;
    border-radius: 2px;
}
.btn-main {
    background: linear-gradient(90deg, #0d6efd 0%, #20c997 100%);
    color: #fff;
    border-radius: 2rem;
    padding: 0.85rem 2.7rem;
    font-weight: 700;
    font-size: 1.18rem;
    box-shadow: 0 2px 8px rgba(32,201,151,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    letter-spacing: 0.5px;
}
.btn-main:hover {
    background: linear-gradient(90deg, #20c997 0%, #0d6efd 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(13,110,253,0.13);
}
.card-modern {
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(32,201,151,0.08);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    background: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}
.card-modern:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(32,201,151,0.14);
    border: 1.5px solid #0d6efd;
}

@media (max-width: 991px) {
    .section {
        padding: 2.5rem 0 2rem 0;
    }
    .section-title {
        font-size: 1.7rem;
    }
} 