/*==============================
Google Font
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{
    font-family:'Manrope',sans-serif;
    background:#081221;
    color:#fff;
    overflow-x:hidden;
}

a{

text-decoration:none;

}

ul{

list-style:none;

padding:0;

margin:0;

}

img{

max-width:100%;

display:block;

}

section{

padding:100px 0;

}

/*==============================
ROOT COLORS
===============================*/

:root{

    /* Brand Colors */

    --primary:#0077FF;
    --primary-light:#3A9DFF;
    --primary-dark:#0057CC;

    /* Background */

    --bg:#081221;
    --bg-secondary:#101C30;
    --bg-card:#152238;

    /* Text */

    --white:#FFFFFF;
    --text:#EAF2FF;
    --gray:#9FB2C9;

    /* Effects */

    --glass:rgba(255,255,255,.06);
    --glass-hover:rgba(255,255,255,.09);
    --border:rgba(255,255,255,.10);

    --shadow:0 20px 40px rgba(0,0,0,.35);

    --radius:18px;

}

/*==============================
Scrollbar
===============================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#070B17;

}

::-webkit-scrollbar-thumb{

background:#0D6EFD;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#3B82F6;

}

/*=================================
NAVBAR
=================================*/

.custom-navbar{

    transition:.35s;

    padding:22px 0;

    background:transparent;

}

.custom-navbar.scrolled{

    background:rgba(8,18,33,.88);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-brand img{

    height:52px;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color:var(--white);

    font-size:.95rem;

    font-weight:600;

    transition:.3s;

    position:relative;
}

.nav-link.active::after{

    width:100%;

}


.nav-link:hover{

    color:#66B3FF;

}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:2px;
    background:var(--primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .3s ease;
}

.nav-link:hover::after{
    transform:scaleX(1);
}

.nav-link.active::after{
    transform:scaleX(1);
    height:3px;
    border-radius:20px;
    box-shadow:0 0 10px rgba(0,119,255,.8);
}



/*==============================
LANGUAGE SWITCHER
==============================*/

.language-switcher{
    position:relative;
}

.lang-btn{
    width:50px;
    height:40px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.lang-btn:hover{
    background:#1f8cff;
}

.lang-btn .fi{
    font-size:18px;
}

.lang-menu{
    position:absolute;
    top:48px;
    right:0;
    width:170px;
    background:#16263d;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    display:none;
    overflow:hidden;
    z-index:99999;
}

.lang-menu.show{
    display:block;
}

.lang-option{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:12px 15px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.25s;
    text-align:left;
}

.lang-option:hover{
    background:#1f8cff;
}

.lang-option .fi{
    font-size:18px;
}


/* Active Navigation */

.navbar .nav-link.active{

    color:#fff !important;

    text-shadow:0 0 12px rgba(0,119,255,.45);

}

.navbar .nav-link.active::after{

    transform:scaleX(1);

    height:3px;

    border-radius:20px;

    box-shadow:0 0 12px rgba(0,119,255,.8);

}



/*=================================
HERO
=================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:flex-start;

    padding-top:120px;

    padding-bottom:60px;

    background:url("../images/hero.png");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(5,10,20,.72);

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(0,119,255,.15);

    border:1px solid rgba(0,119,255,.35);

    color:#66B3FF;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:4.6rem;

    font-weight:800;

    line-height:1.1;

    letter-spacing:-2px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    margin-top:25px;

    max-width:650px;

    color:var(--gray);

    line-height:1.9;

    font-size:1.08rem;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.btn-primary-custom{

    background:var(--primary);

    color:white;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary-custom:hover{

    color:white;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,119,255,.35);

}

.btn-outline-custom{

    border:1px solid rgba(255,255,255,.20);

    color:white;

    padding:16px 36px;

    border-radius:50px;

    transition:.35s;

}

.btn-outline-custom:hover{

    background:white;

    color:#081221;

}

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

}

.scroll-down span{

    width:28px;

    height:45px;

    border:2px solid rgba(255,255,255,.35);

    display:block;

    border-radius:40px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:6px;

    border-radius:50%;

    background:white;

    left:50%;

    transform:translateX(-50%);

    top:8px;

    animation:scrollDown 1.8s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        top:8px;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        top:25px;

    }

}
/*=========================
Hero Logo
=========================*/

.hero-logo{

    margin-bottom:30px;

    animation:fadeUp .8s ease;

}

.hero-logo img{

    width:95px;

    filter:drop-shadow(0 0 25px rgba(0,119,255,.35));

}

.hero-content{

    animation:fadeUp 1s ease;

    padding-top:70px;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }
}
.company-name{

    color:#66B3FF;

    font-size:.90rem;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:22px;

}

/*==============================
SERVICES
===============================*/

.services{

    background:#081221;

}

.service-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:40px 30px;

    text-align:left;

    transition:.35s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,119,255,.45);

    box-shadow:0 20px 45px rgba(0,119,255,.18);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,119,255,.15);

    color:var(--primary);

    font-size:30px;

    margin-bottom:25px;

    transition:.35s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg) scale(1.08);

}

.service-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

    margin:0;

}

/*=================================
PROJECTS
=================================*/

.projects{
    background:#0B1628;
}

.project-card{

    background:#152238;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    height:100%;

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:#0077FF;

    box-shadow:0 20px 40px rgba(0,119,255,.20);

}

.project-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:contain;
    background:#0f1c2d;
    padding:15px;
    border-radius:16px;
}

.project-card:hover img{

    transform:scale(1.05);

}

.project-content{

    padding:25px;

}

.project-content span{

    color:#3A9DFF;

    font-size:.9rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.project-content h4{

    margin:12px 0;

    font-size:1.6rem;

    font-weight:700;

}

.project-content p{

    color:#9FB2C9;

    line-height:1.8;

    margin:0;

}

@media (max-width:992px){

.project-card img{

    height:220px;

}

}

@media (max-width:768px){

.projects{

    padding:70px 0;

}

.project-card{

    margin-bottom:10px;

}

.project-card img{

    height:210px;

}

.project-content{

    padding:22px;

}

.project-content h4{

    font-size:1.35rem;

}

}

@media (max-width:576px){

.project-card img{

    height:190px;

}

.project-content{

    padding:18px;

}

.project-content h4{

    font-size:1.2rem;

}

.project-content p{

    font-size:.95rem;

}

}

.project-card{
    overflow:hidden;
}

.project-card img{
    transition:0.4s ease;
}

.project-card:hover img{
    transform:scale(1.05);
}

/*=================================
TESTIMONIALS
=================================*/

.testimonials{

    background:#081221;

}

.testimonial-card{

    background:#152238;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    position:relative;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(0,119,255,.25);

}

.quote-icon{

    position:absolute;

    top:18px;

    right:22px;

    font-size:55px;

    color:rgba(0,119,255,.12);

}

.stars{

    color:#FFD54A;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.testimonial-text{

    color:var(--gray);

    line-height:1.9;

    font-style:italic;

    margin-bottom:30px;

    min-height:150px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:20px;

}

.testimonial-user img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--primary);

}

.testimonial-user h5{

    margin:0;

    font-weight:700;

    color:#fff;

}

.testimonial-user span{

    color:var(--gray);

    font-size:.95rem;

}

/* Responsive */

@media (max-width:991px){

    .testimonial-text{

        min-height:auto;

    }

}

@media (max-width:768px){

    .testimonial-card{

        padding:28px;

    }

    .quote-icon{

        font-size:45px;

    }

}
/*=================================
TEAM
=================================*/

.leadership{

    background:#0B1628;

}

.leader-card{

    background:#152238;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-10px);

    border-color:rgb(0, 7, 15);

    box-shadow:0 20px 45px rgba(0,119,255,.18);

}

.leader-card img{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;

    margin:0 auto 25px;

    border:5px solid rgba(0,119,255,.25);

    transition:.35s;

}

.leader-card:hover img{

    transform:scale(1.05);

    border-color:var(--primary);

}

.leader-card h3{

    font-weight:700;

    margin-bottom:10px;

}

.leader-position{

    display:block;

    color:#66B3FF;

    font-weight:600;

    margin-bottom:20px;

}

.leader-card p{

    color:var(--gray);

    line-height:1.8;

    margin:0;

}

@media(max-width:768px){

    .leader-card{

        padding:35px 25px;

    }

    .leader-card img{

        width:150px;

        height:150px;

    }

}


/*======================================
CAREERS
======================================*/

.career-section{

    padding:50px 0 80px;

    background:#081221;

}

.career-photo{

    width:100%;
    height:100%;
    max-height:620px;

    object-fit:cover;

    border-radius:24px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.30);

    transition:.4s ease;

}

.career-photo:hover{

    transform:translateY(-6px);

}

.resume-label{

    display:block;

    color:#37375a;

    font-weight:600;

    margin-bottom:10px;

}

.career-form{

    background:#18263d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

.career-section textarea.form-control{

    height:130px;

    resize:none;

}

.career-section .form-control::placeholder{

    color:#999999;

}

.career-section .form-control:focus,
.career-section .form-select:focus{

    background:#243552;

    color:#dad8e1;

    border-color:#1f8cff;

    box-shadow:none;

}

.career-section input[type=file]{

    padding:14px;

}

.career-section .btn-primary-custom{

    width:100%;

    padding:16px;

    font-size:17px;

}

@media(max-width:991px){

    .career-photo{

        margin-top:40px;

    }
    .purpose-stats{

    flex-direction:column;

}

}

.back-home{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

    margin-bottom:40px;

}

.back-home:hover{

    background:#2684ff;

    border-color:#2684ff;

    color:#fff;

    transform:translateY(-2px);

}

/*==================================================
ABOUT SECTION
==================================================*/

.about,
.purpose-section,
.why-choose-section{

    padding:110px 0;

    background:#081221;

}

.section-tag{

    display:inline-block;

    color:#1f8cff;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.about h2,
.purpose-section h2,
.why-choose-section h2{

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.about p,
.purpose-section p,
.section-description{

    color:#9FB2C9;

    line-height:1.9;

}

/*====================
BUTTONS
====================*/

.about-buttons{

    display:flex;

    justify-content:flex-end;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.about-tab{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    border:2px solid #1f8cff;

    color:#fff;

    background:transparent;

    font-size:13px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.about-tab:hover{

    background:#1f8cff;

    color:#fff;

}

.about-tab.active{

    background:#1f8cff;

    color:#fff;

}

/*====================
IMAGE
====================*/

.about-image{

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.about-image img{

    width:100%;

    display:block;

    transition:.4s;

}

.about-image:hover img{

    transform:scale(1.04);

}

/*====================
FEATURES
====================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-features div{

    color:#fff;

    font-weight:600;

}

.about-features i{

    color:#1f8cff;

    margin-right:10px;

}

/*====================
MISSION / VISION
====================*/

.purpose-card{

    background:#152238;

    padding:30px;

    border-radius:20px;

    margin-top:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.purpose-card:hover{

    transform:translateY(-8px);

    border-color:#1f8cff;

}

.purpose-card h3{

    color:#1f8cff;

    margin-bottom:15px;

}

/*====================
WHY CHOOSE
====================*/

.why-card{

    background:#152238;

    border-radius:20px;

    padding:30px;

    height:100%;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    text-align:left;

    min-height:350px;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#1f8cff;

    box-shadow:0 18px 40px rgba(0,119,255,.18);

}

.why-card i{

    font-size:34px;

    color:#1f8cff;

    margin-bottom:20px;

}

.why-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.why-card p{

    margin:0;

    color:#9FB2C9;

}


/*================================
CONTACT
================================*/

.contact-section{
    padding:100px 0;
    background:#081221;
}

.contact-title h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.contact-title p{
    max-width:650px;
    margin:auto;
    color:#b8c6dc;
    line-height:1.8;
}

.contact-card,
.contact-info{
    background:#16263d;
    border-radius:25px;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
}

.contact-section .row{
    display:flex;
    align-items:stretch;
}



.contact-input{
    background:#0f2035;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    border-radius:14px;
    padding:15px 18px;
}

.contact-input:focus{
    background:#0f2035;
    color:#fff;
    border-color:#1f8cff;
    box-shadow:none;
}

.contact-input::placeholder{
    color:#8ea3c2;
}

textarea.contact-input{
    resize:none;
}

.btn-contact{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:#1f8cff;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.btn-contact:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(31,140,255,.35);
}

.contact-info h3{
    font-size:34px;
}

.contact-info>p{
    color:#b8c6dc;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.contact-item i{
     width:52px;
    height:52px;
    font-size:18px;
    background:#1f8cff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex-shrink:0;
}

.contact-item h5{
    margin-bottom:6px;
    font-weight:700;
}

.contact-item span{
    color:#b8c6dc;
    line-height:1.7;
}

.contact-social{
    margin-top:50px;
    display:flex;
    gap:15px;
}

.contact-social a{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#1f8cff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    transition:.3s;
}

.contact-social a:hover{
    transform:translateY(-5px);
    background:#fff;
    color:#1f8cff;
}
/*==============================
INPUT ICONS
===============================*/

.input-box{

    position:relative;

}

.input-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#1f8cff;

    font-size:18px;

    z-index:2;

}

.input-box input{

    padding-left:52px;

}

.textarea-box i{

    top:24px;

    transform:none;

}

.textarea-box textarea{

    padding-left:52px;

}

.contact-info{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}
.contact-section .row{
    align-items:flex-start;
}




/*====================
RESPONSIVE
====================*/

@media(max-width:991px){

    .about,
    .purpose-section,
    .why-choose-section{

        text-align:center;

        padding:80px 0;

    }

    .about-buttons{

        justify-content:center;

        margin-bottom:30px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .about h2,
    .purpose-section h2,
    .why-choose-section h2{

        font-size:34px;

    }

    .about-tab{

        font-size:12px;

        padding:8px 14px;

    }

}

@media(max-width:576px){

    .about-buttons{

        gap:8px;

    }

    .about-tab{

        width:100%;

    }

}

/*==================================
PURPOSE STATS
==================================*/

.purpose-stats{

    display:flex;

    gap:18px;

    margin-top:30px;

}

.stat-box{

    flex:1;

    background:#18263d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:13px;

    text-align:center;

    transition:.3s;

}

.stat-box:hover{

    transform:translateY(-6px);

    border-color:#2684ff;

}

.stat-box h4{

    color:#2684ff;

    font-size:18px;

    font-weight:800;

    margin-bottom:8px;

}

.stat-box span{

    color:#dbe6f5;

    font-size:14px;

}