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

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

html{
    scroll-behavior: smooth;
}

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

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

a{
    text-decoration: none;
}



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

.navbar{
    position: fixed;
    padding-top: 0px;
    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-color: #ddd; */
    /* color: #444; */
    color: black;
}




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

.sec-one{
    height: 775px;
    width: 100%;

    background-image: url(../img/background/bg2.jpg);
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
}

.secOne-text{
    font-size: 80px;

    font-family: "Climate Crisis", sans-serif;

    color: white;

    text-align: center;

    padding: 0 20px;
}



/* ========================= */
/* SECTION 2 */
/* ========================= */

.sec-two{
    width: 100%;
    min-height: 700px;

    /* background-color: #f4f4f4; */
    background-color: #0e172a;
    padding: 40px 0 80px;
    color: white;
}

.parent-hero{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.s2-hero{
    font-family: "Jua", sans-serif;
    /* color: #00082b; */
    color: white;
    font-size: 60px;
    padding-top: 10px;
    padding-bottom: 50px;
}

.s2-childHero1{
    /* color: #00082b; */
    color: #00bfff;
    font-family: "Google Sans", sans-serif;
    font-size: 25px;
    padding-top: 15px;
}

.s2-childHero2{
    font-family: "Google Sans", sans-serif;
    /* color: #00082b; */
    color: white;
    font-size: 25px;
    padding-top: 10px;
}



/* SERVICE CARDS */

.card-container{
    width: 90%;
    margin: auto;

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

    gap: 30px;
}

.card{
    background: #182238;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 25px;

    padding: 40px 30px;

    transition: 0.4s ease;

    min-height: 380px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover{
    transform: translateY(-10px);

    border: 1px solid #00bfff;

    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon{
    width: 70px;
    height: 70px;

    background: white;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.icon i{
    color: #00bfff;
    font-size: 28px;
}

.card h2{
    font-size: 1.5rem;
    color: white;
    margin-bottom: 18px;
}

.card p{
    font-size: 0.98rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 25px;
}

.card a{
    color: #00bfff;
    font-weight: 600;
}



/* ========================= */
/* SECTION 3 */
/* ========================= */

.sec-three{
    width: 100%;

    min-height: 500px;

    /* background-image: radial-gradient(circle, #2b3e6b ,#191d64); */
    background-color: #0e172a;

    padding: 30px 0 60px;
}

.sec3-text-main{
    width: 100%;

    text-align: center;

    color: white;

    margin-bottom: 40px;
}

.sec3-text1{
    color: #00bfff;

    font-family: "Google Sans", sans-serif;

    font-size: 40px;

    padding-top: 28px;
}

.sec3-text2{
    font-family: "Google Sans", sans-serif;

    font-size: 25px;

    padding-top: 10px;
}

.sec3-card-main{
    width: 100%;

    display: flex;
    justify-content: center;
}

.sec3-card-box{
    width: 90%;

    margin: auto;

    background-color: #1a2335;

    border-radius: 20px;

    border: solid 1px rgba(255, 255, 255, 0.10);

    display:grid;

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

    gap: 20px;

    padding: 40px;

    justify-items:center;
    align-items:center;
}

.sec3-card{
    height: 130px;

    width: 100%;
    max-width: 220px;

    background-color: white;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    transition: 0.4s ease;

    cursor: pointer;
}

.sec3-card img{
    width: 80%;
    height: 80%;
    object-fit: contain;
}


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

    box-shadow: 0 15px 30px rgba(0,0,0,0.2);

}

.more-card{
    font-family: "Google Sans", sans-serif;

    color: #666;

    font-size: 22px;
}



/* ========================= */
/* TESTIMONIAL SECTION */
/* ========================= */

.testimonial-section{
    width: 100%;
    min-height: 95vh;

    padding: 70px 8%;

    background: #0e172a;

    font-family: 'Poppins', sans-serif;
}

.testimonial-heading{
    text-align: center;

    margin-bottom: 60px;
}

.testimonial-heading h1{
    font-size: clamp(2rem, 5vw, 4rem);

    color: white;

    font-weight: 600;
}

.testimonial-heading h2{
    /* font-size: clamp(2rem, 5vw, 4rem); */

    color: #00bfff;
    padding-bottom: 25px;

    /* font-weight: 600; */
}

.testimonial-container{
    display: grid;

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

    gap: 40px;
}

.testimonial-card{
    background: #182238;

    border: 1px solid rgba(255, 255, 255, 0.10);
    
    border-radius: 30px;
    
    padding: 35px;
    
    transition: 0.4s ease;
}

.testimonial-card:hover{
    transform: translateY(-8px);
    
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    
    border: 1px solid #00bfff;    
}

.client-info{
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}

.client-info img{
    width: 70px;
    height: 70px;

    border-radius: 50%;

    object-fit: cover;
}

.client-info h3{
    font-size: 1.3rem;

    color: #00bfff;

    margin-bottom: 5px;
}

.client-info span{
    color: white;

    font-size: 0.95rem;
}

.testimonial-card p{
    color: white;

    line-height: 1.8;

    font-size: 1rem;

    margin-bottom: 25px;
}

.stars{
    color: #fbbf24;

    font-size: 1.2rem;

    letter-spacing: 3px;
}



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