:root {
    --primary-color: #068fa1;
    --primary-dark: #056d7e;
    --text-dark: #333;
    --light-bg: #f0f0f0;
    --white: #ffffff;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.llogo {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--white);
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    overflow-y: auto;
    position: static;
}
.bccolr {
    background: var(--primary-color);
}
.navbar-custom {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.navbar-custom .nav-link {
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    margin: 0 4px;
    font-weight: 500;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    background-color: var(--primary-dark);
    color: var(--white);
}
.dropdown-item:hover {
    background-color: var(--white);
    color: var(--primary-color);
}
.section-title {
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}
.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-light:hover {
    background-color: var(--light-bg);
    transform: scale(1.05);
}
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}
footer {
    background-color: var(--primary-color);
    color: var(--white);
}
footer a {
    color: var(--white);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.social-icons a {
    color: var(--white);
    margin: 0 8px;
    font-size: 1.5rem;
}
.social-icons a:hover {
    color: var(--white);
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    border: none;
}
.scroll-top:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        right: 20px;
        bottom: 20px;
    }
    .hero-banner {
        height: 40vh;
        padding: 2rem 1rem;
    }
    .hero-overlay {
        padding: 1rem;
    }
    .hero-banner h1 {
        font-size: 1.75rem;
    }
    .hero-banner p {
        font-size: 1rem;
    }
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        right: 20px;
        bottom: 20px;
    }
    .switch-btn {
        width: 180px;
        height: 40px;
        padding: 4px;
    }
    .switch-btn span {
        font-size: 14px;
    }
    .slider {
        height: 32px;
    }
}
.hero-banner {
    background-image: url('../images/AboutUsAA4.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 830px;
}
.banner-section {
    background: url('../images/banner2.jpg') no-repeat center center;
    background-size: cover;
    min-height: 300px;
    color: var(--white);
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.banner-section .container {
    position: relative;
    z-index: 2;
    text-align: right;
}
@media (max-width: 992px) {
    .banner-section {
        min-height: 220px;
    }
}
@media (max-width: 576px) {
    .banner-section {
        min-height: 180px;
        padding: 30px 15px;
    }
    .banner-section .container {
        text-align: center;
    }
    .banner-section h1 {
        font-size: 1.8rem;
    }
    .banner-section p.lead {
        font-size: 1rem;
    }
}
.gallery-img {
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.gallery-img:hover {
    transform: scale(1.05);
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    border: none;
}
.scroll-top:hover {
    transform: translateY(-3px);
    background-color: var(--primary-dark);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}
/* Toggle Switch Container */
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
/* Switch Button Styling */
.switch-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-bg);
    border-radius: 25px;
    padding: 6px;
    width: 220px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.switch-btn span {
    flex: 1;
    text-align: center;
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none;
}
/* Slider Animation */
.slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: 36px;
    background: var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1;
}
.switch-btn.active .slider {
    left: calc(50% + 4px);
}
@media (max-width: 480px) {
    .toggle-container {
        margin-bottom: 1.5rem;
    }
    .switch-btn {
        width: 160px;
        height: 36px;
        padding: 3px;
    }
    .switch-btn span {
        font-size: 13px;
    }
    .slider {
        height: 28px;
    }
}