   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar-custom {
            background:#0d1b29;
            border: none;
            border-radius: 0;
            margin-bottom: 0;
            padding: 10px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .navbar-custom .navbar-brand {
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .navbar-custom .navbar-nav > li > a {
            color: rgba(255,255,255,0.9);
            font-size: 16px;
            transition: all 0.3s;
        }

        .navbar-custom .navbar-nav > li > a:hover {
            color: #fff;
            background: rgba(255,255,255,0.1);
        }

        /* Search Section */
        .search-section {
         
            padding: 120px 0 100px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #000000 0%, #337ab7 100%);
        }

        .search-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&h=900&fit=crop') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        .search-section .container {
            position: relative;
            z-index: 1;
        }

        .search-section h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease-out;
            letter-spacing: -1px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .search-section p {
            font-size: 22px;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeIn 1.2s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .search-box {
            max-width: 750px;
            margin: 0 auto 30px;
            position: relative;
            animation: fadeInUp 1.4s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .search-box input {
            width: 100%;
            color:#444;
            padding: 22px 180px 22px 30px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.25);
            transition: all 0.3s;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.35);
            transform: translateY(-2px);
        }

        .search-box button {
            position: absolute;
            right: 8px;
            top: 8px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 16px;
        }

        .search-box button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        .quick-filters {
            margin-top: 35px;
            animation: fadeIn 1.6s ease-out;
        }

        .filter-tag {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            margin: 0 8px 10px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .filter-tag:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .filter-tag i {
            margin-right: 8px;
        }

        /* Featured Section */
        .featured-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #7f8c8d;
        }

        .featured-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s;
            height: 400px;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .featured-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s;
        }

        .featured-card:hover img {
            transform: scale(1.1);
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px;
            color: #fff;
        }

        .featured-overlay h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .featured-overlay p {
            font-size: 14px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .featured-badge {
            background: #ff6b6b;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
        }

        /* Explore Section */
        .explore-section {
            padding: 80px 0;
            background: #fff;
        }

        .explore-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .explore-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .explore-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .explore-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-height:250px
        }

        .explore-content h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #2c3e50;
            
        }

        .explore-content p {
          color: #7f8c8d;
font-size: 15px;
margin-bottom: 20px;
line-height: 1.6;
flex-grow: 1;

/* limit to 3 lines */
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

        }

        .explore-meta {
            display: flex;
            justify-content: left;
            align-items: center;
            color: #95a5a6;
            font-size: 14px;
            margin-top: auto;
        }

        .btn-explore {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-explore:hover {
            transform: scale(1.05);
            color: #fff;
            text-decoration: none;
        }

        /* Categories Section */
        .categories-section {
            padding: 80px 0;
          background: linear-gradient(135deg, #8366ea 0%, #184b76 100%);
            color: #fff;
        }

        .category-item {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .category-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .category-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .category-item h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 60px 0;
            background: #2c3e50;
            color: #fff;
            text-align: center;
        }

        .newsletter-section h3 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 30px auto 0;
        }

        .newsletter-form input {
            padding: 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            width: 70%;
            float: left;
        }

        .newsletter-form button {
            padding: 15px 10px;
          background: #667eea;
            color: #fff;
            border: none;
            border-radius: 0 25px 25px 0;
            width: 30%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
           background: #667eea;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: #ecf0f1;
            padding: 40px 0 20px;
        }

        .footer-content {
            margin-bottom: 30px;
        }

        .footer-content h5 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-content ul {
            list-style: none;
            padding: 0;
        }

        .footer-content ul li {
            margin-bottom: 10px;
        }

        .footer-content ul li a {
            color: #95a5a6;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-content ul li a:hover {
            color: #fff;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: #667eea;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #95a5a6;
        }

        @media (max-width: 768px) {
            .search-section h1 {
                font-size: 36px;
            }

            .search-section p {
                font-size: 18px;
            }

            .search-section {
                padding: 100px 0 80px;
            }

            .search-box input {
                padding: 18px 20px;
                font-size: 15px;
            }

            .search-box button {
                position: relative;
                width: 100%;
                margin-top: 15px;
                right: 0;
                top: 0;
                border-radius: 50px;
            }

            .filter-tag {
                padding: 10px 20px;
                font-size: 14px;
                margin: 5px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .featured-card {
                height: 300px;
            }

            .explore-card {
                margin-bottom: 20px;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: 25px;
                margin-bottom: 10px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .explore-card {
                height: 100%;
            }
        }