*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8f9fa;
}

/* Navbar */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#0f172a;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    color:white;
    font-size:24px;
    font-weight:600;
    
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #f4a300;
}

.nav-links a.active{
    color: #f4a300;
}

/* Hero */

.hero{
    height:90vh;
    background:linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url("images/project1.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:55px;
}

.hero-content p{
    margin:20px 0;
    font-size:20px;
}

.hero-content .btn{
    display: inline-block;
    margin-top: 30px;
}

.btn{
    background:#f59e0b;
    color:white;
    padding:15px 25px;
    text-decoration:none;
    border-radius:8px;
}

/* Sections */

section{
    padding:50px 10%;
}

h2{
    text-align:center;
    margin-bottom:40px;
}
/* Why Choose Us */

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.why-card{
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    margin-bottom:10px;
    color:#f59e0b;
}

/* Services */

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.service-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

/* Gallery */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:10px;
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* Videos */

.video-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:20px;
}

.video-container video{
    width:100%;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* Areas */

#areas{
    padding: 50px 10%;
    
    padding: 50px 10%;
    height: auto;
    min-height: auto;
}
    
.areas-list{
    list-style: none;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    max-width: 700px;
    margin: 0 auto;

    padding: 0;
}

.areas-list li{
    font-size: 1.1rem;
}

/* Business Card Section */

#business{
    text-align:center;
    padding:80px 10%;
}

#business img{
    width:100%;
    max-width:900px;
    height:600px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* Contact */

#contact{
    
    text-align:center;
    background: #07163a;
    color: white;
    padding: 30px 20px;
   
}

.phone,
.address{
    margin: 15px 0;
}

.phone a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.phone a:hover{
    color: #f59e0b;
}

.whatsapp-btn{
    display: inline-block;
    margin-top: 25px;

    background: #1bd12d;
    color: white;

    padding: 12px 25px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: 600;
}

.whatsapp-btn:hover{
    transform: translateY(-3px);
    transition: 0.3s;
}

footer{
    background:#08101f;
    color:white;
    text-align:center;
    padding:20px;
}

@media (max-width: 768px){

    .navbar{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .areas-list{
        grid-template-columns:repeat(2,1fr);
    }

    #business img{
        height:auto;
    }

}