/* ========================= */
/* GLOBAL */
/* ========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    padding-top: 65px;
    background:#0f172a;
    color:white;
}

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

a{
    text-decoration: none;
}



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

.navbar{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    display: flex;
    align-items: center;

    padding: 0 2rem;

    height: 65px;

    background-color: white;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

    border-bottom: #00082b solid 1px;
}

.nav-inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT NAV */

.nav-left{
    width: 60%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.company-logo{
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-name{
    font-size: 30px;
    color: #555;
    font-family: "Google Sans", sans-serif;
    font-weight: 500;
}

/* RIGHT NAV */

.nav-right{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.nav-link{
    font-size: 18px;
    color: #666;
    padding: 7px 14px;
    border-radius: 8px;
    font-family: "Google Sans", sans-serif;
    transition: 0.3s;
}

.nav-link:hover{
    /* background: #00082b;
    color: white; */
    /* background-color: #ddd; */
    /* color: #444; */
    color: black;
}




.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:100px 0;
}


/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00bfff;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    margin-top:15px;
}



/* HERO */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url("./hero-bg.avif");

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:850px;
}

.hero span{
    color:#00bfff;
    letter-spacing:3px;
}

.hero h1{
    font-size:70px;
    margin:20px 0;
    line-height:1.2;
}

.hero p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:18px;
}



/* WHAT WE DO */

.about-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.about-left{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:35px;
    border-radius:20px;
    backdrop-filter:blur(10px);
}

.about-left p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:25px;
}

.about-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:35px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    transition:0.4s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card h3{
    margin-bottom:10px;
    color:#00bfff;
}



/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    /* background:#111827; */
    background: #182238;
    border-radius:20px;
    padding:40px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.10);
    text-decoration:none;
    color:white;
    display:block;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#00bfff;
}

.icon{
    font-size:45px;
    margin-bottom:20px;
}

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

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}



/* PROGRESS */

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

.process-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:40px;
    border-radius:20px;
    position:relative;
    transition:0.4s;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#00bfff;
}

.process-number{
    font-size:60px;
    font-weight:700;
    color:rgba(0,191,255,0.15);
    margin-bottom:20px;
}

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

.process-card p{
    color:#cbd5e1;
    line-height:1.8;
}

/* TESTIMONIALS */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:40px;
    border-radius:20px;
    text-align: center;
}

.testimonial-card p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#00bfff;
}




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

.footer{
    width: 100%;

    padding: 40px 80px;

    background: #111;
}

/* SOCIAL SECTION */

.social-grid{
    display: grid;

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

    border: 1px solid #222;
}

.social-box{
    padding: 25px 30px;

    border-right: 1px solid #222;

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    transition: 0.3s;
}

.social-link{
    color: white;
}

.social-box:last-child{
    border-right: none;
}

.social-box:hover{
    background: #333;
}



/* FOOTER LINKS */

.footer-content{
    display: grid;

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

    border-left: 1px solid #222;

    border-right: 1px solid #222;
}

.footer-column{
    padding: 50px 30px;

    border-right: 1px solid #222;
}

.footer-column:last-child{
    border-right: none;
}

.footer-column h4{
    color: #666;

    font-size: 14px;

    margin-bottom: 25px;
}

.footer-column a{
    display: block;

    color: white;

    margin-bottom: 15px;

    font-size: 18px;

    transition: 0.3s;
}

.footer-column a:hover{
    color: #999;
}



/* FOOTER BOTTOM */

.footer-bottom{
    margin-top: 80px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;
}

.brand h1{
    font-size: 60px;

    margin-bottom: 20px;

    color: #f4f4f4;
}

.brand p{
    max-width: 400px;

    color: #999;

    line-height: 1.8;

    font-size: 18px;
}

.subscribe-box{
    display: flex;

    gap: 15px;
}

.subscribe-box input{
    width: 400px;

    padding: 20px;

    background: #fff;

    border: none;

    outline: none;

    font-size: 16px;
}

.subscribe-box button{
    padding: 20px 35px;

    background: transparent;

    border: 1px solid #222;

    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.subscribe-box button:hover{
    background: white;

    color: black;
}



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

@media(max-width:992px){

    .navbar{
        height: auto;
        padding: 15px 20px;
    }

    .nav-inner{
        flex-direction: column;
        gap: 18px;
    }

    .nav-left{
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .logo-name{
        font-size: 24px;
        text-align: center;
    }

    .company-logo{
        height: 38px;
    }

    .nav-right{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-link{
        font-size: 18px;
        padding: 8px 14px;
    }

    body{
        padding-top: 130px;
    }
}



@media(max-width:768px){

    .sec-one{
        height: 600px;
    }

    .secOne-text{
        font-size: 55px;
    }

    .s2-hero{
        font-size: 45px;
    }

    .s2-childHero1,
    .s2-childHero2{
        font-size: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .card-container{
        grid-template-columns: 1fr;
    }

    .testimonial-container{
        grid-template-columns: 1fr;
    }

    .sec3-card-box{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-content{
        grid-template-columns: repeat(2,1fr);
    }

    .social-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }

    .subscribe-box{
        width: 100%;
        flex-direction: column;
    }

    .subscribe-box input{
        width: 100%;
    }

    .brand h1{
        font-size: 45px;
    }
}



@media(max-width:480px){

    .navbar{
        padding: 0 1rem;
    }

    .logo-name{
        font-size: 22px;
    }

    .company-logo{
        height: 35px;
    }

    .nav-link{
        font-size: 16px;
        padding: 6px 10px;
    }

    .sec-one{
        height: 500px;
    }

    .secOne-text{
        font-size: 40px;
        line-height: 1.3;
    }

    .s2-hero{
        font-size: 35px;
    }

    .s2-childHero1,
    .s2-childHero2{
        font-size: 17px;
    }

    .card{
        padding: 30px 22px;
    }

    .testimonial-card{
        padding: 25px;
    }

    .client-info{
        flex-direction: column;
        align-items: flex-start;
    }

    .sec3-card-box{
        grid-template-columns: 1fr;
    }

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

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

    .brand h1{
        font-size: 34px;
    }

    .brand p{
        font-size: 16px;
    }

    .logo-name{
    font-size: 20px;
    }

    .nav-link{
    font-size: 15px;
    padding: 6px 10px;
    }
}

@media(max-width:992px){

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

    .hero h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .section-title h2{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }

}