html{
    scroll-behavior:smooth;
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;

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

    text-align: center;
    color: white;
    padding: 20px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero button {
    background: #ffc107;
    color: black;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
}
header img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

header img {
    width: 80px;
    height: auto;
}


nav a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#ffc107;
}
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#0b5ed7;
    display:flex;
    align-items:center;
    padding:0 30px;
    z-index:1000;
}
.logo{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img{
    width: 70px;
    height: 70px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.logo h1{
    color:white;
    font-size:18px;
}


nav{
    display:flex;
    margin-left:40px;
    gap:20px;
}

nav a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover{
    color: #ffd43b;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img{
    width:60px;
    height:60px;
    background:#fff;
    padding:6px;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.logo h1 {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #ffc107;
}
.call-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.call-btn:hover {
    background: #1ea952;
    color: white;
}

body{
    padding-top:80px;
}
.about{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.about h2{
    font-size:40px;
    color:#0b5ed7;
    margin-bottom:25px;
}

.about p{
    max-width:900px;
    margin:0 auto 20px;
    font-size:18px;
    line-height:1.8;
    color:#555;
}
.services{
    padding:80px 10%;
    background:#f5f7fa;
    text-align:center;
}

.services h2{
    font-size:40px;
    color:#0b5ed7;
    margin-bottom:50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#ffffff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

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

.card h3{
    color:#0b5ed7;
    margin-bottom:15px;
    font-size:24px;
}

.card p{
    color:#555;
    line-height:1.7;
    font-size:17px;
}
.projects{
    padding:80px 10%;
    background:#ffffff;
    text-align:center;
}

.projects h2{
    font-size:40px;
    color:#0b5ed7;
    margin-bottom:50px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.project-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

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

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.project-card h3{
    color:#0b5ed7;
    margin:20px 0 10px;
}

.project-card p{
    padding:0 20px 25px;
    color:#555;
}
.brands{
    padding:80px 10%;
    background:#f5f7fa;
    text-align:center;
}

.brands h2{
    font-size:40px;
    color:#0b5ed7;
    margin-bottom:50px;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.brand-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

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

.brand-card img{
    width:140px;
    height:70px;
    object-fit:contain;
    margin-bottom:20px;
}

.brand-card h3{
    color:#0b5ed7;
}
.contact{
    background:#0b5ed7;
    color:#fff;
    text-align:center;
    padding:80px 10%;
}

.contact h2{
    font-size:40px;
    margin-bottom:25px;
}

.contact p{
    margin-bottom:15px;
    font-size:18px;
}

.contact form{
    max-width:600px;
    margin:40px auto 0;
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.contact textarea{
    height:130px;
    resize:none;
}

.contact button{
    background:#ffc107;
    color:#000;
    border:none;
    padding:15px 35px;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.contact button:hover{
    background:#ffb300;
}
.footer{
    background:#052c65;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

.footer h3{
    margin-bottom:10px;
}

.footer p{
    margin:8px 0;
}
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}
.whatsapp img{
    width:32px;
    height:32px;
}

.whatsapp:hover{
    transform:scale(1.1);
}
@media(max-width:768px){

header{
    flex-direction:column;
    height:auto;
    padding:20px;
}

.logo{
    flex-direction:column;
    text-align:center;
}

.logo h1{
    font-size:22px;
}

nav{
    display:flex;
    margin-left:40px;
    gap:20px;
}

.hero h2{
    font-size:32px;
}

.about h2,
.services h2,
.projects h2,
.brands h2,
.contact h2{
    font-size:30px;
}

.service-grid,
.project-grid,
.brand-grid{
    grid-template-columns:1fr;
}

body{
    padding-top:170px;
}

}
.gallery {
    padding:60px 20px;
    text-align:center;
}

.gallery h2,
.reviews h2 {
    font-size:35px;
    margin-bottom:10px;
}

.gallery-box {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.gallery-box img {
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}


.reviews {
    padding:60px 20px;
    background:#f5f5f5;
    text-align:center;
}

.review-box {
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.review-card {
    background:white;
    padding:25px;
    width:280px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}
.quote-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.quote-btn:hover{
    background:#128C7E;
    transform:translateY(-3px);
}
.call-btn{
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.call-btn:hover{
    transform: scale(1.1);
}
.counter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    padding:70px 20px;
    background:#0b3d2e;
    color:white;
    text-align:center;
}

.counter-box{
    min-width:220px;
}

.counter-box h2{
    font-size:48px;
    color:#FFD700;
    margin-bottom:10px;
}

.counter-box p{
    font-size:20px;
}
.location{
    padding:60px 20px;
    text-align:center;
    background:#f8f9fa;
}

.location h2{
    margin-bottom:15px;
}

.location p{
    margin-bottom:20px;
    font-size:18px;
}

.location iframe{
    max-width:1000px;
    width:100%;
    border-radius:10px;
}
#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    z-index:99999;
}

#loader img{
    width:120px;
    animation:spin 2s linear infinite;
}

#loader h2{
    margin-top:20px;
    color:#0b7a35;
    font-size:28px;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.header-call{
    background:#28a745;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:6px;
    font-weight:bold;
    transition:0.3s;
}

.header-call:hover{
    background:#218838;
}