/* Google Font */

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


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


html{
    scroll-behavior:smooth;
}


body{

    background:#f4f7fb;
    color:#333;
    line-height:1.6;

}


a{

    text-decoration:none;

}


/* Container */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;

}



/* Header */

header{

    background:#0d1b2a;
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.2);

}


header .container{

    padding:15px 0;

}



.logo{

    display:flex;
    align-items:center;
    gap:15px;

}


.logo img{

    width:60px;
    height:60px;
    object-fit:contain;

}



.logo h1{

    font-size:30px;

}



nav a{

    color:white;
    margin-left:25px;
    font-weight:500;
    transition:.3s;

}



nav a:hover{

    color:#00b4d8;

}





/* Hero */


.hero{

    height:90vh;

    background:

    linear-gradient(
    rgba(0,0,0,.65),
    rgba(0,0,0,.65)
    ),

    url("../images/hero.png");


    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;
    color:white;

}



.hero-content h2{

    font-size:60px;
    margin-bottom:20px;

}



.hero-content p{

    font-size:24px;
    margin-bottom:35px;

}



.btn{

    display:inline-block;

    background:#00b4d8;
    color:white;

    padding:15px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
    align-items: end;

}



.btn:hover{

    background:#0077b6;
    transform:translateY(-5px);

}






/* Sections */


section{

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

    margin:80px auto;

}



.title{

    text-align:center;

    color:#023e8a;

    font-size:40px;

    margin-bottom:20px;

}



.center{

    text-align:center;

    max-width:850px;

    margin:0 auto 50px;

}






/* Cards */


.features{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}



.card{

    background:white;

    padding:30px;

    border-radius:15px;

    text-align:center;

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

    transition:.4s;

}



.card:hover{

    transform:translateY(-10px);

}



.card img{

    width:100%;

    height:220px;

    object-fit:contain;

    border-radius:10px;

    margin-bottom:20px;

}



.card h3{

    color:#023e8a;

    margin-bottom:15px;

}



.card p{

    color:#666;

}






/* Technology */


.tech-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

}



.tech-list span{

    background:#023e8a;

    color:white;

    padding:15px 30px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}



.tech-list span:hover{

    background:#00b4d8;

    transform:translateY(-5px);

}






/* About content */


.about-content{

    display:flex;

    align-items:center;

    gap:50px;

}



.about-content > div{

    flex:1;

}



.about-content h2{

    color:#023e8a;

    font-size:35px;

    margin-bottom:20px;

}



.about-content li{

    margin:10px 0;

}





.page-image{

    width:100%;

    max-width:550px;

    height:auto;

    object-fit:contain;

    border-radius:15px;

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

}







/* CTA */


.cta{

    background:#023e8a;

    color:white;

    padding:80px 40px;

    text-align:center;

    border-radius:20px;

}



.cta h2{

    font-size:42px;

    margin-bottom:20px;

}



.cta p{

    font-size:20px;

    margin-bottom:30px;

}






/* Footer */


footer{

    background:#0d1b2a;

    color:white;

    text-align:center;

    padding:30px;

}






/* Responsive */


@media(max-width:768px){


.container{

    flex-direction:column;

}


nav{

    margin-top:20px;

}


nav a{

    margin:10px;

    display:inline-block;

}


.hero-content h2{

    font-size:38px;

}


.hero-content p{

    font-size:18px;

}


.about-content{

    flex-direction:column;

}



}
/* Contact Page */


.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}



.contact-image img{

width:100%;

max-width:550px;

height:auto;

border-radius:20px;

object-fit:contain;

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

}



.contact-form{

background:white;

padding:45px;

border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.12);

}



.contact-form h2{

color:#023e8a;

font-size:32px;

margin-bottom:30px;

text-align:center;

}



.contact-form input,
.contact-form textarea{


width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

outline:none;

}



.contact-form input:focus,
.contact-form textarea:focus{

border-color:#00b4d8;

}



.contact-form textarea{

height:160px;

resize:none;

}



.contact-form button{


width:100%;

padding:16px;

border:none;

border-radius:50px;

background:#023e8a;

color:white;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.3s;

}



.contact-form button:hover{

background:#00b4d8;

transform:translateY(-3px);

}




@media(max-width:768px){


.contact-container{

grid-template-columns:1fr;

}


}