/* ===========================
   GOOGLE FONT
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.2rem;
    color:#0d3b66;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

/* ===========================
   BUTTONS
=========================== */

.btn{

background:#f4a300;

padding:15px 35px;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 25px rgba(244,163,0,.35);

}

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:10px 0;
    background:white;
    transition:.4s ease;
    z-index:1000;
}

header.scrolled{
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.6rem;
    font-weight:700;
    color:#0d3b66;
}

.logo span{
    color:#f4a300;
}

nav ul{
    display:flex;
    gap:30px;
}

nav a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#f4a300;
}

.menu-btn{
    display:none;
    font-size:1.6rem;
    cursor:pointer;
}

/* ===========================
   HERO
=========================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    background-image:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.30);
}

.hero-content{

    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
    color:#fff;
    

}
.hero-content{

    animation:heroFade 1.5s ease;

}

@keyframes heroFade{

from{

    opacity:0;
    transform:translateY(40px);

}

to{

    opacity:1;
    transform:translateY(0);

}

}


.hero h1{

    font-size:4rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;

}

.hero p{

    font-size:1.2rem;
    max-width:700px;
    margin:0 auto 40px;
    opacity:.95;

}

.hero h1{

font-size:4rem;

font-weight:700;

margin-bottom:20px;

line-height:1.2;

}

.hero p{

font-size:1.2rem;

max-width:700px;

margin:auto;

margin-bottom:35px;

}


.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
.hero-logo{


    width:120px;
border-radius: 15px;

margin-bottom:25px;

animation:float 4s ease-in-out infinite;

}
.hero-logo{
    width:140px;
    margin-bottom:25px;
    filter:drop-shadow(0 5px 12px rgba(0,0,0,.35));
}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/* ===========================
   ABOUT
=========================== */

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    border-radius:10px;
}

.about-text h2{
    color:#0d3b66;
    margin-bottom:20px;
    font-size:2rem;
}

.about-text p{
    margin-bottom:20px;
    color:#555;
}

/* ===========================
   SERVICES
=========================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:2.5rem;
    color:#f4a300;
    margin-bottom:20px;
}

.card h3{
    color:#0d3b66;
    margin-bottom:15px;
}/* ===========================
   WHY CHOOSE US
=========================== */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-card{
    text-align:center;
    padding:30px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:2.5rem;
    color:#f4a300;
    margin-bottom:15px;
}

.why-card h3{
    color:#0d3b66;
    margin-bottom:10px;
}

/* ===========================
   CTA
=========================== */

.cta{
    background:#0d3b66;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.cta h2{
    font-size:2rem;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:30px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111;
    color:#ccc;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    color:#fff;
    margin-bottom:15px;
}

.socials{
    margin:25px 0;
}

.socials a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    margin:0 6px;
    background:#222;
    color:#fff;
    border-radius:50%;
    transition:.3s;
}

.socials a:hover{
    background:#f4a300;
}

.copyright{
    font-size:.9rem;
    color:#888;
}

/* ===========================
   WHATSAPP
=========================== */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ===========================
   GALLERY PAGE
=========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:50px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    background:#fff;
    transition:.4s ease;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery{

    position:relative;
    overflow:hidden;

}

.gallery::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/gallery-bg.png") center/cover;

    opacity:.10;

    z-index:0;

}

.gallery .container{

    position:relative;

    z-index:1;

}

/* ===========================
   CONTACT PAGE
=========================== */

.contact{
    padding:120px 0 80px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info h3{
    color:#0d3b66;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
    font-family:inherit;
}

.contact-form textarea{
    height:160px;
    resize:vertical;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/* ===========================
   SIMPLE ANIMATIONS
=========================== */

.card,
.why-card,
.gallery-grid img,
.btn,
.btn-outline{

    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;

}

.btn{

    background:#f4a300;
    color:#fff;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(244,163,0,.4);

}

.btn-outline{

    border:2px solid #fff;
    color:#fff;

}

.btn-outline:hover{

    background:#fff;
    color:#0d3b66;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .menu-btn{
        display:block;
    }

    nav{
        display:none;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero p{
        font-size:1rem;
    }

    .about .container,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .section{
        padding:60px 0;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn,
    .btn-outline{
        width:220px;
        text-align:center;
        color:#ddd;
    }
}nav.show{
    display:block;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:20px 0;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

nav.show ul{
    flex-direction:column;
    align-items:center;
    gap:20px;
}/* ===========================
   STATISTICS
=========================== */

.stats{
    background:#f5f7fa;
    padding:60px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.stat-box{
    background:#fff;
    padding:35px 20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.stat-box h2{
    font-size:2.8rem;
    color:#f4a300;
}

.stat-box p{
    color:#0d3b66;
    font-weight:500;
}/* ===========================
   SCROLL ANIMATION
=========================== */

.section,
.card,
.why-card,
.stat-box,
.gallery-grid img,
.contact-wrapper{
    animation:fadeUp .8s ease forwards;
}


@keyframes fadeUp{

from{

    opacity:0;
    transform:translateY(30px);

}

to{

    opacity:1;
    transform:translateY(0);

}

}
.about{
    background:#f3f7fb;
}

.services{
    background:#ffffff;
}

.why-us{
    background:#f3f7fb;
}

.stats{
    background:#ffffff;
}

.featured-projects{
    background:#f3f7fb;
}

.contact-cta{
    background:#0d3b66;
    color:#fff;
}