        :root {
            --primary-color: #bf1f2f;
            --secondary-color: #f5901d;
            /* 
             --primary-color: #231f20;
            --secondary-color: #f7941d; */


            --dark-color: #292f36;
            --light-color: #f7fff7;
            --accent-color: #ff9f1c;
        }


        body {
            /* font-family: 'Poppins', sans-serif; */
            font-family: Helvetica;
            overflow-x: hidden;
            color: var(--dark-color);
            background-color: #f8f9fa;
        }

        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95) !important;
            padding: 5px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            color: var(--dark-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active::after {
            width: 100%;
        }

        section {
            padding: 50px 0;
        }

        #home {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            margin-top: 30px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #ff5252;
            border-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .prize-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .prize-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .prize-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .prize-body {
            padding: 20px;
        }

        .prize-title {
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .prize-value {
            color: var(--primary-color);
            font-weight: 600;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }

        #about {
            background-color: white;
        }

        .about-img {
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 450px;
            width: 600px;
        }

        .about-img:hover {
            transform: scale(1.02);
        }

        .feature-box {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            text-align: center;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        #contact {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            color: #f5901d;
            background: #bf1f2f;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            box-shadow: none;
        }

        .btn-contact {
            background-color: white;
            color: var(--dark-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-contact:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-info {
            margin-top: 30px;
        }

        .contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--accent-color);
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--dark-color);
            transform: translateY(-5px);
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .countdown {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0;
        }

        .winner-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 0.8rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(0, 0, 0, 0.05);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }

        .how-it-works {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }

        .footer-bg {
            background-color: var(--primary-color);
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }

        .step-number {
            position: absolute;
            left: -15px;
            top: 0;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
        }

        .step-content {
            padding-left: 20px;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .sm-mb-25 {
                margin-bottom: 25px;
            }

            .sm-text-center {
                text-align: center;
            }

            .sm-px-4 {
                padding-right: 1.5rem !important;
                padding-left: 1.5rem !important;
            }
        }

        .social-links a {
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .social-links a:hover {
            background-color: #f5901d !important;
            transform: scale(1.1);

        }

        .social-links a i {
            transition: transform 0.3s ease;
        }

        .social-links a:hover i {
            transform: scale(1.2);
        }


        /* Modal background */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        /* Modal box */
        .modal-content {
            background-color: #c62828;
            padding: 30px;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            position: relative;
            animation: fadeIn 0.4s ease;
        }

        /* Close button */
        .close-button {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        /* Form elements */
        .modal-content form input[type="text"],
        .modal-content form input[type="email"],
        .modal-content form input[type="tel"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 6px;
        }

        .modal-content .terms {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .modal-content .terms a {
            color: #ffe082;
            text-decoration: underline;
        }

        .modal-content form button {
            width: 100%;
            padding: 12px;
            background-color: white;
            color: #c62828;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .modal-content form button:hover {
            background-color: #f1f1f1;
        }

        /* Fade animation */
        @keyframes fadeIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* How It Works Image */
        .how-it-works-img {
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            max-height: 450px;
            width: auto;
            object-fit: contain;
            /* position: relative;
            left: 100px; */
        }

        /* Adjust for mobile */
        @media (max-width: 992px) {
            .how-it-works-img {
                max-height: 350px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .how-it-works-img {
                max-height: 300px;
            }
        }


        .input-group-text {
            border: none;
            border-radius: 10px 0 0 10px;
            font-weight: 600;
            padding: 15px 20px;
        }


        .contact-info {
            color: white;
        }

        .contact-info i {
            color: white;
            font-size: 1.5rem;
        }

        .contact-info h5 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .contact-info p {
            color: white;
            margin: 0;
        }

        footer a.text-white:hover {
            color: #f5901d !important;
            /* Bootstrap warning color, looks bright on dark bg */
            text-decoration: underline;
        }