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

/*=========================
    CSS RESET
=========================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F3FAFC;
    color:#334144;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

a{
    text-decoration:none;
    color:inherit;
}

section{
    padding:100px 0;
}

/*=========================
    ROOT VARIABLES
=========================*/

:root{

    --primary:#2573EB;
    --secondary:#0F162A;
    --accent:#14B5A6;

    --background:#F3FAFC;

    --text:#334144;

    --white:#ffffff;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --transition:.35s ease;

    --radius:15px;

}

/*=========================
    CONTAINER
=========================*/

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

/*=========================
    HEADINGS
=========================*/

h1,
h2,
h3,
h4{

    color:var(--secondary);

    line-height:1.3;

}

h1{

    font-size:58px;

    font-weight:700;

}

h2{

    font-size:40px;

    margin-bottom:20px;

    text-align:center;

}

h3{

    font-size:24px;

}

p{

    color:var(--text);

    font-size:16px;

}

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

.btn{

    display:inline-block;

    padding:14px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

    border:none;

}

.btn:hover{

    background:var(--accent);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-block;

    padding:14px 34px;

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

    border-radius:50px;

    color:var(--primary);

    transition:var(--transition);

    font-weight:600;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
        HEADER
=========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#fff;

    z-index:999;

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

}

nav{

    height:80px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*=========================
        LOGO
=========================*/

.logo h2{

    margin:0;

    color:var(--primary);

    font-size:32px;

    font-weight:700;

}

/*=========================
        MENU
=========================*/

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links li a{

    font-weight:500;

    transition:var(--transition);

    position:relative;

}

.nav-links li a:hover{

    color:var(--primary);

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.nav-links li a:hover::after{

    width:100%;

}

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

.tagline{

    display:inline-block;

    background:rgba(37,115,235,.12);

    color:var(--primary);

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:600;

}

.hero h1{

    margin-bottom:25px;

}

.hero p{

    margin-bottom:35px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    margin:auto;

    animation:float 4s ease-in-out infinite;

}

/*=========================
        FLOAT ANIMATION
=========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

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

.why-us{
    background:#ffffff;
}

.why-us h2{
    margin-bottom:60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border:1px solid rgba(37,115,235,.08);
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.card i{
    font-size:48px;
    color:var(--primary);
    margin-bottom:25px;
}

.card h3{
    margin-bottom:15px;
}

.card p{
    font-size:15px;
    color:var(--text);
}

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

.services{
    background:var(--background);
}

.services h2{
    margin-bottom:60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 35px;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    border-top:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-top:4px solid var(--primary);
}

.service-card i{
    width:75px;
    height:75px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    border-radius:50%;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    font-size:15px;
}

/*=========================
        PROCESS
=========================*/

.process{
    background:#fff;
}

.process h2{
    margin-bottom:60px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-box{
    background:var(--background);
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    position:relative;
    transition:var(--transition);
    box-shadow:var(--shadow);
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-box span{
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.process-box h3{
    margin-bottom:15px;
}

.process-box p{
    font-size:15px;
}

/*=========================
    TECHNOLOGIES
=========================*/

.technologies{
    background:var(--background);
}

.technologies h2{
    margin-bottom:60px;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.tech-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.tech-box:hover{
    transform:translateY(-8px);
}

.tech-box h3{
    margin-bottom:20px;
    color:var(--primary);
    text-align:center;
}

.tech-box ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.tech-box ul li{
    padding:12px 18px;
    background:rgba(37,115,235,.08);
    border-left:4px solid var(--primary);
    border-radius:8px;
    font-weight:500;
    transition:var(--transition);
}

.tech-box ul li:hover{
    background:var(--primary);
    color:#fff;
    transform:translateX(6px);
}
/*=========================
        STATISTICS
=========================*/

.stats{
    background:var(--primary);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box{
    padding:30px;
}

.stat-box h2{
    font-size:52px;
    color:#fff;
    margin-bottom:10px;
}

.stat-box p{
    color:rgba(255,255,255,.9);
    font-size:18px;
}

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

.cta{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    text-align:center;
    color:#fff;
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    color:#fff;
    max-width:650px;
    margin:0 auto 40px;
    font-size:18px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta .btn{
    background:#fff;
    color:var(--primary);
}

.cta .btn:hover{
    background:var(--accent);
    color:#fff;
}

.cta .btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.cta .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/*=========================
        FOOTER
=========================*/

footer{
    background:var(--secondary);
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-grid h2,
.footer-grid h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-grid p{
    color:rgba(255,255,255,.75);
    margin-bottom:12px;
}

.footer-grid ul{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-grid ul li a{
    color:rgba(255,255,255,.75);
    transition:var(--transition);
}

.footer-grid ul li a:hover{
    color:var(--accent);
    padding-left:6px;
}

/*=========================
        SOCIAL ICONS
=========================*/

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    transition:var(--transition);
}

.social-icons a i{
    color:#fff;
    font-size:18px;
}

.social-icons a:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:25px;
    text-align:center;
}

.copyright p{
    color:rgba(255,255,255,.7);
    font-size:15px;
}

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

@media (max-width:992px){

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .cards,
    .service-grid,
    .process-grid,
    .tech-grid,
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:768px){

    section{
        padding:80px 0;
    }

    nav{
        flex-direction:column;
        height:auto;
        padding:20px 0;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    h1{
        font-size:36px;
    }

    h2{
        font-size:30px;
    }

    .hero{
        padding-top:180px;
    }

    .cards,
    .service-grid,
    .process-grid,
    .tech-grid,
    .stats-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .social-icons{
        justify-content:center;
    }

}

@media (max-width:576px){

    .container{
        width:92%;
    }

    h1{
        font-size:30px;
    }

    h2{
        font-size:26px;
    }

    h3{
        font-size:20px;
    }

    p{
        font-size:15px;
    }

    .btn,
    .btn-outline{
        width:100%;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .card,
    .service-card,
    .process-box,
    .tech-box{
        padding:30px 20px;
    }

}

/*=========================
    CUSTOM SCROLLBAR
=========================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eaf3f8;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--accent);
}

/*=========================
    TEXT SELECTION
=========================*/

::selection{
    background:var(--primary);
    color:#fff;
}
.about-section,
.policy-section {
    padding: 80px 10%;
    line-height: 1.8;
}

.about-section h1,
.policy-section h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.policy-section h3 {
    margin-top: 25px;
}