main {
    justify-content: center;
    flex-direction: column;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* 🎥 Background Video */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* 🌑 Overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    padding: 160px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.hero-content > .btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
    transition: 0.3s;
}

.hero-content > .btn-primary {
    background: #ffcc00;
    color: #000;
    max-width: 150px;
}

.hero-content .btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    max-width: 130px;
}

.hero-content > .btn-primary:hover {
    background: #fddb53;
}

.hero-content .btn-secondary:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
}


@media (max-width:400px) {
    .logo > h2{
        font-size: 1.2rem;
    }    

    .logo img {
        width: 30px;
        height: 30px;
        border-radius: 5px;
    }
}

@media (max-width:430px) {
    .hero-content h1 {
        font-size: 2.5rem;
        color: #c5c4c4;
    }
    .hero-content p {
        font-size: 1.2rem;
    }

}
