/* Hero Section */
.hero-section {
    position: relative;
    height: 55vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 125px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--color-off-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-decoration {
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 0 auto;
    position: relative;
}

.hero-decoration::before,
.hero-decoration::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-decoration::before {
    left: -15px;
}

.hero-decoration::after {
    right: -15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-section {
        height: 70vh;
    }
   
}

@media (max-width: 991px) {
    
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }
    .hero-content {
        margin-top: 80px;
        padding: 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
   
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
    }
    .hero-content {
        margin-top: 180px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
}