/*==================================================
SMD CONSTRUCTIONS
Premium Responsive Website
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================
RESET
======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

/*======================
CONTAINER
======================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:100px 0;
}

/*======================
SECTION TITLE
======================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f4a100;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    color:#1d2736;
    margin-top:10px;
}

.section-text{
    max-width:750px;
    margin:20px auto 0;
    color:#666;
    text-align:center;
}

/*======================
HEADER
======================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.header-container{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/*======================
LOGO
======================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:70px;
    margin-right:15px;
}

.logo h2{
    font-size:32px;
    color:#1d2736;
    font-weight:700;
}

.logo p{
    color:#f4a100;
    font-size:13px;
    font-weight:600;
}

/*======================
NAVIGATION
======================*/

nav{
    position:relative;
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#1d2736;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#f4a100;
}

/*======================
HAMBURGER
======================*/

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#1d2736;
}

/*======================
MOBILE NAVIGATION
======================*/

@media(max-width:768px){

    header{
        height:70px;
    }

    .header-container{
        height:70px;
    }

    .logo img{
        width:48px;
        margin-right:10px;
    }

    .logo h2{
        font-size:18px;
        line-height:1.2;
    }

    .logo p{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:70px;
        right:0;
        width:260px;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        border-radius:12px;
        box-shadow:0 15px 35px rgba(0,0,0,.15);
        gap:0;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        margin:12px 0;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:10px 0;
    }

}
/*==================================================
HERO SECTION
==================================================*/

.hero{
    position:relative;
    height:100vh;
    background:url("hero.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
    padding-top:90px;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero-subtitle{
    display:inline-block;
    background:#f4a100;
    color:#fff;
    padding:12px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#eee;
    max-width:780px;
    margin:auto;
    margin-bottom:40px;
}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn,
.btn2{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:17px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.btn{

    background:#f4a100;
    color:#fff;
    border:none;

}

.btn:hover{

    background:#d88e00;
    transform:translateY(-4px);

}

.btn2{

    background:transparent;
    border:2px solid #fff;
    color:#fff;

}

.btn2:hover{

    background:#fff;
    color:#111;

}

/*==================================================
ABOUT
==================================================*/

#about{

    background:#fff;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image{

    overflow:hidden;
    border-radius:20px;

}

.about-image img{

    width:100%;
    display:block;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-text h3{

    font-size:34px;
    color:#1d2736;
    margin-bottom:20px;

}

.about-text p{

    color:#666;
    margin-bottom:18px;
    font-size:17px;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.hero h1{

    font-size:56px;

}

.about-grid{

    grid-template-columns:1fr;
    gap:50px;

}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.hero{

    height:auto;
    min-height:100vh;
    padding:120px 20px 80px;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.btn,
.btn2{

    width:240px;

}

.hero-subtitle{

    font-size:13px;
    padding:10px 22px;

}

.about-text{

    text-align:center;

}

}

@media(max-width:480px){

.hero h1{

    font-size:32px;

}

.hero p{

    font-size:16px;

}

.about-text h3{

    font-size:28px;

}

}
/*==================================================
SERVICES
==================================================*/

#services{
    background:#f8f9fb;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{

    background:#ffffff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#f4a100;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.card:hover::before{

    transform:scaleX(1);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.card i{

    font-size:52px;

    color:#f4a100;

    margin-bottom:25px;

}

.card h3{

    color:#1d2736;

    margin-bottom:15px;

    font-size:25px;

}

.card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/*==================================================
WHY CHOOSE US
==================================================*/

#why{

    background:#ffffff;

}

#why .card{

    border-top:5px solid transparent;

}

#why .card:hover{

    border-top-color:#f4a100;

}

/*==================================================
PROJECTS
==================================================*/

#projects{

    background:#f8f9fb;

}

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:25px;

}

.gallery img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.45s;

    cursor:pointer;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.gallery img:hover{

    transform:scale(1.06);

    box-shadow:0 20px 45px rgba(0,0,0,.22);

}

/*==================================================
IMAGE OVERLAY EFFECT
==================================================*/

.gallery div{

    position:relative;

    overflow:hidden;

    border-radius:18px;

}

.gallery div::after{

    content:"View Project";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:22px;

    font-weight:700;

    background:rgba(0,0,0,.55);

    opacity:0;

    transition:.4s;

}

.gallery div:hover::after{

    opacity:1;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.cards{

    grid-template-columns:repeat(2,1fr);

}

.gallery{

    grid-template-columns:repeat(2,1fr);

}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px){

.cards{

    grid-template-columns:1fr;

}

.gallery{

    grid-template-columns:1fr;

}

.card{

    padding:35px 25px;

}

.card h3{

    font-size:22px;

}

.gallery img{

    height:240px;

}

}

@media(max-width:480px){

.gallery img{

    height:220px;

}

.card i{

    font-size:46px;

}

}
/*==================================================
CONTACT
==================================================*/

#contact{
    background:#f8f9fb;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.contact-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-box i{
    width:65px;
    height:65px;
    background:#f4a100;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.contact-box h3{
    margin-bottom:8px;
    color:#1d2736;
}

.contact-box p{
    color:#666;
    line-height:1.8;
}

/*==================================================
FORM
==================================================*/

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    margin-bottom:20px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:16px;
    font-family:'Poppins',sans-serif;

    transition:.3s;
    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#f4a100;
    box-shadow:0 0 10px rgba(244,161,0,.25);

}

.contact-form textarea{

    resize:vertical;
    min-height:170px;

}

/*==================================================
GOOGLE MAP
==================================================*/

#map iframe{

    width:100%;
    height:450px;
    display:block;
    border:none;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#111827;
    color:#fff;
    padding:70px 20px 35px;
    text-align:center;

}

.footer-content h2{

    font-size:32px;
    margin-bottom:10px;

}

.footer-content p{

    color:#ccc;

}

.footer-content hr{

    border:none;
    height:1px;
    background:#2f3747;
    margin:35px 0;

}

.social-links{

    margin:30px 0;

}

.social-links a{

    width:50px;
    height:50px;

    display:inline-flex;

    justify-content:center;
    align-items:center;

    margin:0 8px;

    border-radius:50%;

    background:#f4a100;
    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.social-links a:hover{

    background:#fff;
    color:#111827;

    transform:translateY(-6px);

}

/*==================================================
WHATSAPP
==================================================*/

.whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#25D366;
    color:#fff;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*==================================================
BACK TO TOP
==================================================*/

.top-btn{

    position:fixed;

    left:25px;
    bottom:25px;

    width:55px;
    height:55px;

    border-radius:50%;

    background:#f4a100;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:22px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.20);

    z-index:998;

}

.top-btn:hover{

    background:#1d2736;
    transform:translateY(-5px);

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.hidden{

    opacity:0;
    transform:translateY(50px);

    transition:all .8s ease;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.contact-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

section{

    padding:80px 0;

}

.section-title h2{

    font-size:32px;

}

.contact-form{

    padding:30px;

}

.contact-box{

    flex-direction:column;
    text-align:center;
    align-items:center;

}

.footer-content h2{

    font-size:26px;

}

.whatsapp{

    width:58px;
    height:58px;
    font-size:30px;

}

.top-btn{

    width:50px;
    height:50px;

}

}

@media(max-width:480px){

.section-title h2{

    font-size:28px;

}

.contact-form{

    padding:25px;

}

.social-links a{

    width:45px;
    height:45px;

}

}
/*==================================================
PREMIUM STICKY HEADER
==================================================*/

header{
    transition:all .35s ease;
}

header.scrolled{
    height:75px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(15px);
    box-shadow:0 10px 35px rgba(0,0,0,.12);
}

/*==================================================
PREMIUM BUTTON EFFECT
==================================================*/

.btn,
.btn2{
    position:relative;
    overflow:hidden;
}

.btn::before,
.btn2::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.25);

    transform:skewX(-30deg);

    transition:.6s;

}

.btn:hover::before,
.btn2:hover::before{

    left:120%;

}

/*==================================================
NAVIGATION UNDERLINE
==================================================*/

.nav-links a{

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:3px;

    background:#f4a100;

    transition:.35s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/*==================================================
CARD EFFECT
==================================================*/

.card{

    will-change:transform;

}

.card:hover{

    transform:translateY(-12px) scale(1.02);

}

/*==================================================
IMAGE EFFECT
==================================================*/

.gallery img{

    transition:transform .5s ease,
               filter .5s ease;

}

.gallery img:hover{

    filter:brightness(1.05);

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#f4a100;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d88e00;

}

/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:#f4a100;
    color:#fff;

}

/*==================================================
SMOOTH IMAGE LOADING
==================================================*/

img{

    max-width:100%;
    display:block;

}

/*==================================================
FADE LOADING
==================================================*/

body{

    opacity:0;
    transition:opacity .6s ease;

}

body.loaded{

    opacity:1;

}

/*==================================================
SMOOTH HOVER
==================================================*/

a,
button,
.card,
.gallery img,
.contact-box,
.social-links a,
.whatsapp,
.top-btn{

    transition:all .35s ease;

}

/*==================================================
PREMIUM SECTION SPACING
==================================================*/

section{

    position:relative;

}

/*==================================================
SMALL DEVICES
==================================================*/

@media(max-width:576px){

.container{

    width:92%;

}

.hero{

    padding-left:15px;
    padding-right:15px;

}

.hero h1{

    font-size:30px;

}

.hero p{

    font-size:16px;

}

.section-title h2{

    font-size:28px;

}

.logo h2{

    font-size:17px;

}

.logo img{

    width:45px;

}

.contact-form{

    padding:20px;

}

.btn,
.btn2{

    width:100%;

}

}
/* Ripple Effect */

.btn,
.btn2{

    position:relative;
    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    animation:ripple .6s linear;

    background:rgba(255,255,255,.45);

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}
/*==================================================
END
==================================================*/