       @font-face {
            font-family: 'Poppins';
            src: url('poppins/Poppins-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #fff;
            color: #333;
        }

        /* Header */
        .header {
            background-color: #0d47a1;
            color: white;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo img {
            height: 40px;
        }

        .nav-links a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px 30px;
            color: black;
            position: relative;
        }

        .hero::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 600px;
            background: url('assets/MFBC LOGO (BLUE).png') no-repeat right center;
            background-size: contain;
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-text {
            max-width: 50%;
            padding: 20px;
            border-radius: 10px;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .hero-text p {
            font-size: 16px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .hero-text .btn {
            display: inline-block;
            background: url('assets/JOIN NOW BUTTON.png') no-repeat center center / contain;
            width: 150px;
            height: 45px;
            text-indent: -9999px;
            border: none;
            cursor: pointer;
        }

        /* Brand Section - Full Screen */
        .brands {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 30px;
            background-color: #fff;
        }

        .brands h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #333;
            text-align: center;
        }

        .brand-cards {
            display: flex;
            justify-content: center;
            gap: -10px;
            width: 100%;
            max-width: 1400px;
            flex-wrap: wrap;
        }

        .brand-card {
            position: relative;
            width: 550px;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .brand-bg {
            width: 100%;
            height: 100%;
            opacity: 0.4;
            background-size: cover;
            background-position: center;
            filter: brightness(1.0);
            position: absolute;
            top: 0;
            left: 0;
        }

        .brand-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
        }

        .brand-overlay img {
            max-width: 250px;
            max-height: 200px;
            margin-bottom: 10px;
        }

        .brand-overlay p {
            font-size: 20px;
            font-weight: bold;
            color: #174ea1;
        }

        /* Carousel styles for mobile */
        .carousel-container {
            display: none;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: #0d47a1;
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(13, 71, 161, 0.8);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .carousel-arrows:hover {
            background: rgba(13, 71, 161, 1);
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        /* Rewards Section */
        .rewards {
            text-align: center;
            padding: 60px 30px;
        }

        .reward-items {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .reward-item {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left;
        }

        .reward-circle {
            position: relative;
            width: 100px;
            height: 100px;    
            background: url('assets/CIRCLE.png') no-repeat center center / contain;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 46px;
            font-weight: bold;
            color: #0d47a1;
        }

        .reward-text {
            font-size: 14px;
            color: #000;
            font-weight: 500;
            line-height: 1.3;
        }

        .center-image {
            text-align: center;
            padding: 40px 0;
            background-color: #f8f8f8;
        }

        .center-image img {
            max-width: 40%;
            height: auto;
            border-radius: 12px;
        }

        /* Footer */
        .footer {
            background-color: #0d47a1;
            color: white;
            text-align: center;
            padding: 20px 10px;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .brands {
                padding: 40px 20px;
            }
            
            .brands h2 {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .brand-cards {
                display: none;
            }

            .carousel-container {
                display: block;
            }

            .brand-card {
                width: 300px;
                height: 400px;
            }

            .brand-overlay img {
                max-width: 200px;
                max-height: 150px;
            }

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

            .hero-text {
                max-width: 100%;
                margin-bottom: 20px;
            }

            .reward-items {
                flex-direction: column;
                align-items: center;
            }

            .reward-item {
                width: 90%;
                max-width: 300px;
            }

            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .nav-links {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .center-image img {
                max-width: 90%;
            }
        }