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

body{
    background:linear-gradient(to bottom,#fdfdfd,#fff5e6);
    color:#222;
    overflow-x:hidden;
}

/* HEADER */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 6%;
    background:linear-gradient(90deg,#ff6b00,#ffb300);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo img{
    height:90px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#081b33;
    font-weight:600;
    transition:0.3s;
}

nav ul li a:hover{
    color:white;
}

.call-btn{
    background:#081b33;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.call-btn:hover{
    background:#ff6b00;
    transform:translateY(-3px);
}

/* HERO */

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 6%;
    gap:40px;
    background:linear-gradient(135deg,#fff5e6,#ffffff);
    border-radius:20px;
}

.hero-left{
    flex:1;
}

.hero-left h4{
    color:#0099cc;
    font-size:24px;
    margin-bottom:10px;
}

.hero-left h1{
    font-size:70px;
    line-height:1.1;
    font-weight:800;
}

.hero-left span{
    color:#ff3b30;
}

.hero-left p{
    margin-top:20px;
    font-size:18px;
    line-height:1.7;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.btn1,
.btn2{
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn1{
    background:#0099cc;
    color:white;
}

.btn1:hover{
    background:#081b33;
    transform:translateY(-3px);
}

.btn2{
    border:2px solid #0099cc;
    color:#0099cc;
}

.btn2:hover{
    background:#0099cc;
    color:white;
}

.hero-right{
    flex:1;
}

.hero-right img{
    width:100%;
    max-height:450px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* SERVICES */

.services{
    padding:80px 6%;
    text-align:center;
}

.services h5{
    color:#ff6b00;
    font-size:18px;
}

.services h2{
    font-size:42px;
    margin:15px 0 40px;
    color:#081b33;
}

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

.card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:5px solid #ff6b00;
    cursor:pointer;
    transition:0.4s ease;
}

.card:hover{
    transform:translateY(-10px);
    background:#ff6b00;
    color:white;
}

.card:hover i{
    color:white;
}

.card i{
    font-size:45px;
    color:#ff6b00;
    margin-bottom:15px;
}

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

/* STATS */

.stats-section{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    padding:60px 20px;
    background:#f8f9fa;
}

.stat-card{
    background:#fff;
    width:220px;
    padding:25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

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

.stat-card h2{
    color:#ff7b00;
    font-size:36px;
    margin-bottom:10px;
}

.stat-card p{
    color:#555;
    font-size:16px;
}

/* ABOUT */

.about{
    display:flex;
    align-items:center;
    gap:50px;
    padding:80px 6%;
}

.about-img{
    flex:1;
}

.about-img img{
    width:100%;
    border-radius:20px;
}

.about-content{
    flex:1;
}

.about-content h5{
    color:#0099cc;
}

.about-content h2{
    font-size:40px;
    margin:15px 0;
}

.about-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.about-content ul li{
    margin-bottom:10px;
}

/* GALLERY */

.gallery{
    padding:80px 8%;
    text-align:center;
}

.gallery h5{
    color:#ff3c00;
    margin-bottom:10px;
}

.gallery h2{
    margin-bottom:40px;
}

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

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    transition:0.4s ease;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.08);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

/* CONTACT */

.contact{
    padding:80px 6%;
}

.contact-form{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.contact-form h2{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

textarea{
    height:120px;
    resize:none;
}

.contact-form button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#ff6b00;
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#081b33;
}

/* FOOTER */

footer{
    background:#081b33;
    color:white;
    display:flex;
    justify-content:center;
    gap:50px;
    padding:30px 20px;
    flex-wrap:wrap;
    font-size:17px;
}

footer div{
    display:flex;
    align-items:center;
    gap:10px;
}

footer i{
    color:#ff6b00;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:30px;
    color:white;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

/* IMAGE POPUP */

.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup img{
    width:80%;
    max-width:800px;
    border-radius:15px;
}

/* MOBILE */

@media(max-width:768px){

    .header{
        flex-direction:column;
        padding:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
        margin-top:10px;
    }

    .call-btn{
        margin-top:15px;
    }

    .hero{
        flex-direction:column;
        padding:40px 5%;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-right img{
        max-height:300px;
    }

    .about{
        flex-direction:column;
    }

    footer{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}
.loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    transition:0.5s;
}

.spinner{
    width:60px;
    height:60px;
    border:6px solid #eee;
    border-top:6px solid #ff6b00;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}
.card{
    opacity:0;
    transform:translateY(40px);
}

.card.show{
    opacity:1;
    transform:translateY(0);
    transition:0.6s ease;
}
.hero-left{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero-right img{
    animation: float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}

.gallery-grid img{
    opacity:0;
    transform:translateY(40px);
}

.gallery-grid img.show{
    opacity:1;
    transform:translateY(0);
    transition:0.6s ease;
}