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

        body {
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    position: relative;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../bms.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(3px);
    z-index: -2;
}

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: left;
    max-width: 900px;
    width: 90%;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 50px;
}

        .container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #22c55e, #16a34a, #15803d, #166534);
            border-radius: 27px;
            z-index: -1;
            opacity: 0.3;
            filter: blur(10px);
        }

        .left-section {
    flex: 1;
    text-align: center;
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

        .logo::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            border-radius: 2px;
        }

        .main-heading {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

        

        .right-section {
    flex: 1;
}

.info-section {
    margin-bottom: 35px;
}

        .description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

        .launch-info {
            background: rgba(102, 126, 234, 0.1);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }

        .launch-info p {
            margin-bottom: 8px;
            color: #444;
            font-size: 1rem;
        }

        .contact-section {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #22c55e, #16a34a, #15803d);
        }

        .contact-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

        .contact-section p {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section p:hover {
    color: #ffffff;
}

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        

        @media (max-width: 768px) {
            .container {
                padding: 40px 30px;
                margin: 20px;
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .left-section {
                text-align: center;
            }
            
            .right-section {
                text-align: center;
            }
            
            .logo {
                font-size: 2.5rem;
            }
            
            .main-heading {
                font-size: 2rem;
            }
            
            .description {
                font-size: 1.1rem;
                padding: 15px;
            }
            
            .contact-section {
                padding: 25px;
            }
            
            .contact-section h3 {
                font-size: 1.2rem;
            }
            
            .contact-section p {
                font-size: 1rem;
            }
        }
  