/*==========================================
        GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==========================================
            RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F6F2EB;
    color:#183B33;
    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

button,
input{

    font-family:'Poppins',sans-serif;

}

/*==========================================
        CONTAINER
==========================================*/

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

/*==========================================
            HEADER
==========================================*/

header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:35px 0;

}

.logo img{

    width:260px;

}

.header-right{

    display:flex;
    align-items:center;
    gap:20px;

}

.language-dropdown{

    position:relative;

}

.language-btn{

    background:#0B5D4B;
    color:#fff;

    border:none;

    border-radius:30px;

    padding:12px 18px;

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    font-weight:600;

    font-size:15px;
    transition:.3s;

}
.language-btn.active i{

    transform:rotate(180deg);

}
.language-menu{

    position:absolute;

    top:115%;

    right:0;

    width:170px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    overflow:hidden;

    display:none;

    z-index:999;

}

.language-menu a{

    display:block;

    padding:14px 18px;

    text-decoration:none;

    color:#222;

    font-weight:500;

    transition:.3s;

}

.language-menu a:hover{

    background:#0B5D4B;

    color:#fff;

}

.language-menu.show{

    display:block;

}
/*==========================================
        LAUNCH BADGE
==========================================*/

.launch-badge{

    background:#0D5C4D;

    color:#fff;

    padding:13px 24px;

    border-radius:50px;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
    font-weight:600;

    box-shadow:0 12px 25px rgba(13,92,77,.25);

}

.launch-badge i{

    font-size:15px;

}

/*==========================================
            HERO
==========================================*/

.hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    min-height:72vh;

}

/*==========================================
        LEFT SIDE
==========================================*/

.hero-left{

    flex:1;

}

.hero-left h1{

    font-size:78px;

    line-height:1.08;

    font-weight:800;

    color:#0D5C4D;

    margin-bottom:28px;

}

.hero-left p{

    font-size:25px;

    line-height:1.7;

    color:#4B4B4B;

    max-width:620px;

    margin-bottom:45px;

}

.hero-left h3{

    font-size:34px;

    margin-bottom:25px;

    color:#183B33;

}

/*==========================================
        RIGHT SIDE
==========================================*/

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:100%;

    max-width:720px;

    animation:floatImage 5s ease-in-out infinite;

}

/*==========================================
        FLOAT ANIMATION
==========================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}
/*==========================================
        EMAIL FORM
==========================================*/

.email-box{

    width:100%;
    max-width:650px;

    background:#ffffff;

    border-radius:70px;

    display:flex;
    align-items:center;

    padding:10px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    margin-bottom:45px;

    transition:.35s;

}

.email-box:hover{

    box-shadow:0 28px 55px rgba(13,92,77,.12);

}

.email-box i{

    color:#0D5C4D;

    font-size:20px;

    margin-left:20px;
    margin-right:18px;

}

.email-box input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    font-size:17px;

    color:#183B33;

}

.email-box input::placeholder{

    color:#9A9A9A;

}

.email-box button{

    border:none;

    outline:none;

    cursor:pointer;

    background:#0D5C4D;

    color:#ffffff;

    padding:18px 38px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.email-box button:hover{

    background:#0A4A3D;

    transform:translateY(-2px);

}



/*==========================================
        MINI FEATURES
==========================================*/

.mini-features{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:10px;

}

.mini-card{

    background:#ffffff;

    width:190px;

    padding:22px;

    border-radius:22px;

    box-shadow:0 18px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.mini-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(13,92,77,.15);

}

.mini-card i{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#E7F5F1;

    color:#0D5C4D;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-bottom:18px;

}

.mini-card h4{

    font-size:18px;

    color:#183B33;

    margin-bottom:8px;

    font-weight:700;

}

.mini-card p{

    font-size:14px;

    color:#777;

    line-height:1.6;

    margin:0;

}



/*==========================================
        SMOOTH TRANSITIONS
==========================================*/

button,
a,
input,
img,
.mini-card,
.launch-badge,
.language-switch{

    transition:.35s ease;

}



/*==========================================
        HERO IMAGE
==========================================*/

.hero-right{

    position:relative;

}

.hero-right img{

    width:100%;

    max-width:650px;

    object-fit:contain;

    filter:drop-shadow(0 30px 50px rgba(0,0,0,.10));

}



/*==========================================
        SELECTION
==========================================*/

::selection{

    background:#0D5C4D;

    color:#fff;

}



/*==========================================
        SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F6F2EB;

}

::-webkit-scrollbar-thumb{

    background:#0D5C4D;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0A4A3D;

}
/*==========================================
            FOOTER
==========================================*/

footer{

    width:100%;

    margin-top:90px;

    padding:45px 0;

    border-top:1px solid #E6E1D9;

   background:#0B5D4B;
    color:#fff;

}

.footer-container{

    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

/*==========================================
        FOOTER ITEMS
==========================================*/

.footer-item{

    display:flex;

    align-items:center;

    gap:18px;

}

.footer-item i{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#E7F5F1;

    color:#0D5C4D;

    font-size:24px;

}

.footer-item h4{

    font-size:18px;

    color:#183B33;

    margin-bottom:5px;

}

.footer-item p{

    font-size:14px;

    color:#7A7A7A;

    margin:0;

}

/*==========================================
        SOCIAL
==========================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-social p{

    font-size:16px;

    font-weight:600;

    color:#183B33;

    margin-right:10px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#ffffff;

    color:#0D5C4D;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.footer-social a:hover{

    background:#0D5C4D;

    color:#ffffff;

    transform:translateY(-6px);

}

/*==========================================
        FORM FIX
==========================================*/

form{

    width:100%;

}

/*==========================================
        IMAGE HOVER
==========================================*/

.hero-right img{

    transition:.5s;

}

.hero-right img:hover{

    transform:translateY(-8px) scale(1.02);

}

/*==========================================
        LOGO
==========================================*/

.logo img{

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.04);

}

/*==========================================
        BADGE HOVER
==========================================*/

.launch-badge:hover{

    transform:translateY(-3px);

}

/*==========================================
        LANGUAGE
==========================================*/

.language-switch:hover{

    transform:translateY(-3px);

}

/*==========================================
        INPUT FOCUS
==========================================*/

.email-box:focus-within{

    box-shadow:0 0 0 5px rgba(13,92,77,.12);

}

/*==========================================
        BUTTON ACTIVE
==========================================*/

.email-box button:active{

    transform:scale(.96);

}

/*==========================================
        PAGE ANIMATION
==========================================*/

.container{

    animation:fadeUp .9s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==========================================
        UTILITIES
==========================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

/*==========================================
        END
==========================================*/