body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f4f4f4;
    color:#333;
}

h1{
    background:#111;
    color:white;
    padding:20px;
    text-align:center;
    margin:0;
}

h2{
    color:#d32f2f;
    text-align:center;
}

p{
    text-align:center;
    font-size:18px;
}

.container{
    width:90%;
    margin:auto;
}
#about{
    padding:60px;
    background:#ffffff;
    text-align:center;
}

#about p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:30px;
}

#services{
    padding:60px;
    background:#f4f4f4;
    text-align:center;
}

.service-box{
    display:inline-block;
    width:250px;
    margin:15px;
    padding:20px;
    background:#0d47a1;
    color:white;
    border-radius:10px;
    font-size:20px;
    transition:0.3s;
}
.service-box:hover{
    background:#ff9800;
    transform:scale(1.05);
    cursor:pointer;
}
.hero{
    background:#0d47a1;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero h2{
    font-size:40px;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    margin-bottom:20px;
}

.hero button{
    background:#ff9800;
    color:white;
    border:none;
    padding:15px 30px;
    font-size:18px;
    border-radius:5px;
    cursor:pointer;
}

.hero button:hover{
    background:#e68900;
}
#contact{
    background:#222;
    color:white;
    text-align:center;
    padding:60px 20px;
}

#contact h2{
    color:#ff9800;
    margin-bottom:20px;
}

#contact p{
    font-size:18px;
    line-height:30px;
}
#gallery{
    padding:60px 20px;
    text-align:center;
}

#gallery{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.gallery img{
    width:300px;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.05);
}
nav{
    background:#111;
    padding:15px;
    text-align:center;
    position:sticky;
    top:0;
    z-index:1000;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#ff9800;
}
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
    font-size:16px;
}
.whatsapp{
    position: fixed;
    overflow: hidden;
z-index: 9999;
border: 3px solid white;

    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#services{
    padding:60px 20px;
    text-align:center;
    background:#f8f9fa;
}

#services h2{
    color:#ff9800;
    margin-bottom:30px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    max-width:1100px;
    margin:auto;
}

.service-box{
    background:#0d6efd;
    color:white;
    padding:25px;
    border-radius:10px;
    font-size:20px;
    font-weight:bold;
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);
    background:#ff9800;
}
.hero{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h2{
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p{
    font-size: 22px;
    margin-bottom: 20px;
}

.hero button{
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.hero button:hover{
    background: #e68900;
}
.hero{
    background: url("images/hero-bg.jpeg") no-repeat center center/cover;
}
 
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: #1f2937;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-links{
    display: flex;
    gap: 30px;
}

.nav-links a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.nav-logo{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.services{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 40px;
}

.service-card{
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #9c8181;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.service-card:hover{
    background: #ff9800;
    color: white;
    transform: translateY(-8px);
}
#services{
    padding-top: 80px;
}
#services h2{
    margin-top: 80px;
    margin-bottom: 20px;
}
#contact{
    padding: 60px 20px;
    text-align: center;
    background: #f8f9fa;
}

#contact h2{
    color: #ff6600;
    margin-bottom: 20px;
}
footer{
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

    footer p{
    margin: 5px 0;
}

#contact p{
    font-size: 18px;
    line-height: 1.8;
    color: #222
}
#contact strong{
    color: #ff6600;
}

#contact h3{
    color: #222;
    margin-top: 30px;
    margin-bottom: 15px;
}

footer a{
    color: #ff9800;
    text-decoration: none;
}

footer a:hover{
    color: white;
}

html{
    scroll-behavior: smooth;
}

section{
    scroll-margin-top: 80px;
}

section{
    scroll-margin-top: 80px;
}

iframe{
    width: 100%;
    max-width: 900px;
    height: 350px;
    margin: 20px auto;
    display: block;
    border: 0;
    border-radius: 10px;
}
form{
    max-width: 500px;
    margin: 30px auto;
}

form input,
form textarea{
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

form button{
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

form button:hover{
    background: #e65c00;
}
.call-btn{
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
}

.call-btn:hover{
    background: #0056b3;
}
.hero-buttons{
    margin-top:30px;
}

.btn{
    display:inline-block;
    background:#ff6600;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    border-radius:8px;
    margin:10px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#e65c00;
}

.btn-call{
    background:#007bff;
}

.btn-call:hover{
    background:#0056b3;
}
.quotation{
    padding:60px 20px;
    background:#f8f8f8;
    text-align:center;
}

.quotation h2{
    color:#ff6600;
    margin-bottom:30px;
}

#quotation-form{
    max-width:700px;
    margin:auto;
}

#quotation-form input,
#quotation-form select,
#quotation-form textarea{
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
}

#quotation-form button{
    background:#ff6600;
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

#quotation-form button:hover{
    background:#e65c00;
}
#reviews{
    padding:60px 20px;
    background:#f8f8f8;
    text-align:center;
}

#reviews h2{
    font-size:32px;
    margin-bottom:30px;
    color:#ff6600;
}

.review-card{
    max-width:700px;
    margin:20px auto;
    padding:20px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.review-card h3{
    color:#333;
    margin:10px 0;
}

.review-card p{
    color:#666;
    font-size:16px;
}
.counter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    padding:50px 20px;
    background:#222;
}

.count-box{
    background:#ff6600;
    color:white;
    width:220px;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.count-box h2{
    font-size:40px;
    margin:0;
}

.count-box p{
    margin-top:10px;
    font-size:18px;
}
#portfolio{
    padding:60px 8%;
    text-align:center;
    background:#f8f8f8;
}

.portfolio{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.project-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.project-card h3{
    margin:15px 0 10px;
}

.project-card p{
    padding:0 15px 20px;
}
window.addEventListener("load", function () {
    setTimeout(function () {
        document.getElementById("loader").style.display = "none";
    }, 2000);
});
/* Loading Animation */

#loader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.spinner{
    width:70px;
    height:70px;
    border:8px solid #444;
    border-top:8px solid #ff6600;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

#loader h2{
    color:#fff;
    margin-top:20px;
    font-size:28px;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
.whatsapp-float{
    position: fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:34px;
    line-height:60px;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    z-index:9999;
}
.menu-toggle{
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

@media (max-width:768px){

    .nav-links{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: #003366;
        padding: 20px;
    }

    .nav-links.active{
        display: flex;
    }

    .menu-toggle{
        display: block;
    }
}
#theme-toggle{
    background:#ff9800;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:5px;
    cursor:pointer;
    font-size:18px;
}

body.dark{
    background:#121212;
    color:white;
}

body.dark nav{
    background:#1e1e1e;
}

body.dark section{
    background:#181818;
    color:white;
}