@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 820px;
    background: url('../images/background/bg1.png') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 31, 41, 0.7); /* Adjust the alpha for more/less darkness */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    margin-top: 10vw;
    padding: 2rem 2vw;
    width: 100%;
    max-width: 900px;
    margin-left: 350px;
    margin-right: 350px;
    box-sizing: border-box;

    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 64px);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    padding: 0 0.5rem;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 0rem;
}

.hero-btn-custom {
    border-radius: 50px !important;    /* Fully rounded */
    color: #fff !important;            /* White text */
    font-size: 16px !important;      /* Larger font */
    padding: 16px 48px !important;     /* Bigger button */
    border-width: 2px !important;      /* Thicker outline */
    border-color: #fff !important;     /* White outline */
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 2rem 5vw;
        margin-left: 150px;
        margin-right: 150px;
        margin-top: 80px;
        max-width: 95vw;
    }
    .hero-content h1 {
        font-size: 8vw;
        font-size: clamp(24px, 8vw, 60px);
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 480px;
    }
    .hero-content {
        padding: 1rem 2vw;
        margin-left: 50px;
        margin-right: 50px;
        margin-top: 40px;
        max-width: 100vw;
    }
    .hero-content h1 {
        font-size: 9vw;
        font-size: clamp(18px, 9vw, 28px);
    }
    .hero-content p {
        font-size: 0.95rem;
        padding: 0;
    }
    .hero-btn-custom {
        font-size: 1rem !important;
        padding: 12px 24px !important;
    }
}