@font-face {
    font-family: 'year';
    src: url('../fonts/TheYearofHandicrafts-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Show fallback font immediately, swap when custom font loads */
}

@font-face {
    font-family: 'Montserrat-Arabic';
    src: url('../fonts/Montserrat-Arabic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Show fallback font immediately, swap when custom font loads */
}





*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
body>*{
    overflow: hidden;
}
.hero-section{
    width: 100vw;
    position: relative;
    background-image: url("../images/background.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding :2% 5% 2% 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}


.hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #6316DBB2;
    z-index: 1;
}
.hero-section-container{

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    max-width: 1700px;
    height: 100%;
    gap: 50px;
}


.logo-container{
    display: none;
}

.banner-text{
    color: var(--WHITE, #FFF);
text-align: center;
font-family: "year", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 22px;
}

.top-banner{
    border-radius: 12px;
    background: var(--03, #FB2576);
    box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.40) inset, 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 62px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Arrow containers in top banner */
.top-banner .arrow-container-container{
    background-color: #FB2576;
    width: 32px;
    overflow: hidden;
    rotate: 90deg;
}

.top-banner .arrow-container{
    background-color: #FB2576;
    height: 30px;
    width: 30px; 
    position: relative;
    margin-right: auto;
}

.top-banner .rotated{
    background-color: #FFFFFF;
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    right: -8%;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: top right;
    border-top-right-radius: 5%;
}

.top-banner .layer2{
    background-color: #FB2576;
    content: "";
    margin-top: 20%;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top right;
    border-top-right-radius: 5%;
    overflow: hidden;
}

.top-banner .darked{
    background: linear-gradient(to bottom, rgb(27, 27, 27) 0%, rgb(112, 112, 112) 10%, #FFFFFF 30%);
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top right;
}


.hero-content{
    display: flex;
    padding-bottom: 2%;
}

.student-image-container{
    margin-bottom: -10% !important;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.student-image-container img{
    width: 100%;
}
.main-heading{
    font-family: 'year', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    color: white;
    margin-bottom: 20px;
}




.description{
    color: var(--WHITE, #FFF);
    text-align: justify;
    
    /* PARAG + CAPT/PARAG 1 (18) MONTSERRAT AR */
    font-family: Montserrat-Arabic, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.sub-heading{
    color: var(--CTA, #FFD700);
    text-align: right;
    
    /* TITLE/HEADLINE 3 (32) MONTSERRAT AR */
    font-family: Montserrat-Arabic, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 42px; /* 131.25% */
}


.cta-button{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}
.hero-text{
    max-width:50%;
    display :flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 16px;
}



.cta-main-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: var(--CTA, #FFD700);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 16px 48px;
    gap: 20px;
    color: var(--DARK, #2D2D2D);
    border: none;
    font-family: year, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
}
.cta-sub-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-sub-text{
    color: var(--CTA, #FFD700);
    text-align: center;
    font-family: year, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400; 
    text-align: center;
}


.feature-boxes{
    display: flex;
    width: 100%;
    gap: 16px;
}
.feature-box{
        display: flex;
    padding: 20px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
        border-radius: 12px;
    background: rgba(99, 22, 219, 0.60);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25), 2px 4px 4px 0 #9582EF inset;
    backdrop-filter: blur(2px);
}
.feature-text{
    color: var(--WHITE, #FFF);
text-align: center;

/* BUTTON/CTA (24) LALEZAR */
font-family: year, sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 133.333% */
}



















.arrow-container-container{
    background-color: #6316DB;
    width: 550px;
    overflow: hidden;
}

.arrow-container {
    background-color: #6316DB;
    height: 500px;
    width: 500px; 
    position: relative;
    margin-right: auto;
}
.rotated{
    background-color: #8438ff;
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    right: -8%;
    top: 50%;
    transform: rotate(45deg);
    transform-origin: top right;
    border-top-right-radius: 5%;
}

.layer2{
    background-color: #6316DB;
    content: "";
    margin-top: 20%;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top right;
    border-top-right-radius: 5%;
    overflow: hidden;
}
.darked{
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 10%, #8438ff 30%);
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: top right;
}


.hero-content>*{
    flex: 1;
}
@media (max-width: 1400px) {
    .main-heading{
        font-size: 48px;
        line-height: 56px;
    }
    .sub-heading{
        font-size: 24px;
    }
    .description{
        font-size: 17px;
        line-height: 26px;
    }
    .cta-main-button{
        font-size: 17px;
        line-height: 25px;
    }
    .banner-text{
        font-size: 15px;
    }
    .cta-sub-text{
        font-size: 20px;
    }
    .feature-text{
        font-size: 20px;
    }
}
@media (max-width: 1200px) {
    .hero-text{
        gap: 0;
    }

}
@media (max-width: 1100px) {
    .main-heading{
        font-size: 44px;
        line-height: 52px;
        margin-bottom: 0;
    }
    .sub-heading{
        font-size: 20px;
    }
    .description{
        font-size: 16px;
        line-height: 24px;
    }
    .cta-main-button{
        font-size: 17px;
        line-height: 25px;
    }
    .banner-text{
        font-size: 15px;
    }
    .cta-sub-text{
        font-size: 18px;
    }
    .feature-text{
        font-size: 18px;
    }
    .cta-main-button{
        padding:6px ;
    }

}
@media (max-width: 1024px) {
    .logo-container{
        display: block;
        width:200px;
    }
    .logo-container img{
        width:100%;
    }
    .student-image-container{
        position: absolute;
        bottom: 0;
        left: 0;
        min-width: 60vw;

    }
    .feature-box{
        padding: 10px 15px;
    }
    .hero-text>*{
        width: 200%;
        z-index:9999;
    }
    .feature-boxes{
        flex-direction: column;
        width: 30vw;
    }
    .hero-section-container{
        gap: 30px;
        padding:30px 0 ;
    }
    .banner-text{
        font-size: 15px;
    }
    .top-banner{
        height: 48px;
        padding: 6px;
    }
    .top-banner svg{
        width: 14px;
        height: 14px;
    }
    .main-heading{
        font-size: 44px;
        line-height: 52px;
    }
    .description{
        font-size: 16px;
        line-height: 24px;
    }
    .cta-main-button{
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
    }
}

@media(max-width: 680px) {
    .feature-boxes{
        width: 45vw;
    }
    .student-image-container{
        position: absolute;
        bottom: 0;
        left: 0;
        min-width: 65vw;

    }
    .logo-container{
        width: 100px;
    }
    .logo-container img{
        width: 100px;
        height: auto;
    }
    .main-heading{
        font-size: 40px;
        margin-bottom: 0;
        line-height: 48px;      
    }
    .sub-heading{
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    .description{
        font-size: 16px;
        line-height: 24px;
    }
    .cta-main-button{
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
    }
    .banner-text{
        font-size: 14px;
        line-height: 20px;
    }
    .top-banner svg{
        width: 14px;
        height: 14px;
    }
    .cta-sub-text{
        font-size: 16px;
    }
    .feature-text{
        font-size: 16px;
    }
    .cta-main-button{
        padding:6px ;
    }
    .hero-text{
        gap: 16px;
        text-align: center;
    }
}
@media(max-width: 580px) {
    .student-image-container{
        min-width: 80vw;
        transform: translateX(-20%);

    }

    .click-icon{
        height: 35px;
        width: 35px;
    }
    .click-icon *{
        height: 100%;
        width: 100%;
    }
    .feature-box svg{
        height: 24px;
        width: 24px;
    }
}
@media(max-width: 480px) {
    .feature-text{
        font-size: 12px;
    }
    .feature-box{
        padding: 16px;
        gap: 2px;
    }
    .modal-banner-conten svg{
        height: 16px;
        width: 16px;
    }
    .banner-text{
        font-size: 14px;
        line-height: 20px;
    }
    .top-banner{
        height: 40px;
        padding: 4px;
        gap: 6px;
    }
    .top-banner svg{
        width: 14px;
        height: 14px;
    }
    .logo-container{
        width: 100px;
    }
    .logo-container img{
        width: 100px;
        height: auto;
    }
    .cta-main-text{
        font-size: 12px;
    }
    .main-heading{
        font-size: 38px;
        line-height: 50px;
        font-weight: bold;
    }
    .sub-heading{
        font-size: 16px;
    }
    .description{
        font-size: 15px;
        line-height: 24px;
    }
    .cta-main-button{
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
    }
}

