/* ========================= */
/* 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);
}

.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;
    font-size:14px;
    letter-spacing:2px;
}

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



/* HERO */

.contact-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.75),rgba(0,0,0,0.75)),
    url('./hero-bg.avif');

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

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

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

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

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



/* CONTACT SECTION */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    transition:0.4s;
}

.info-box:hover{
    transform:translateY(-8px);
    border-color:#00bfff;
}

.info-icon{
    font-size:28px;
}

.info-box h3{
    margin-bottom:8px;
}

.info-box p{
    color:#cbd5e1;
}



/* FORM */

.contact-form{
    background:#1a2335;
    padding:50px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,0.12);
}

.input-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#2d3746;
    border:none;
    outline:none;
    padding:18px;
    border-radius:14px;
    color:white;
    font-size:15px;
}

.contact-form textarea{
    height:180px;
    resize:none;
    margin-bottom:20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9dabbe;
}

.contact-form button{
    background:#00bfff;
    color:white;
    border:none;
    padding:16px 35px;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
    transition:0.4s;
}

.contact-form button:hover{
    transform:translateY(-4px);
}



/* WHY US */

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

.why-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;
    transition:0.4s;
}

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

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

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

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



/* CTA */

.cta-box{
    background:
    linear-gradient(135deg,#00bfff,#2563eb);

    padding:70px 40px;
    border-radius:30px;
    text-align:center;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-block;
    padding:16px 35px;
    background:white;
    color:#111827;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:0.4s;
}

.cta-btn:hover{
    transform:translateY(-4px);
}





/* ========================= */
/* 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){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

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

}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

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

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

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

    .input-row{
        grid-template-columns:1fr;
    }

    .cta-box h2{
        font-size:30px;
    }

}