*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
color:#081120;
text-decoration:none;
font-weight:600;
}

.btn{
background:#f4b400;
color:#081120;
padding:12px 24px;
border-radius:6px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.section{
padding:80px 0;
}

.section h2{
text-align:center;
margin-bottom:40px;
font-size:2.2rem;
}

.dark{
background:#081120;
color:white;
}

.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
color:#081120;
}

.dark .card{
background:white;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin-top:30px;
}

.team-card{
max-width:600px;
margin:auto;
text-align:center;
}

.team-card img{
width:250px;
height:250px;
object-fit:cover;
border-radius:50%;
margin-bottom:20px;
}

.testimonial-box{
max-width:700px;
margin:auto;
text-align:center;
font-size:1.2rem;
}

form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

input,
textarea{
padding:15px;
border:none;
border-radius:8px;
}

textarea{
height:150px;
}

footer{
background:white;
color:#081120;
text-align:center;
padding:40px 0;
}

.footer-logo{
height:80px;
margin-bottom:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:25px;
padding:15px;
border-radius:50%;
text-decoration:none;
}

@media(max-width:768px){

.nav-container{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.mission-grid{
grid-template-columns:1fr;
}

}

.hero{
    background:
        linear-gradient(
            rgba(8,17,32,0.75),
            rgba(8,17,32,0.75)
        ),
        url("../images/hero.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay{
    width: 100%;
    padding: 100px 20px;
}

.company-name{
    color: #F4B400;
    font-size: 2.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1{
    font-size: 1.7rem;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.2;
}

.hero p{
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 40px;
    color: #f5f5f5;
}

@media(max-width:768px){

    .hero h1{
        font-size: 2rem;
    }

    .hero p{
        font-size: 1rem;
    }

    .company-name{
        font-size: 1rem;
        letter-spacing: 4px;
    }

}

.services-section{

    background-image:
    linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url("../images/services.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;
}

.services-section h2{
    color:#F4B400;
    font-size:2.5rem;
    text-align:center;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

}

.service-card{
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.values-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:40px;
}

.value-card{
    background:#000;
    color:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
}

@media (max-width:768px){

    .values-grid{
        grid-template-columns:1fr;
    }

}

.value-card:hover{

    background:#F4B400;

    color:#081120;

    transition:.3s;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;
}

.portfolio-card{

    background:#081120;

    color:#fff;

    padding:30px;

    border-radius:10px;

    text-align:center;

    font-weight:600;
}

.portfolio-card:hover{

    background:#F4B400 !important;

    color:#081120 !important;

    transition:0.3s ease;
}

.section h2{

    font-size:2.5rem;

    margin-bottom:50px;

    text-align:center;

    color:#081120;

    position:relative;
}

.section h2{

    color:#081120;

    font-size:2.5rem;

    text-align:center;

    margin-bottom:50px;

    font-weight:700;
}

.dark h2,
.services-section h2{

    color:#F4B400;
}

#services h2,
#portfolio h2,
#team h2,
#contact h2{

    color:#F4B400 !important;

    text-align:center;

    margin-bottom:40px;

    font-size:2.5rem;

    display:block;
}

.section h2::after{

    content:"";

    display:block;

    width:100px;

    height:4px;

    background:linear-gradient(
        to right,
        #F4B400,
        #FFD700
    );

    margin:15px auto 0;

    border-radius:50px;
}

.dark h2::after,
.services-section h2::after{

    background:#F4B400;
}