     @import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');

     * {
         font-family: 'Kantumruy Pro', sans-serif;
         box-sizing: border-box;
     }
     :root {
            --primary-color: #004aad;
            --secondary-color: #f59e0b; /* Amber accent */
            --background-color:rgb(144, 187, 197); /* Light gray */
            --text-color: rgb(0, 51, 122); /* Dark gray */
            --accent-color: #ff8c00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans Khmer', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Header */
        .header-top {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
            to { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-container img {
            max-height: 60px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .logo-container img:hover {
            transform: scale(1.1);
        }

        .navbar-brand {
            color: white !important;
            font-size: 1.8rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
            font-size: 0.95rem;
        }

        .contact-info p {
            margin: 0;
            color: white;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Navigation */
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-link {
            color: var(--text-color) !important;
            font-weight: 600;
            padding: 0.75rem 1.25rem !important;
            transition: all 0.3s ease;
        }

        .nav-link:hover, .nav-link:focus {
            color: var(--accent-color) !important;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 5px;
        }

        .dropdown-toggle::after {
            border-color: var(--text-color) !important;
            transition: border-color 0.3s ease;
        }

        .dropdown-toggle:hover::after {
            border-color: var(--accent-color) !important;
        }

        .dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            margin-top: 0.5rem !important;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown-item {
            color: var(--text-color) !important;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: var(--background-color);
            color: var(--accent-color) !important;
        }

        .login-btn {
            background: linear-gradient(90deg, var(--secondary-color), #d97706);
            color: white !important;
            border-radius: 5px;
            padding: 0.75rem 1.5rem !important;
            font-weight: 600;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background: linear-gradient(90deg, #d97706, var(--secondary-color));
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        /* Hero Section */
        .hero-section {
            padding: 0;
            position: relative;
        }

        .carousel-item img {
            height: 500px;
            object-fit: cover;
            width: 100%;
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            padding: 1.5rem;
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .carousel-caption h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            color: white;
        }

        /* Login Modal */
        .modal-content {
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 0.5s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            border-bottom: none;
            padding: 1.5rem 1.5rem 0;
        }

        .modal-title {
            color: var(--primary-color);
            font-weight: 700;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 0.75rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
            outline: none;
        }

        .btn-login {
            background: linear-gradient(90deg, var(--accent-color), #2563eb);
            border: none;
            border-radius: 8px;
            padding: 0.75rem;
            font-weight: 600;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: linear-gradient(90deg, #2563eb, var(--accent-color));
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-login:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 3rem 0;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        }

        .footer-logo img {
            max-height: 80px;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--secondary-color);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 0.75rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--secondary-color);
        }

        .map-container {
            margin-top: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .navbar-nav {
                align-items: flex-start !important;
            }

            .nav-link {
                padding: 0.5rem 1rem !important;
            }

            .contact-info {
                flex-direction: column;
                gap: 0.5rem;
            }

            .carousel-item img {
                height: 300px;
            }

            .carousel-caption h1 {
                font-size: 1.8rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }
        }

        @media (max-width: 767px) {
            .header-top .container {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-info {
                font-size: 0.85rem;
            }

            .modal-body {
                padding: 1rem;
            }
        }
