        body {
            font-family: 'Inter', sans-serif;
        }

        .hero-gradient {
            background-image: url('/assets/Hero-img.jpg');
            background-size: cover;
            /* Ensures the image covers the entire container */
            background-position: center;
            /* Centers the image */
            background-blend-mode: overlay;
            /* Blends the gradient with the image */
        }

        .weather-gradient {
            background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
        }

        .card-gradient {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .weather-icon {
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }

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

        .btn-glow {
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
            transition: all 0.3s ease;
        }

        .btn-glow:hover {
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
            transform: translateY(-2px);
        }

        .animate-pulse-slow {
            animation: pulse 3s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        .forecast-scroll {
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
        }

        .forecast-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .forecast-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .forecast-scroll::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }

        .loader {
            border-top-color: #3498db;
            animation: spin 1s ease-in-out infinite;
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        .city-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .city-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .forecast-card {
            min-width: 140px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .forecast-card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.15);
        }

        .temp-transition {
            transition: all 0.5s ease;
        }

        /* NEW ANIMATION STYLES */
        .fade-in {
            opacity: 0;
            transition: opacity 1s ease-out;
        }

        .fade-in.animate {
            opacity: 1;
        }

        .slide-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .slide-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .pop-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .pop-in.animate {
            opacity: 1;
            transform: scale(1);
        }
