/* Banner Management - New Code Only */

/* Hero section background properties */
#hero-section {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: background-image 0.3s ease;
}

/* Temporarily hide banner 3 dot navigation */
#hero_three {
    display: none !important;
}

.hero_desription {
    max-width: 850px;
}
.hero_desription.banner-1,
.hero_desription.banner-2,
.hero_desription.banner-3 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
}

.hero_desription.banner-1.active,
.hero_desription.banner-2.active,
.hero_desription.banner-3.active {
    display: flex;
    opacity: 1;
}

/* Banner 1: Download Profile - Default active */
.hero_desription.banner-1 {
    display: flex;
    opacity: 1;
}

/* Banner 2 & 3: Background styling */
.hero_desription.banner-2,
.hero_desription.banner-3 {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    color: #fff;
    padding: 40px 20px;
    /* Remove any background from individual banners - background is set on hero-section */
    background: none !important;
}

.hero_desription.banner-2 .title,
.hero_desription.banner-3 .title {
    color: var(--neutral-neutral-0, #FFF) !important;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 72px */
    letter-spacing: -2px;
    align-self: stretch;
    text-align: start;
}
.hero_desription.banner-3 .title {
    color: var(--neutral-neutral-950, #0E1525) !important;
}

.hero_desription.banner-3 .title:first-child {
    background: linear-gradient(91deg, #0E1525 41.86%,  #95392b 54.81% 54.81%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0 !important;
}



.hero_desription.banner-2 p,
.hero_desription.banner-3 p {
    color: var(--neutral-neutral-0, #FFF) !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.5px;
    text-align: start;
}

.hero_desription.banner-3 p {
    color: var(--neutral-neutral-700, #4F5460) !important;
}

/* Banner 2 & 3: Simple buttons */
.hero_desription.banner-2 .download_btn,
.hero_desription.banner-3 .download_btn {
    background: var(--Color-Main-color, #ef3f23);
    color: var(--Other-White, var(--Color-Text-background, #fff));
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero_desription.banner-2 .download_btn:hover,
.hero_desription.banner-3 .download_btn:hover {
    background: #d6331f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero_desription.banner-2 .download_btn a,
.hero_desription.banner-3 .download_btn a {
    color: inherit;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero_desription.banner-2,
    .hero_desription.banner-3 {
        padding: 20px 15px;
        min-height: 300px;
    }
    .hero_desription.banner-2 .title,
    .hero_desription.banner-3 .title {
        font-size: 24px;
    }
    .hero_desription.banner-2 p,
    .hero_desription.banner-3 p {
        font-size: 18px;
    }
}
@media (max-width: 768px) {

    #hero-section {
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
   
    .hero_desription.banner-2 .title,
    .hero_desription.banner-3 .title {
        font-size: 24px;
        text-align: center;
        margin: 0;
        margin-bottom: 8px;
    }
    
    .hero_desription.banner-2 p,
    .hero_desription.banner-3 p {
        font-size: 16px;
        text-align: center;
        margin: 0;
        margin-bottom: 8px;
    }
    
    .hero_desription.banner-2,
    .hero_desription.banner-3 {
        padding: 20px 15px;
        min-height: 300px;
        justify-content: start;
        align-items: center;
    }

    .hero_desription .wrap_btn {
        margin: 0;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero_desription.banner-2 .download_btn,
    .hero_desription.banner-3 .download_btn {
        display: flex;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 2px;
        background: var(--neutral-neutral-0, #FFF);
        color: var(--orange-orange-500, #EF3F23);
        font-family: "Noto Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 21px */
        letter-spacing: -0.1px;
        margin-left: 25%;
    }
} 