
        :root {
    --primary-blue: rgba(0, 102, 204, 0.6); /* Bright primary blue with 60% opacity */
    --dark-blue: rgba(0, 51, 102, 0.8);     /* Deep navy blue with 80% opacity */
            --cyan: #00D9FF;
            --dark-bg: #1a1a1a;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section */
.hero-section {
    background-image: 
        linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%),
        url("https://images.unsplash.com/photo-1522204523234-8729aa6e3d5f?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1470");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 40px 20px 130px;
}


        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -200px;
            left: -100px;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -100px;
            right: -50px;
        }

        /* Navigation */
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 600;
            color: white !important;
        }

        .navbar-brand span {
            font-weight: 300;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding-top: 60px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            font-weight: 300;
        }

        /* Search Box */
        .search-container {
            position: relative;
            margin-bottom: 40px;
        }

        .search-wrapper {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 8px 8px 8px 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .search-wrapper:focus-within {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .search-icon {
            color: white;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.1rem;
            padding: 12px 0;
            outline: none;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search-btn {
            background: var(--cyan);
            color: var(--dark-blue);
            border: none;
            padding: 12px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: #00C4E6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
        }

        /* Filters */
        .filters-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
@media only screen and (max-width: 768px) {
    .filters-container {
        /*width:100px !important;*/
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px; /* optional: keeps spacing between columns */
    }
}

        .filter-item {
            position: relative;
        }

        .filter-label {
            display: block;
            color: white;
            font-size: 0.9rem;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .filter-select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--dark-blue);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232E4A8B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            transition: all 0.3s ease;
        }

        .filter-select:hover {
            background: white;
            border-color: var(--cyan);
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
        }

        .filter-input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--dark-blue);
            transition: all 0.3s ease;
        }

        .filter-input:hover {
            background: white;
            border-color: var(--cyan);
        }

        .filter-input:focus {
            outline: none;
            background: white;
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2);
        }

        .filter-input::placeholder {
            color: rgba(46, 74, 139, 0.6);
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: rgba(255, 255, 255, 0.8);
            padding: 30px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-brand {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
        }

        .footer-brand span {
            font-weight: 300;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-contact {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

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

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

            .filters-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .search-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .search-wrapper {
                flex-direction: column;
                padding: 15px;
                border-radius: 20px;
            }

            .search-input {
                margin-bottom: 15px;
                text-align: center;
            }

            .search-btn {
                width: 100%;
            }
        }