/* Note: Global styles moved to global.css */

.hero-section{
    background-color: #EBF4FF;
}
.hero-section__tilte span{
    color: #10397B;
}
.hero-section__buttons{
    border-radius: 40px;
    padding: 1rem 2rem;
    width: fit-content;
    background-color: #ffffff;
    display: flex;
    gap: 10px;
}
.hero-section__button{
    text-decoration: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    background-color: #10397B;
    color: #ffffff;
}
/* Hero Section Styles */

/* Hero Section Base Layout */
@media (min-width: 1400px) {
    .hero-section__image {
        justify-content: center !important;
    }
    .hero-section__image img {
        max-width: 520px !important;
        margin-right: 0 !important;
    }
    .hero-section__container {
        gap: 2.5rem !important;
    }
}

/* Hero Section Icon Styling */
.hero-section__button i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.hero-section__button:hover i {
    transform: translateX(1px) scale(1.05);
}

/* Bootstrap-based Hero Section Layout */
.hero-section .container {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
}

.hero-section .row {
    min-height: 410px;
    align-items: center;
}

.header_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.header_right img, .hero-section__image img {
    max-width: 410px;
    width: 100%;
    height: auto;
    border-radius: 2rem;
    object-fit: cover;
    margin-top: 0;
}

.button_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Hero section buttons styling is handled inline */

/* Mobile Hero Section Styles */
@media (max-width: 576px) {
    /* Reduce space between hero image and top nav */
    body {
        padding-top: 56px;
    }
    
    .hero-section {
        padding-top: 0.5rem !important;
    }
    
    .hero-section__container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .hero-section__image {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0.2rem !important;
    }
    
    /* Mobile: Image first (below header), then text content at bottom */
    .hero-section__container {
        display: flex;
        flex-direction: column;
    }
    
    /* Fix hero image position: image on top, text below */
    .hero-section__image {
        order: 1;
    }
    
    .hero-section__content {
        order: 2;
    }
    
    .hero-section__left-side {
        order: 1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-section__right-side {
        order: 2;
        text-align: center;
        margin-top: 1rem;
    }
    
    .hero-section__title {
        font-size: 1.5rem;
        line-height: 1.12;
        margin-bottom: 0.25rem;
        margin-top: 0.1rem;
    }
    
    .hero-section__text {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        margin-top: 0.1rem;
    }
    
    .hero-section__buttons {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-section__button {
        width: auto;
        max-width: 250px;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .hero-section .row {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .hero-section .row {
        min-height: 300px;
    }
    
    .header_left h1, .hero-section__title {
        font-size: 1.3rem !important;
    }
    
    .header_right img, .hero-section__image img {
        max-width: 95vw !important;
        border-radius: 1.3rem !important;
        margin-top: 0 !important;
    }
    
    .hero-section__buttons {
        justify-content: center !important;
        width: 100%;
    }
}
