/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#070B14;
    color:#fff;
}

/* ===========================
   HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    backdrop-filter:blur(18px);
    background:rgba(8,12,20,.78);

    border-bottom:1px solid rgba(255,255,255,.06);
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    max-width:1250px;

    margin:auto;

    padding:18px 30px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* ===========================
   LOGO
=========================== */

.logo{

    text-decoration:none;

    font-size:1.45rem;

    font-weight:800;

    color:#fff;

    display:flex;

    align-items:center;

    gap:10px;
}

.logo span{

    color:#4F7CFF;

    font-size:1.4rem;
}

/* ===========================
   NAV LINKS
=========================== */

.nav-links{

    display:flex;

    align-items:center;

    list-style:none;

    gap:38px;
}

.nav-links a{

    color:#bfc9da;

    text-decoration:none;

    font-weight:500;

    transition:.30s;
}

.nav-links a:hover{

    color:#ffffff;
}

.active{

    color:#ffffff !important;
}

/* ===========================
   BUTTON
=========================== */

.hire-btn{

    background:linear-gradient(135deg,#4F7CFF,#7A5CFF);

    color:#fff !important;

    padding:12px 22px;

    border-radius:12px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(79,124,255,.25);
}

.hire-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(79,124,255,.40);
}

/*=============================
    Trusted Technologies
=============================*/

.tech-section{

    padding:100px 0;

    background:#070B14;

    overflow:hidden;
}

.section-title{

    text-align:center;

    margin-bottom:60px;

    padding:0 20px;
}

.section-title span{

    display:inline-block;

    color:#4F7CFF;

    letter-spacing:2px;

    font-size:.85rem;

    font-weight:700;

    margin-bottom:15px;
}

.section-title h2{

    font-size:2.6rem;

    margin-bottom:18px;

    color:#fff;
}

.section-title p{

    max-width:650px;

    margin:auto;

    color:#9AA4B2;

    line-height:1.8;
}

/*=============================
    Slider
=============================*/

.tech-slider{

    width:100%;

    overflow:hidden;

    position:relative;
}

.tech-slider::before,
.tech-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:2;
}

.tech-slider::before{

    left:0;

    background:linear-gradient(to right,#070B14,transparent);
}

.tech-slider::after{

    right:0;

    background:linear-gradient(to left,#070B14,transparent);
}

.tech-track{

    display:flex;

    width:max-content;

    animation:scroll 30s linear infinite;

    gap:25px;
}

.tech-slider:hover .tech-track{

    animation-play-state:paused;
}

/*=============================
    Card
=============================*/

.tech-card{

    width:180px;

    height:150px;

    border-radius:18px;

    background:#111827;

    border:1px solid rgba(255,255,255,.06);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

    cursor:pointer;
}

.tech-card i{

    font-size:3rem;

    color:#4F7CFF;

    margin-bottom:18px;

    transition:.35s;
}

.tech-card h4{

    color:#fff;

    font-size:1rem;

    font-weight:600;
}

.tech-card:hover{

    transform:translateY(-8px);

    border-color:#4F7CFF;

    box-shadow:0 15px 40px rgba(79,124,255,.18);
}

.tech-card:hover i{

    transform:scale(1.2) rotate(8deg);

    color:#6D96FF;
}

/*=============================
    Animation
=============================*/

@keyframes scroll{

    from{

        transform:translateX(0);
    }

    to{

        transform:translateX(-50%);
    }

}

/*=============================
    Tablet
=============================*/

@media(max-width:992px){

    .section-title h2{

        font-size:2.2rem;
    }

    .tech-card{

        width:150px;

        height:135px;
    }

    .tech-card i{

        font-size:2.5rem;
    }

}

/*=============================
    Mobile
=============================*/

@media(max-width:768px){

    .tech-section{

        padding:80px 0;
    }

    .section-title{

        margin-bottom:40px;
    }

    .section-title h2{

        font-size:2rem;
    }

    .section-title p{

        font-size:.95rem;
    }

    .tech-track{

        gap:18px;
    }

    .tech-card{

        width:130px;

        height:120px;
    }

    .tech-card i{

        font-size:2.2rem;
    }

    .tech-card h4{

        font-size:.9rem;
    }

}

/*=============================
    Small Mobile
=============================*/

@media(max-width:480px){

    .section-title h2{

        font-size:1.7rem;
    }

    .tech-card{

        width:115px;

        height:110px;
    }

    .tech-card i{

        font-size:2rem;
    }

}

/*======================================
        Featured Projects
=======================================*/

.projects{

    background:#070B14;

    padding:110px 20px;
}

.section-header{

    text-align:center;

    max-width:700px;

    margin:auto auto 70px;
}

.section-tag{

    display:inline-block;

    color:#5C8DFF;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;
}

.section-header h2{

    font-size:2.8rem;

    color:#fff;

    margin-bottom:18px;
}

.section-header p{

    color:#9CA8BA;

    line-height:1.8;
}

/*========================*/

.project-grid{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/*========================*/

.project-card{

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    position:relative;
}

.project-card:hover{

    transform:translateY(-12px);

    border-color:#4F7CFF;

    box-shadow:0 18px 45px rgba(79,124,255,.18);
}

/*========================*/

.project-image{

    position:relative;

    overflow:hidden;
}

.project-image img{

    width:100%;

    display:block;

    height:240px;

    object-fit:cover;

    transition:.5s;
}

.project-card:hover img{

    transform:scale(1.08);
}

/*========================*/

.status{

    position:absolute;

    top:18px;

    left:18px;

    background:rgba(20,27,45,.92);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:.75rem;

    font-weight:600;
}

.live{

    background:#00b96b;
}

/*========================*/

.project-content{

    padding:28px;
}

.project-content h3{

    color:#fff;

    font-size:1.45rem;

    margin-bottom:15px;
}

.project-content p{

    color:#9AA4B2;

    line-height:1.8;

    margin-bottom:25px;
}

/*========================*/

.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:28px;
}

.project-tech span{

    background:#1B2438;

    color:#BFC8D8;

    padding:9px 14px;

    border-radius:50px;

    font-size:.82rem;

    border:1px solid rgba(255,255,255,.05);
}

/*========================*/

.project-buttons{

    display:flex;

    gap:15px;
}

.project-buttons a{

    flex:1;

    text-align:center;

    text-decoration:none;

    padding:13px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;
}

.project-buttons a:first-child{

    background:#4F7CFF;

    color:#fff;
}

.project-buttons a:first-child:hover{

    background:#628DFF;
}

.project-buttons a:last-child{

    border:1px solid rgba(255,255,255,.12);

    color:#fff;
}

.project-buttons a:last-child:hover{

    background:#1A2235;
}

/*======================================
        Tablet
=======================================*/

@media(max-width:1100px){

.project-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*======================================
        Mobile
=======================================*/

@media(max-width:768px){

.projects{

padding:80px 18px;

}

.section-header{

margin-bottom:45px;

}

.section-header h2{

font-size:2rem;

}

.project-grid{

grid-template-columns:1fr;

gap:25px;

}

.project-image img{

height:220px;

}

.project-content{

padding:24px;

}

.project-buttons{

flex-direction:column;

}

}

/*======================================
        Small Phones
=======================================*/

@media(max-width:480px){

.section-header h2{

font-size:1.7rem;

}

.project-content h3{

font-size:1.25rem;

}

.project-image img{

height:190px;

}

.project-tech{

gap:8px;

}

.project-tech span{

font-size:.75rem;

padding:8px 12px;

}

}

/*====================================
            ABOUT SECTION
====================================*/

.about{

    padding:110px 20px;

    background:#070B14;
}

.about-container{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;
}

/*====================================
            IMAGE
====================================*/

.about-image{

    position:relative;
}

.image-box{

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:30px;

    overflow:hidden;

    padding:15px;
}

.image-box img{

    width:100%;

    display:block;

    border-radius:22px;
}

/* Floating Card */

.experience-card{

    position:absolute;

    right:-25px;

    bottom:30px;

    background:#111B2C;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px 28px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.experience-card h2{

    color:#4F7CFF;

    font-size:2rem;

    margin-bottom:6px;
}

.experience-card p{

    color:#C5D1DF;

    font-size:.9rem;
}

/*====================================
            CONTENT
====================================*/

.section-badge{

    display:inline-block;

    color:#4F7CFF;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

    font-size:.85rem;
}

.about-content h2{

    color:#fff;

    font-size:2.8rem;

    line-height:1.3;

    margin-bottom:25px;
}

.about-content p{

    color:#9AA4B2;

    line-height:1.9;

    margin-bottom:35px;
}

/*====================================
            INFO GRID
====================================*/

.about-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;
}

.info-card{

    display:flex;

    align-items:center;

    gap:18px;

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:20px;

    transition:.35s;
}

.info-card:hover{

    transform:translateY(-6px);

    border-color:#4F7CFF;

    box-shadow:0 15px 35px rgba(79,124,255,.15);
}

.info-card i{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#18233A;

    border-radius:50%;

    color:#4F7CFF;

    font-size:1.3rem;
}

.info-card h4{

    color:#fff;

    font-size:1.3rem;

    margin-bottom:4px;
}

.info-card span{

    color:#9AA4B2;

    font-size:.9rem;
}

/*====================================
            BUTTONS
====================================*/

.about-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.btn-primary{

    background:#4F7CFF;

    color:#fff;

    padding:15px 30px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

.btn-primary:hover{

    background:#628DFF;

    transform:translateY(-3px);
}

.btn-secondary{

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    text-decoration:none;

    padding:15px 30px;

    border-radius:12px;

    transition:.35s;
}

.btn-secondary:hover{

    background:#101827;
}

/*====================================
            TABLET
====================================*/

@media(max-width:992px){

.about-container{

grid-template-columns:1fr;

}

.about-image{

max-width:420px;

margin:auto;

}

.about-content{

text-align:center;

}

.about-buttons{

justify-content:center;

}

}

/*====================================
            MOBILE
====================================*/

@media(max-width:768px){

.about{

padding:80px 18px;

}

.about-content h2{

font-size:2rem;

}

.about-info{

grid-template-columns:1fr;

}

.experience-card{

right:10px;

bottom:15px;

padding:18px 22px;

}

}

/*====================================
            SMALL MOBILE
====================================*/

@media(max-width:480px){

.about-content h2{

font-size:1.7rem;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.experience-card{

position:static;

margin-top:20px;

}

}

/*====================================
            Skills Section
====================================*/

.skills{
    background:#070B14;
    padding:110px 20px;
}

.skills-container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    color:#5C8DFF;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-header h2{
    color:#fff;
    font-size:2.7rem;
    margin-bottom:18px;
}

.section-header p{
    color:#98A5B8;
    line-height:1.8;
}

/*==============================*/

.skills-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

/*==============================*/

.skill-card{

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:35px 30px;

    transition:.35s;
}

.skill-card:hover{

    transform:translateY(-8px);

    border-color:#4F7CFF;

    box-shadow:0 18px 45px rgba(79,124,255,.15);
}

/*==============================*/

.skill-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#18233A;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;
}

.skill-icon i{

    font-size:2.2rem;

    color:#4F7CFF;
}

/*==============================*/

.skill-card h3{

    color:#fff;

    margin-bottom:10px;

    font-size:1.4rem;
}

.skill-level{

    display:inline-block;

    color:#8FA8FF;

    background:rgba(79,124,255,.12);

    border:1px solid rgba(79,124,255,.2);

    padding:6px 14px;

    border-radius:50px;

    font-size:.8rem;

    margin-bottom:25px;
}

/*==============================*/

.progress{

    height:10px;

    background:#1A2438;

    border-radius:20px;

    overflow:hidden;
}

.progress-bar{

    height:100%;

    background:linear-gradient(90deg,#4F7CFF,#7B5DFF);

    border-radius:20px;

    position:relative;
}

.progress-bar span{

    position:absolute;

    right:8px;

    top:-28px;

    color:#fff;

    font-size:.8rem;

    font-weight:600;
}

/*==============================
        Tablet
==============================*/

@media(max-width:992px){

.skills-grid{

grid-template-columns:repeat(2,1fr);

}

.section-header h2{

font-size:2.2rem;

}

}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.skills{

padding:80px 18px;

}

.skills-grid{

grid-template-columns:1fr;

gap:22px;

}

.section-header{

margin-bottom:45px;

}

.section-header h2{

font-size:2rem;

}

.skill-card{

padding:28px;

}

}

/*==============================
        Small Mobile
==============================*/

@media(max-width:480px){

.section-header h2{

font-size:1.7rem;

}

.skill-icon{

width:65px;
height:65px;

}

.skill-icon i{

font-size:1.9rem;

}

.skill-card h3{

font-size:1.2rem;

}

}

/*====================================
            SERVICES
====================================*/

.services{

    background:#070B14;

    padding:110px 20px;

}

.services-container{

    max-width:1250px;

    margin:auto;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=============================*/

.service-card{

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#4F7CFF,#8B5CF6);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#4F7CFF;

    box-shadow:0 20px 50px rgba(79,124,255,.15);

}

/*=============================*/

.service-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#18233A;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    color:#4F7CFF;

    font-size:2rem;

}

/*=============================*/

.service-card h3{

    color:#fff;

    font-size:1.5rem;

    margin-bottom:15px;

}

.service-card p{

    color:#98A5B8;

    line-height:1.8;

    margin-bottom:25px;

}

/*=============================*/

.service-card ul{

    list-style:none;

    margin-bottom:30px;

}

.service-card ul li{

    color:#C8D2E2;

    margin-bottom:12px;

    display:flex;

    align-items:center;

    gap:12px;

}

.service-card ul i{

    color:#4F7CFF;

}

/*=============================*/

.service-card a{

    color:#4F7CFF;

    text-decoration:none;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.service-card:hover a{

    gap:16px;

}

/*=============================
        Tablet
=============================*/

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=============================
        Mobile
=============================*/

@media(max-width:768px){

.services{

padding:80px 18px;

}

.services-grid{

grid-template-columns:1fr;

gap:24px;

}

.service-card{

padding:28px;

}

}

/*=============================
        Small Mobile
=============================*/

@media(max-width:480px){

.service-icon{

width:65px;

height:65px;

}

.service-icon i{

font-size:1.7rem;

}

.service-card h3{

font-size:1.3rem;

}

}


/*====================================
            TESTIMONIALS
====================================*/

.testimonials{

    background:#070B14;

    padding:110px 20px;

}

.testimonials-container{

    max-width:1200px;

    margin:auto;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==============================*/

.testimonial-card{

    position:relative;

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#4F7CFF;

    box-shadow:0 20px 50px rgba(79,124,255,.15);

}

/*==============================*/

.quote-icon{

    width:58px;

    height:58px;

    border-radius:16px;

    background:#18233A;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.quote-icon i{

    color:#4F7CFF;

    font-size:1.4rem;

}

/*==============================*/

.stars{

    display:flex;

    gap:5px;

    margin-bottom:20px;

}

.stars i{

    color:#FFD54A;

}

/*==============================*/

.testimonial-text{

    color:#9AA4B2;

    line-height:1.9;

    margin-bottom:30px;

}

/*==============================*/

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #4F7CFF;

}

.client h4{

    color:#fff;

    font-size:1.05rem;

    margin-bottom:5px;

}

.client span{

    color:#8F9BB0;

    font-size:.9rem;

}

/*==============================
        Tablet
==============================*/

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.testimonials{

padding:80px 18px;

}

.testimonial-grid{

grid-template-columns:1fr;

gap:24px;

}

.testimonial-card{

padding:28px;

}

}

/*==============================
      Small Mobile
==============================*/

@media(max-width:480px){

.client img{

width:52px;

height:52px;

}

.client h4{

font-size:1rem;

}

.quote-icon{

width:52px;

height:52px;

}

}

/*====================================
            Statistics
====================================*/

.stats{

    background:#070B14;

    padding:110px 20px;

}

.stats-container{

    max-width:1200px;

    margin:auto;

}

/*==============================*/

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==============================*/

.stat-card{

    position:relative;

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    overflow:hidden;

}

.stat-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(79,124,255,.08),
        transparent 70%
    );

    opacity:0;

    transition:.35s;

}

.stat-card:hover::before{

    opacity:1;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#4F7CFF;

    box-shadow:0 20px 45px rgba(79,124,255,.15);

}

/*==============================*/

.stat-icon{

    width:72px;

    height:72px;

    margin:0 auto 25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#18233A;

}

.stat-icon i{

    color:#4F7CFF;

    font-size:1.9rem;

}

/*==============================*/

.stat-card h3{

    color:#fff;

    font-size:3rem;

    font-weight:700;

    margin-bottom:12px;

}

.stat-card p{

    color:#9AA4B2;

    font-size:1rem;

    line-height:1.7;

}

/*==============================
        Tablet
==============================*/

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.stats{

padding:80px 18px;

}

.stats-grid{

grid-template-columns:1fr;

gap:22px;

}

.stat-card{

padding:35px 25px;

}

.stat-card h3{

font-size:2.5rem;

}

}

/*==============================
      Small Mobile
==============================*/

@media(max-width:480px){

.stat-icon{

width:60px;

height:60px;

}

.stat-icon i{

font-size:1.5rem;

}

.stat-card h3{

font-size:2.2rem;

}

.stat-card p{

font-size:.95rem;

}

}

/*====================================
                FOOTER
====================================*/

.footer{

    background:#050911;

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:80px;

}

/*=============================*/

.footer-container{

    max-width:1200px;

    margin:auto;

    padding:0 20px 60px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

/*=============================*/

.footer-logo{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#fff;

    font-size:1.7rem;

    font-weight:700;

    margin-bottom:22px;

}

.footer-logo span{

    color:#4F7CFF;

}

.footer-brand p{

    color:#98A5B8;

    line-height:1.9;

    margin-bottom:30px;

    max-width:340px;

}

/*=============================*/

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#101827;

    color:#fff;

    text-decoration:none;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.social-links a:hover{

    background:#4F7CFF;

    transform:translateY(-5px);

}

/*=============================*/

.footer-column h3{

    color:#fff;

    font-size:1.15rem;

    margin-bottom:25px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:16px;

}

.footer-column ul li a{

    color:#98A5B8;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#4F7CFF;

    padding-left:6px;

}

/*=============================*/

.contact-info li{

    color:#98A5B8;

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.contact-info i{

    color:#4F7CFF;

    margin-top:3px;

}

/*=============================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding:25px 20px;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:#8D99AE;

}

/*=============================*/

.back-top{

    width:48px;

    height:48px;

    border-radius:14px;

    background:#101827;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.back-top:hover{

    background:#4F7CFF;

    transform:translateY(-5px);

}

/*==============================
        Tablet
==============================*/

@media(max-width:992px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.footer{

padding-top:60px;

}

.footer-container{

grid-template-columns:1fr;

gap:40px;

text-align:center;

}

.footer-brand p{

margin:auto auto 30px;

}

.social-links{

justify-content:center;

}

.contact-info li{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

gap:20px;

}

}

/*==============================
      Small Mobile
==============================*/

@media(max-width:480px){

.footer-logo{

justify-content:center;

font-size:1.5rem;

}

.social-links a{

width:42px;

height:42px;

}

.back-top{

width:44px;

height:44px;

}

}

/*====================================
            CONTACT
====================================*/

.contact{

    background:#070B14;

    padding:110px 20px;

}

.contact-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/*=============================*/

.contact-info h2{

    color:#fff;

    font-size:2.7rem;

    margin:18px 0;

    line-height:1.3;

}

.contact-info p{

    color:#9AA4B2;

    line-height:1.9;

    margin-bottom:40px;

}

/*=============================*/

.contact-cards{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    padding:20px;

    border-radius:18px;

    transition:.35s;

}

.contact-card:hover{

    transform:translateX(8px);

    border-color:#4F7CFF;

    box-shadow:0 15px 35px rgba(79,124,255,.15);

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#18233A;

    display:flex;

    justify-content:center;

    align-items:center;

}

.contact-icon i{

    color:#4F7CFF;

    font-size:1.4rem;

}

.contact-card h4{

    color:#fff;

    margin-bottom:5px;

}

.contact-card span{

    color:#98A5B8;

}

/*=============================*/

.contact-social{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.contact-social a{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.contact-social a:hover{

    background:#4F7CFF;

    transform:translateY(-5px);

}

/*=============================*/

.contact-form{

    background:#101827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px;

}

.input-group{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    background:#18233A;

    border:1px solid rgba(255,255,255,.05);

    border-radius:14px;

    padding:16px 18px;

    color:#fff;

    font-size:1rem;

    outline:none;

    margin-bottom:18px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#4F7CFF;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    background:#4F7CFF;

    color:#fff;

    border:none;

    padding:16px 28px;

    border-radius:14px;

    cursor:pointer;

    font-size:1rem;

    font-weight:600;

    transition:.35s;

    display:inline-flex;

    align-items:center;

    gap:10px;

}

.contact-form button:hover{

    background:#648FFF;

    transform:translateY(-3px);

}

/*==============================
        Tablet
==============================*/

@media(max-width:992px){

.contact-container{

grid-template-columns:1fr;

}

}

/*==============================
        Mobile
==============================*/

@media(max-width:768px){

.contact{

padding:80px 18px;

}

.contact-info{

text-align:center;

}

.contact-info h2{

font-size:2rem;

}

.contact-social{

justify-content:center;

}

.input-group{

grid-template-columns:1fr;

}

.contact-form{

padding:28px;

}

.contact-card{

text-align:left;

}

}

/*==============================
      Small Mobile
==============================*/

@media(max-width:480px){

.contact-info h2{

font-size:1.7rem;

}

.contact-card{

padding:16px;

}

.contact-icon{

width:52px;

height:52px;

}

.contact-icon i{

font-size:1.2rem;

}

.contact-social a{

width:42px;

height:42px;

}

.contact-form button{

width:100%;

justify-content:center;

}

}


/*=============================
        Projects Page
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Inter,sans-serif;

    background:#070B14;

    color:#fff;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/*=============================*/

.projects-page{

    padding:110px 0;

}

/*=============================*/

.project-card.hide{
    display:none;
}

/*=============================*/

.page-title{

    text-align:center;

    max-width:720px;

    margin:auto;

}

.page-title span{

    color:#4F7CFF;

    font-weight:700;

    letter-spacing:2px;

    font-size:.85rem;

}

.page-title h1{

    margin:18px 0;

    font-size:3rem;

}

.page-title p{

    color:#99A6B8;

    line-height:1.8;

}

/*=============================*/

.project-filter{

    margin:60px 0;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.project-filter button{

    border:none;

    background:#101827;

    color:#B9C5D8;

    padding:12px 24px;

    border-radius:50px;

    cursor:pointer;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.project-filter button:hover,
.project-filter .active{

    background:#4F7CFF;

    color:#fff;

}

/*=============================*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=============================*/

.project-card{

    background:#101827;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:#4F7CFF;

    box-shadow:0 20px 45px rgba(79,124,255,.15);

}

/*=============================*/

.project-image{

    position:relative;

}

.project-image img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.4s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#4F7CFF;

    padding:8px 16px;

    border-radius:50px;

    font-size:.75rem;

}

/*=============================*/

.project-content{

    padding:28px;

}

.project-content h3{

    margin-bottom:15px;

    font-size:1.5rem;

}

.project-content p{

    color:#9AA4B2;

    line-height:1.8;

    margin-bottom:25px;

}

/*=============================*/

.tech-stack{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.tech-stack span{

    background:#18233A;

    padding:8px 14px;

    border-radius:50px;

    font-size:.8rem;

}

/*=============================*/

.project-info{

    display:flex;

    justify-content:space-between;

    color:#8F9CB2;

    font-size:.9rem;

    margin-bottom:25px;

}

.project-info i{

    color:#4F7CFF;

}

/*=============================*/

.project-buttons{

    display:flex;

    gap:15px;

}

.project-buttons a{

    flex:1;

    text-align:center;

    text-decoration:none;

    padding:13px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}

.project-buttons a:first-child{

    background:#4F7CFF;

    color:#fff;

}

.project-buttons a:last-child{

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

}

.project-buttons a:hover{

    transform:translateY(-3px);

}

/*=============================
        Tablet
==============================*/

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=============================
        Mobile
==============================*/

@media(max-width:768px){

.projects-page{

padding:80px 0;

}

.page-title h1{

font-size:2.2rem;

}

.projects-grid{

grid-template-columns:1fr;

}

.project-buttons{

flex-direction:column;

}

.project-info{

flex-direction:column;

gap:10px;

}

}

/*=============================
      Small Mobile
==============================*/

@media(max-width:480px){

.page-title h1{

font-size:1.8rem;

}

.project-filter{

gap:10px;

}

.project-filter button{

padding:10px 18px;

font-size:.85rem;

}

}


/*==============================
        Page Transition
==============================*/

body{

    opacity:0;

    transform:translateY(20px);

    transition:
    opacity .45s ease,
    transform .45s ease;

}

body.page-loaded{

    opacity:1;

    transform:translateY(0);

}

body.page-leaving{

    opacity:0;

    transform:translateY(-20px);

    pointer-events:none;

}



/*==================================================
                FRONTEND PAGE
==================================================*/

.hero{
    padding:160px 20px 100px;
    background:#070B14;
}

.hero-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 420px;
    gap:70px;
    align-items:center;
}

.tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(79,124,255,.15);
    border:1px solid rgba(79,124,255,.3);
    color:#4F7CFF;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:3.4rem;
    color:#fff;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    color:#9BA7BB;
    font-size:1.05rem;
    line-height:1.9;
    max-width:580px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:15px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;

}

.btn-primary{

    background:#4F7CFF;
    color:#fff;

}

.btn-primary:hover{

    background:#648FFF;
    transform:translateY(-4px);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.08);
    color:#fff;

}

.btn-secondary:hover{

    background:#101827;
    transform:translateY(-4px);

}

.hero-image{

    height:420px;
    background:#101827;
    border-radius:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.hero-image i{

    font-size:9rem;
    color:#4F7CFF;

}

/*==============================*/

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#4F7CFF;
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:700;

}

.section-title h2{

    color:#fff;
    font-size:2.6rem;
    margin-top:15px;

}

/*==============================*/

.services-list{

    padding:100px 20px;
    background:#0B111D;

}

.cards{

    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

}

.card{

    background:#101827;
    border:1px solid rgba(255,255,255,.05);
    border-radius:24px;
    padding:35px;
    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);
    border-color:#4F7CFF;
    box-shadow:0 20px 40px rgba(79,124,255,.12);

}

.card i{

    font-size:2.3rem;
    color:#4F7CFF;
    margin-bottom:20px;

}

.card h3{

    color:#fff;
    margin-bottom:18px;

}

.card p{

    color:#9AA5B8;
    line-height:1.8;

}

/*==============================*/

.technology{

    padding:100px 20px;
    background:#070B14;

}

.tech-grid{

    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.tech-box{

    background:#101827;
    border-radius:22px;
    padding:40px;
    text-align:center;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;

}

.tech-box:hover{

    transform:translateY(-8px);
    border-color:#4F7CFF;

}

.tech-box i{

    font-size:3.2rem;
    color:#4F7CFF;
    margin-bottom:20px;

}

.tech-box h3{

    color:#fff;

}



/*====================================
        DEVELOPMENT PROCESS
====================================*/

.process{

    padding:100px 20px;

    background:#0B111D;

}

.process-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.step{

    background:#101827;

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    padding:35px;

    position:relative;

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

    border-color:#4F7CFF;

    box-shadow:0 20px 40px rgba(79,124,255,.15);

}

.step span{

    display:inline-flex;

    width:55px;

    height:55px;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#4F7CFF;

    color:#fff;

    font-weight:700;

    font-size:1.1rem;

    margin-bottom:20px;

}

.step h3{

    color:#fff;

    margin-bottom:15px;

    font-size:1.3rem;

}

.step p{

    color:#9AA5B8;

    line-height:1.8;

}

/*====================================
                CTA
====================================*/

.cta{

    padding:110px 20px;

    background:linear-gradient(135deg,#4F7CFF,#2563EB);

    text-align:center;

}

.cta h2{

    color:#fff;

    font-size:2.8rem;

    margin-bottom:20px;

}

.cta p{

    color:rgba(255,255,255,.85);

    max-width:650px;

    margin:0 auto 40px;

    line-height:1.8;

}

.cta a{

    display:inline-block;

    padding:16px 34px;

    background:#fff;

    color:#2563EB;

    text-decoration:none;

    font-weight:700;

    border-radius:14px;

    transition:.35s;

}

.cta a:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

/*====================================
              FOOTER
====================================*/

.footer{

    background:#070B14;

    padding:35px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer p{

    color:#8E9AB0;

    font-size:.95rem;

}

/*====================================
        RESPONSIVE
====================================*/

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto auto 40px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

max-width:450px;

margin:auto;

}

.cards{

grid-template-columns:repeat(2,1fr);

}

.tech-grid{

grid-template-columns:repeat(2,1fr);

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.hero{

padding:130px 20px 80px;

}

.hero h1{

font-size:2.4rem;

}

.section-title h2{

font-size:2rem;

}

.cards{

grid-template-columns:1fr;

}

.tech-grid{

grid-template-columns:1fr;

}

.process-grid{

grid-template-columns:1fr;

}

.hero-image{

height:300px;

}

.hero-image i{

font-size:6rem;

}

.cta h2{

font-size:2rem;

}

}

@media(max-width:480px){

.hero h1{

font-size:1.9rem;

}

.hero p{

font-size:.95rem;

}

.btn-primary,
.btn-secondary{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.card,
.step,
.tech-box{

padding:28px;

}

.cta{

padding:80px 20px;

}

.cta h2{

font-size:1.7rem;

}

}



/* ===========================
   HAMBURGER
=========================== */

#menu{

    display:none;
}

.hamburger{

    display:none;

    color:#fff;

    font-size:1.4rem;

    cursor:pointer;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

    .navbar{

        padding:16px 20px;
    }

    .hamburger{

        display:block;
    }

    .nav-links{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#0C1322;

        border-top:1px solid rgba(255,255,255,.06);

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:24px;

        overflow:hidden;

        max-height:0;

        transition:.45s ease;

        padding:0;
    }

    .nav-links li{

        width:100%;

        text-align:center;
    }

    .nav-links a{

        display:block;

        width:100%;

        padding:16px;
    }

    .hire-btn{

        width:85%;

        margin:12px auto 22px;
    }

    #menu:checked~.nav-links{

        max-height:600px;

        padding:20px 0;
    }

}

/* ===========================
   SMALL PHONES
=========================== */

@media(max-width:480px){

    .logo{

        font-size:1.2rem;
    }

    .logo span{

        font-size:1.1rem;
    }

}