:root {
            --primary-blue: #0a3d62;
            --secondary-teal: #079992;
            --accent-gold: #f9ca24;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary-blue);
            font-weight: 700;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(7, 153, 146, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80') center/cover no-repeat;
            color: white;
            padding: 140px 0 100px;
            position: relative;
        }
        .nav-bar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .nav-bar.scrolled {
            padding: 8px 0;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-blue) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 600;
            padding: 8px 16px !important;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-teal) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 16px;
            background-color: var(--secondary-teal);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: calc(100% - 32px);
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border: none;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-teal);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(7, 153, 146, 0.2);
        }
        .btn-outline-light {
            border: 2px solid white;
            padding: 12px 28px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 50px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-teal);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(7, 153, 146, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .stats-box {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }
        .stats-box:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        .stats-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        .facility-card {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            margin-bottom: 30px;
            height: 300px;
        }
        .facility-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .facility-card:hover .facility-img {
            transform: scale(1.05);
        }
        .facility-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 61, 98, 0.9));
            color: white;
            padding: 30px 20px 20px;
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding-top: 70px;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-links h5::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent-gold);
            bottom: 0;
            left: 0;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 50px;
        }
        friendlink {
            display: block;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s;
        }
        .flink:hover {
            background: var(--secondary-teal);
            color: white;
            transform: translateY(-3px);
        }
        .news-card {
            border-left: 4px solid var(--secondary-teal);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(7, 153, 146, 0.1);
            color: var(--primary-blue);
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(7, 153, 146, 0.3);
        }
        .contact-info-box {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            transition: all 0.3s;
        }
        .contact-info-box:hover {
            background: white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
        .form-control:focus {
            border-color: var(--secondary-teal);
            box-shadow: 0 0 0 0.25rem rgba(7, 153, 146, 0.25);
        }
