/* Hero Section */

.hero-section {
    background: url('css/img/background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}


/* Interactive Button */

.interactive-btn {
    display: inline-block;
    padding: 20px 50px;
    background-color: #ff6200;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.interactive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.interactive-btn:hover::before {
    left: 100%;
}

.interactive-btn:hover {
    background-color: #e05200;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.secure-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

.secure-text i {
    margin-right: 5px;
    color: #00ffcc;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .interactive-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}