 :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #2563eb;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        
        /* Facilities Page Specific Styles */
        .facilities-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            text-align: center;
            color: white;
        }
        
        .facilities-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb a:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        
        /* Facilities Grid Section */
        .facilities-grid-section {
            padding: 100px 0;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            width: 100%;
            margin: 0 auto;
        }
        
        .facility-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            width: 48%;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .facility-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .facility-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .facility-card:hover .facility-img img {
            transform: scale(1.1);
        }
        
        .facility-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .facility-content {
            padding: 25px;
        }
        
        .facility-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .facility-meta {
            display: flex;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .facility-meta span {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .facility-meta i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .facility-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        /* Features Section */
        .facility-features {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(220, 38, 38, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--secondary);
            font-size: 24px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .feature-item h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
            text-align: center;
        }
        
        .feature-item p {
            color: var(--text-light);
            text-align: center;
        }
        
        /* Gallery Section */
        .facility-gallery {
            padding: 100px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 58, 138, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 30px;
        }
        
        /* Lightbox Styles */
        #lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        
        #lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        #lightbox img {
            max-height: 80vh;
            max-width: 90vw;
            object-fit: contain;
        }
        
        .lightbox-prev,
        .lightbox-next,
        .lightbox-close {
            position: absolute;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .lightbox-prev:hover,
        .lightbox-next:hover,
        .lightbox-close:hover {
            background-color: var(--secondary);
        }
        
        .lightbox-prev {
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .lightbox-next {
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .lightbox-close {
            top: -50px;
            right: 0;
        }
        
        /* Zoom effect on image hover in lightbox */
        #lightbox img {
            transition: transform 0.3s;
            cursor: zoom-in;
        }
        
        #lightbox img.zoomed {
            transform: scale(2);
            cursor: zoom-out;
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        .cta .btn {
            background-color: white;
            color: var(--primary);
        }
        
        .cta .btn:hover {
            background-color: var(--light);
            color: var(--dark);
        }
        
        /* Animation Classes */
        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .facilities-hero h1 {
                font-size: 42px;
            }
            
            .facility-card {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                clip-path: circle(0% at 100% 0);
                transition: all 0.5s ease;
            }
            
            nav.active {
                clip-path: circle(150% at 100% 0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
                text-align: center;
            }
            
            .facilities-hero {
                padding: 150px 0 80px;
            }
            
            .facilities-hero h1 {
                font-size: 36px;
            }
            
            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }
            
            .breadcrumb a {
                margin: 5px 0;
            }
            
            .breadcrumb a:not(:last-child)::after {
                display: none;
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
            
            .lightbox-close {
                top: 10px;
                right: 10px;
            }
            
            #lightbox img.zoomed {
                transform: scale(1.5);
            }
        }
        
        @media (max-width: 576px) {
            .facilities-hero h1 {
                font-size: 32px;
            }
            
            .facility-img {
                height: 250px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cta h2 {
                font-size: 28px;
            }
        }