
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #000000 0%, #2f2f2f 50%, #000000 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            overflow: hidden;
        }

        /* Animated background particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(236, 32, 33, 0.3);
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
            50% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
        }

        .particle:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 60px; height: 60px; top: 20%; right: 15%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 40px; height: 40px; top: 60%; left: 20%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 50px; height: 50px; bottom: 20%; right: 10%; animation-delay: 1s; }
        .particle:nth-child(5) { width: 70px; height: 70px; top: 40%; right: 30%; animation-delay: 3s; }
        .particle:nth-child(6) { width: 30px; height: 30px; bottom: 30%; left: 15%; animation-delay: 5s; }
        .particle:nth-child(7) { width: 45px; height: 45px; top: 15%; left: 50%; animation-delay: 2.5s; }
        .particle:nth-child(8) { width: 55px; height: 55px; bottom: 15%; right: 40%; animation-delay: 4.5s; }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            width: 100%;
        }

        .logo-container {
            margin-bottom: 30px;
            animation: fadeInDown 1s ease-out;
        }

        .logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #ec2021 0%, #bc1212 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 3s infinite;
        }
        .logo img{
            width: 130px;
            height: 130px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(236, 32, 33, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(236, 32, 33, 0.8); }
        }

        .logo::before {
            
            font-size: 70px;
        }

        .brand-name {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
            letter-spacing: 8px;
            text-shadow: 0 0 20px rgba(236, 32, 33, 0.2);
        }

        .tagline {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .main-heading {
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .sub-heading {
            font-size: 1.4rem;
            color: #e34848;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .btn {
            padding: 18px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
            color: #1a0b2e;
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
            color: #1a0b2e;
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
        }

        /* Cards Section */

a {
    text-decoration: none;
}


        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(234, 102, 102, 0.1) 0%, rgba(162, 75, 75, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(201, 23, 23, 0.984);
            box-shadow: 0 20px 60px rgba(207, 16, 16, 0.412);
        }

        .card:hover::before {
            opacity: 1;
        }


.cards-container span img {
    width: 100% !important;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.card-icon img {
    width: 100% !important;
    max-width: 300px;
    height: auto;
    display: block;
}


        .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #e34848;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .card-description {
            font-size: 1rem;
            color: #ffffff;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .brand-name {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }

            .tagline {
                font-size: 1rem;
            }

            .main-heading {
                font-size: 2rem;
            }

            .sub-heading {
                font-size: 1.1rem;
            }

            .logo {
                width: 120px;
                height: 120px;
            }

            .logo::before {
                font-size: 50px;
            }

            .btn {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .button-group {
                margin-bottom: 60px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 30px 20px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .brand-name {
                font-size: 2rem;
            }

            .main-heading {
                font-size: 1.5rem;
            }

            .sub-heading {
                font-size: 1rem;
            }

            .button-group {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }