        :root {
            --primary-color: #0a3161;
            /* Navy Blue */
            --secondary-color: #b31942;
            /* Red */
            --accent-color: #ffffff;
            /* White */
            --highlight-color: #e63946;
            /* Bright Red */
            --text-light: #ffffff;
            --text-dark: #1d1d1d;
            --gradient-primary: linear-gradient(135deg, #0a3161 0%, #b31942 100%);
            --gradient-secondary: linear-gradient(135deg, #b31942 0%, #e63946 100%);
            --gradient-american: linear-gradient(135deg, #0a3161 0%, #ffffff 50%, #b31942 100%);
            --shadow-soft: 0 10px 30px rgba(10, 49, 97, 0.15);
            --shadow-hover: 0 20px 40px rgba(179, 25, 66, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #fff3e0 100%);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Modern Navigation */
        .navbar {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

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

        .nav-link:hover::after {
            width: 100%;
        }

        /* Modern Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(10, 49, 97, 0.9), rgba(179, 25, 66, 0.8)), url('Outside2.jpg');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="white" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            opacity: 0.4;
        }

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

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
        }

        .hero .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Modern Sections */
        .section {
            padding: 6rem 0;
            position: relative;
        }

        .section h2 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Modern Cards */
        .service-card {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(10, 49, 97, 0.1), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .service-card .card-body {
            text-align: center;
            padding: 0;
        }

        .service-card svg {
            width: 4rem;
            height: 4rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
            fill: var(--primary-color);
        }

        .service-card:hover svg {
            transform: scale(1.1) rotate(5deg);
            fill: var(--secondary-color);
        }

        .service-card h5 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .service-card p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Modern Hours Table */
        .hours-table {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hours-table .table {
            margin-bottom: 0;
        }

        .hours-table .table td {
            border: none;
            padding: 1rem;
            font-weight: 500;
        }

        /* Modern Contact Info */
        .contact-info {
            background: var(--gradient-primary);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .contact-info h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .contact-info a:hover {
            color: #f8f9fa;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Modern Images */
        .img-fluid {
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .img-fluid:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        /* Facility Items */
        .facility-item {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .facility-description {
            flex: 1;
            display: flex;
            align-items: center;
        }

        .facility-description p {
            margin: 0;
        }

        /* Modern Footer */
        footer {
            background: var(--gradient-primary);
            color: white;
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-stars)"/></svg>');
        }

        footer .container {
            position: relative;
            z-index: 1;
        }

        footer a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #f8f9fa;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Use sign image on smaller screens */
        @media (max-width: 1099px) {
            .hero {
                background: linear-gradient(135deg, rgba(10, 49, 97, 0.9), rgba(179, 25, 66, 0.8)), url('Sign.jpg');
                background-position: center top;
                background-size: cover;
                background-repeat: no-repeat;
            }
        }

        @media (max-width: 355px) {
            .hero {
                background: linear-gradient(135deg, rgba(10, 49, 97, 0.9), rgba(179, 25, 66, 0.8)), url('Sign.jpg');
                background-position: center top;
                background-size: contain;
                background-repeat: no-repeat;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .lead {
                font-size: 1.1rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .service-card {
                margin-bottom: 2rem;
            }

            .contact-info {
                margin-bottom: 2rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-secondary);
        }