/* Base styles for body */
/* body {
    margin: 0;                 
    padding: 0;
    background-color: whitesmoke;
} */

/* Container for page content */
.container {
    padding-left: 3%; 
    padding-right: 3%; 
    max-width: 1200px;  
    margin: 0 auto;      
}

.hero-btn {
    background: linear-gradient(135deg, #4A90E2, #0077CC);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
    background: linear-gradient(135deg, #0077CC, #4A90E2); 
}

.hero-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-section.home {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-home-bg.jpg');
}

.hero-section.home .hero-content {
    max-width: 800px;      
    margin: 0 auto;         
    padding: 40px 20px;     
    text-align: center;     
    color: #ffffff;        
}

.hero-section.home .hero-content h1 {
    font-size: 2.5rem;     
    font-weight: 700;      
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section.home .hero-content p {
    font-size: 1.1rem;     
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Tablet view */
@media (max-width: 768px) {
    .hero-section.home .hero-content h1 {
        font-size: 2rem;
    }

    .hero-section.home .hero-content p {
        font-size: 1rem;
    }

    /* .container {
        padding-left: 10px;
        padding-right: 10px;
    } */

    .hero-section.home {
        background-position: center;
        background-size: cover;
        min-height: 70vh;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .hero-section.home .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-section.home .hero-content p {
        font-size: 0.9rem;
    }
}