@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*{
    margin:0;
    padding:0;
    font-family:'Nunito',sans-serif;
    box-sizing:border-box;
}
.section_one{
    margin-top:27px;
    position:relative;
    width:100%;
    min-height:80vh;
    background:url('img/download (1).jpg') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    overflow:hidden;
}
.section_one::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
}
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
}
.hero-content h1{
    font-size:3rem;
    font-weight:700;
    color:#fff;
}
.hero-content h2{
    font-size:1.5rem;
    margin-top:10px;
    opacity:0.9;
    color:#fff;
}
#heroCanvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
    pointer-events:none;
}
@media (max-width:768px){
    .section_one{
        margin-top: -20px;
        min-height: 27vh;
        padding: 32px 20px;
    }
    .hero-content h1{
        font-size:2rem;
    }
    .hero-content h2{
        font-size:1.1rem;
    }
}
@media (max-width:480px){
    .hero-content h1{
        font-size:1.6rem;
    }
    .hero-content h2{
        font-size:0.95rem;
    }
}
.section_two{
    display:flex;
    justify-content:center;
    padding:40px 0;
    background:#fff;
}
.cards_container{
    width:90%;
    display:grid;
    gap:25px;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}
.card{
    background:linear-gradient(352deg,#000000 1%,#0c29d9 38%);
    box-shadow:-1px 2px 15px 3px rgba(23,23,24,0.801);
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    padding-bottom:20px;
    transition:0.3s;
    perspective:1000px;
}
.card:hover{
    transform:translateY(-10px) rotateX(4deg) rotateY(4deg);
}
.card img{
    width:100%;
    height:300px;
    transition:0.5s;
}
.card:hover img{
    transform:scale(1.1);
}
.card h3{
    margin:15px 0;
    color:#fff;
}
.card button{
    padding:10px 20px;
    border:none;
    background:#081670;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}
.card button:hover{
    background:#02072e;
}
.section_three{
    display:flex;
    gap:30px;
    padding:40px 20px;
    align-items:center;
    justify-content:center;
    background:#f7f7f7;
}
.section_three_container_one{
    width:75%;
    height:100%;
}
.background-clip{
    width:100%;
    height:90%;
    object-fit:cover;
}
.about_right{
    width:45%;
}
.about_title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}
.about_desc{
    font-size:16px;
    color:#444;
    line-height:1.6;
    margin-bottom:15px;
}
.about_list{
    list-style:none;
}
.about_list li{
    margin-bottom:10px;
    font-size:16px;
    display:flex;
    align-items:center;
}
.about_list i{
    color:#2ecc71;
    font-size:18px;
    margin-right:8px;
}
@media(max-width:850px){
    .section_three{
        flex-direction:column;
        text-align:center;
    }
    .section_three_container_one{
        width:100%;
        height:25vh;
    }
    .about_right{
        width:100%;
    }
}
.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(6px);
    z-index:1000;
    justify-content:center;
    align-items:center;
}
.popup_content{
    background:#fff;
    width:95%;
    max-width:1200px;
    padding:35px;
    border-radius:20px;
    position:relative;
    animation:popupZoom 0.35s ease;
}
@keyframes popupZoom{
    from{transform:scale(0.6);opacity:0;}
    to{transform:scale(1);opacity:1;}
}
.close_popup{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
}
.popup_text{
    font-size:17px;
    line-height:1.7;
}
.section_four{
    background:linear-gradient(357deg,#000000c9 0%,#000000ab 50%),url(img/background-section-3.png);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-blend-mode:overlay;
    background-attachment:fixed;
    height:60vh;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4vw;
    padding:4vh 2vw;
}
.section_four_con_one,
.section_four_con_three{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.section_four_con_one img,
.section_four_con_three img{
    width:28vh;
    max-width:230px;
    border-radius:12px;
    object-fit:cover;
}
.section_four_con_two{
    display:flex;
    justify-content:center;
}
.section_four_card{
    width:300px;
    backdrop-filter:blur(14px);
    background:#ffffff40;
    padding:25px;
    border-radius:17px;
    text-align:center;
    box-shadow:0px 5px 18px rgba(0,0,0,0.15);
    outline:1px solid #fafafa;
}
.section_four_card p{
    font-size:18px;
    margin-bottom:15px;
    color:#ffffff;
}
.section_four_card button{
    padding:10px 22px;
    background:#ff6b2b;
    border:none;
    border-radius:25px;
    color:#fff;
    outline:1px solid white;
    cursor:pointer;
    transition:0.3s;
}
.section_four_card button:hover{
    background:#d9571f;
    outline:1px solid rgb(80,79,79);
}
@media(max-width:900px){
    .section_four{
        flex-direction:column;
    }
}

.choose-section{
    background:#fff;
    padding:70px 7%;
    text-align:center;
}
.choose-section h3{
    color:#ffffff;
    font-size:32px;
    margin-bottom:10px;
}
.choose-section p{
    color:#ffffff;
    margin-bottom:40px;
}
.choose-container{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}
.choose-section{
    background:#fff;
    padding:60px 5%;
    text-align:center;
}
.choose-section h2{
    font-size:clamp(1.5rem,4vw,2.2rem);
    margin-bottom:40px;
}
.choose-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    width:100%;
}
.choose-card{
    background:linear-gradient(354deg,#000000 1%,#0c29d9 128%);
    padding:25px 15px;
    text-align:center;
    border-radius:12px;
    box-shadow:-1px 2px 15px 3px rgba(23,23,24,0.8);
    width:100%;
}
.choose-card img{
    width:55px;
    margin-bottom:15px;
}
.choose-card h3{
    color:#fff;
    font-size:1.4rem;
    margin-bottom:10px;
}
.choose-card p{
    color:#fff;
    font-size:0.95rem;
    margin-bottom:20px;
}
.round-btn{
    width:42px;
    height:42px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    cursor:pointer;
}
@media(max-width:768px){
    .choose-card{
        width:auto;
    }
    .choose-container{
        flex-direction:column;
        align-items:center;
    }
}
.open_popup_btn{
    background:#03036b;
    padding:8px;
    color:white;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}
.open_popup_btn:hover{
    background:#020241;
    outline:1px solid black;
    box-shadow:0 5px -15px rgba(43,42,42,0.15);
}
