/*==================================================
                GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/*==================================================
                    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

    background:#ffffff;

    color:#222;

    line-height:1.7;
}

img{
    display:block;
    width:100%;
}

ul{
    list-style:none;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

/*==================================================
                    VARIABLES
==================================================*/

:root{

    --primary:#C89B3C;

    --primary-dark:#b3882d;

    --dark:#101010;

    --dark2:#1b1b1b;

    --white:#ffffff;

    --gray:#777;

    --light:#f7f7f7;

    --radius:16px;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --transition:.35s ease;
}

/*==================================================
                COMMON
==================================================*/

.container{

    width:min(90%,1300px);

    margin:auto;
}

section{

    padding:110px 0;
}

.section-tag{
    font-size:20px;
    font-weight:700;
    letter-spacing:4px;
    color:var(--primary);
    text-transform:uppercase;
    margin-bottom:22px;
    display:block;
}
.section-title{

    font-family:'Montserrat',sans-serif;

    font-size:48px;

    margin:12px 0;
}

.section-text{

    color:var(--gray);

    max-width:700px;
}

/*==================================================
                    BUTTONS
==================================================*/

/* Common button style */
.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:all .35s ease;

}

/* Gold button */
.btn-primary{

    background:var(--primary);

    color:white;

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:#E2B54A;

    box-shadow:0 15px 35px rgba(212,166,58,.35);

}

/* Outline button */
.btn-outline{

    border:1.5px solid rgba(255,255,255,.8);

    color:white;

}

.btn-outline:hover{

    background:white;

    color:#111;

    border-color:white;

}
/*==================================================
                    HEADER
==================================================*/

#header{

    position:fixed;

    top:22px;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s ease;
}

.navbar{

    height:82px;
    width:100%;
    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 35px;

    border-radius:22px;

    background:rgba(40,40,40,.92);
backdrop-filter: blur(22px);
box-shadow:0 12px 30px rgba(0,0,0,.18);
backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;
}

/*================ LOGO ================*/

/*================ LOGO ================*/

.logo{

    display:flex;

    flex-direction:column;

    color:white;

    line-height:1;
}

.logo-main{

    font-size:46px;

    font-weight:800;

    font-family:'Montserrat',sans-serif;

    letter-spacing:3px;
}

.logo-main span{

    color:var(--primary);
}

.logo-sub{

    margin-top:4px;

    font-size:11px;

    letter-spacing:8px;

    color:#dddddd;
}

/*================ MENU ================*/

.nav-menu{

    display:flex;

    gap:52px;
}

.nav-menu a{

    color:white;

    font-weight:500;

    position:relative;

    transition:.3s;
}

.nav-menu a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;
}

.nav-menu a:hover{

    color:var(--primary);
}

.nav-menu a:hover::after{

    width:100%;
}

/*================ BUTTON ================*/

.nav-btn{

    padding:14px 28px;
}

/*================ HAMBURGER ================*/

.hamburger{

    display:none;

    cursor:pointer;
}

.hamburger span{

    width:28px;

    height:3px;

    background:white;

    display:block;

    margin:6px;

    transition:.4s;
}
.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/*================ SCROLL EFFECT ================*/
#header.scrolled{
    background:rgba(17,17,17,.97);
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}
#header.scrolled .navbar{

    background:rgba(15,15,15,.82);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 40px rgba(0,0,0,.30);

}
/*==================================================
                    HERO
==================================================*/

#hero{

    position:relative;
    overflow:hidden;

    width:100%;

    min-height:600px;

    display:flex;

    align-items:center;

}

/* Background */

.hero-bg{

    position:absolute;

    inset:0;

    background-image:url("../images/hero.jpg");

    background-size:cover;

    background-position:70% center;

    transform:scale(1.05);

}

/* Overlay */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(10,10,10,.78) 0%,
            rgba(10,10,10,.60) 70%,
            rgba(10,10,10,.90) 100%
        );

}
/* Container */

.hero-content{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1fr 360px;

    align-items:center;

    gap:120px;

}
/* Tag */

.hero-tag{

    display:flex;

    align-items:center;

    gap:18px;

    color:var(--primary);

    font-weight:600;

    letter-spacing:4px;

    margin-bottom:30px;

    font-size:13px;
}

.hero-tag span{

    width:70px;

    height:2px;

    background:var(--primary);
}

/* Title */

.hero-title{

    font-family:'Montserrat',sans-serif;

    font-size:clamp(70px,7vw,110px);

    font-weight:800;

    line-height:.92;

    letter-spacing:-3px;

    text-transform:uppercase;

    margin:25px 0;

    color:#fff;

}

.hero-title span{

    display:block;

}

.hero-title span:first-of-type{

    color:var(--primary);

}

/* Description */

.hero-description{

    width:620px;

    max-width:100%;

    color:#dddddd;

    font-size:18px;

    margin-bottom:45px;

    line-height:1.9;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;
}

.hero-outline{

    border:2px solid rgba(255,255,255,.35);

    color:white;

    backdrop-filter:blur(10px);

    transition:.4s;
}

.hero-outline:hover{

    background:white;

    color:#111;
}

/* Watermark */

.hero-watermark{

    position:absolute;

    right:-30px;

    top:52%;

    transform:translateY(-50%);

    font-size:240px;

    font-family:'Montserrat',sans-serif;

    font-weight:800;

    color:white;

    opacity:.03;

    user-select:none;

}

/* Scroll */

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:14px;

    letter-spacing:3px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    z-index:10;
}

.scroll-indicator span{

    width:2px;

    height:45px;

    background:var(--primary);

    animation:scrollMove 1.6s infinite;
}

/* Animation */

@keyframes scrollMove{

    0%{

        transform:scaleY(0);

        transform-origin:top;
    }

    50%{

        transform:scaleY(1);

        transform-origin:top;
    }

    51%{

        transform-origin:bottom;
    }

    100%{

        transform:scaleY(0);

        transform-origin:bottom;
    }

}
/*================ HERO STATS ================*/

/*================ TRUST CARD ================*/

.trust-card{

    width:330px;
    padding:30px;

    justify-self:end;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.trust-item{

    padding:18px 0;

}

.trust-item h2{

    font-family:'Montserrat',sans-serif;

    font-size:42px;

    color:white;

    margin-bottom:8px;

}

.trust-item span{

    color:#d7d7d7;

    font-size:15px;

    line-height:1.6;

}

.trust-divider{

    height:1px;

    background:rgba(212,166,58,.45);

}
.hero-left{

    max-width:620px;

}
.title-last{

    display:block;

    color:#fff;

}
.title-last{

    display:block;

    font-size:.82em;

    color:#fff;

}
/*================ ABOUT =================*/

#about{

    background:#f8f8f8;

    padding:100px 0 80px;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.section-tag{

    color:var(--primary);

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.section-title{

    font-size:52px;

    line-height:1.15;

    margin-bottom:28px;

    color:#111;

}

.about-text{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.feature{

    color:#222;

    font-weight:500;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:28px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.experience-card{

    position:absolute;

    left:10px;

    bottom:10px;

    background:white;     
     padding:24px 28px;

    border-radius:18px;

    border:1px solid rgba(212,166,58,.25);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.experience-card h2{

    font-size:52px;

    color:var(--primary);

    margin-bottom:8px;

}

.experience-card span{

    color:#555;

    font-weight:600;

}
.about-image{

    overflow:hidden;

    border-radius:28px;

}

.about-image img{

    transition:.5s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}
.feature{

    display:flex;

    align-items:center;

    gap:12px;

}

.feature::before{

    content:"";

    width:10px;

    height:10px;

    background:var(--primary);

    border-radius:50%;

}
/*==================== SERVICES ====================*/

#services{
    background:#f8f8f8;
    padding:70px 0 120px;
}

#services .section-tag{

    text-align:center;

    display:block;

    margin-bottom:18px;

}

#services .section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 70px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:white;

    padding:40px 35px;

    border-radius:22px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.35s;

    transform-origin:left;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:70px;

    height:70px;

    background:rgba(212,166,58,.12);

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

}

.service-icon i{

    color:var(--primary);

    font-size:30px;

}

.service-card h3{

    font-size:26px;

    margin-bottom:18px;

    color:#111;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.service-link{

    color:var(--primary);

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    transition:.3s;

}

.service-link i{

    transition:.3s;

}

.service-card:hover .service-link i{

    transform:translateX(6px);

}
/*==================== PROJECTS ====================*/

#projects{

    padding:120px 0;

    background:white;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

}

.project-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.6s;

    display:block;

}

.project-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    color:white;

    opacity:0;

    transition:.4s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay span{

    color:var(--primary);

    letter-spacing:2px;

    font-size:.9rem;

    margin-bottom:12px;

}

.project-overlay h3{

    font-size:2rem;

    margin-bottom:18px;

}

.project-overlay a{

    color:white;

    font-weight:600;

    transition:.3s;

}

.project-overlay a:hover{

    color:var(--primary);

}
.projects-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.projects-header .section-title{

    margin:20px 0;

}

.projects-subtitle{

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

    max-width:700px;

    margin:0 auto;

}
/*==================== WHY CHOOSE US ====================*/

#why{

    background:#f8f8f8;

    padding:120px 0;

}

.why-header{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.why-header .section-tag{

    margin-bottom:18px;

}

.why-header .section-title{

    margin-bottom:22px;

    font-size:3rem;

    line-height:1.2;

}

.why-subtitle{

    max-width:700px;

    margin:0 auto;

    color:#666;

    font-size:1.08rem;

    line-height:1.8;

}

/*========== GRID ==========*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

/*========== CARD ==========*/

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

    transition:all .35s ease;

}

/* Gold top line */

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

/* Hover */

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(0,0,0,.13);

}

.why-card:hover::before{

    transform:scaleX(1);

}

/*========== ICON ==========*/

.why-card i{

    width:80px;

    height:80px;

    background:rgba(212,166,58,.12);

    color:var(--primary);

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    font-size:34px;

    transition:.35s;

}

.why-card:hover i{

    transform:scale(1.1) rotate(-5deg);

}

/*========== TITLE ==========*/

.why-card h3{

    font-size:1.6rem;

    color:#111;

    margin-bottom:18px;

}

/*========== TEXT ==========*/

.why-card p{

    color:#666;

    line-height:1.8;

    font-size:1rem;

}
/*==================== STATISTICS ====================*/

#statistics{
    padding:30px 0;
    background:#111;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(160px, 220px));
    justify-content:center;
    gap:50px;
}

.stat-box{
    padding:30px 15px;
    max-width:200px;
    margin:auto;
}

.stat-box h2{

    font-size:3.5rem;

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

    letter-spacing:1px;

}

.stat-box p{

    color:#ddd;

    font-size:1.05rem;

}
.stat-box{
    transition: all .35s ease;
    border:1px solid transparent;
    border-radius:15px;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:rgba(212,166,58,.08);
    box-shadow: 0 12px 28px rgba(212,166,58,.12);
    border-color:rgba(212,166,58,.35);
}

.stat-box:hover h2{
    color:#f3c75a;
    text-shadow:0 0 15px rgba(212,166,58,.35);
}

.stat-box:hover p{
    color:#fff;
}

/*@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr 1fr;

}

}*/

/*==================== PROCESS ====================*/

#process{
    padding-top:90px;
    padding-bottom:100px;
}

.process-header{
    text-align:center;
    margin-bottom: 60px;
}
.process-header .section-title{
    margin-bottom:28px;
}
.section-subtitle{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

    line-height:1.8;

    font-size:1.05rem;

}

    .process-grid{
        margin-top:50px;
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:40px;
    }

.process-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:55px 35px;

    text-align:center;

    border:2px solid transparent;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    transition:all .35s ease;

}

.process-card:hover{

    transform:translateY(-8px);
    border-color: var(--primary);

    box-shadow: 0 14px 32px rgba(212,166,58,.10);

    

}
.step-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:25px;
    transition:.35s ease;

}

.process-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.process-card p{

    color:#666;

    line-height:1.7;

}

.process-card:hover .step-number{

    transform:scale(1.12);

    box-shadow:0 0 20px rgba(212,166,58,.35);

}
/*@media(max-width:991px){

.process-grid{

grid-template-columns:1fr 1fr;

}

}*/

/*@media(max-width:600px){

.process-grid{

grid-template-columns:1fr;

}

}*/
/*==================== TESTIMONIALS ====================*/

#testimonials{

    padding:100px 0;

    background:#f8f8f8;

}

.testimonial-header{

    text-align:center;

    margin-bottom:70px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border:2px solid transparent;

    transition:.35s ease;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:rgba(212,166,58,.5);

    box-shadow:0 18px 40px rgba(212,166,58,.12);

}

.stars{

    font-size:1.35rem;

    color:var(--primary);

    letter-spacing:3px;

    margin-bottom:25px;

}

.testimonial-text{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

    font-style:italic;

}

.client-info h4{

    font-size:1.2rem;

    margin-bottom:6px;

    color:#111;

}

.client-info span{

    color:#888;

    font-size:.95rem;

}

.testimonial-cta{

    text-align:center;

    margin-top:70px;

}

.testimonial-cta h3{

    font-size:2rem;

    margin-bottom:25px;

}
/*@media (max-width:991px){

.testimonial-grid{

    grid-template-columns:1fr;

}

}*/
.testimonial-cta .btn{
    padding:18px 42px;
    font-size:1.05rem;
}



/*==================== CONTACT ====================*/

#contact{
    padding:100px 0;
    background:#fff;
}

.contact-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:60% 40%;
    gap:50px;
    align-items:stretch;
}

.contact-left{
    width:100%;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid transparent;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(212,166,58,.15);
}

.address-card{
    grid-column:1 / -1;
}

.contact-icon{
    width:70px;
    height:70px;
    background:rgba(212,166,58,.12);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.8rem;
    margin-bottom:20px;
}

.contact-card h3{
    font-size:1.5rem;
    margin-bottom:12px;
}

.contact-card p,
.contact-card a{
    color:#666;
    line-height:1.8;
}

.contact-card a{
    color:var(--primary);
    font-weight:600;
}

.contact-right{
    height:100%;
}

.map-card{
    height:100%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.map-card iframe{
    width:100%;
    height:100%;
    min-height:650px;
    border:0;
}
/*@media(max-width:991px){

.contact-grid{

    grid-template-columns:1fr;

}

}*/
/*==================== FOOTER ====================*/

footer{

    background:#111;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

}

.footer-about h2{

    font-size:2rem;

    color:#fff;

    margin-bottom:20px;

}

.footer-about span{

    color:var(--primary);

}

.footer-about p{

    color:#bfbfbf;

    line-height:1.9;

    max-width:350px;

}

.footer-links h3,

.footer-contact h3{

    margin-bottom:25px;

    color:#fff;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#bfbfbf;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    transform:translateX(6px);

}

.footer-contact p{

    color:#bfbfbf;

    margin-bottom:15px;

    line-height:1.8;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#999;

    font-size:.95rem;

}   
.footer-brand{

    margin-bottom:25px;

}

.footer-brand h2{

    font-size:3rem;
    font-weight:800;
    line-height:1;
    letter-spacing:1px;
    margin-bottom:8px;

}

.footer-brand .gold{

    color:var(--primary);

}

.footer-brand .white{

    color:#fff;

}

.brand-subtitle{

    color:#bbb;
    font-size:.9rem;
    letter-spacing:8px;
    text-transform:uppercase;

}
.contact-icon{

    width:70px;
    height:70px;

    background:rgba(212,166,58,.12);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:20px;
}

.contact-icon i{

    color:var(--primary);

    font-size:1.8rem;
}
/*==================== BACK TO TOP ====================*/

#backToTop{

    position:fixed;

    bottom:30px;
    right:30px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:var(--primary);
    color:#fff;

    font-size:1.2rem;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:0 10px 25px rgba(212,166,58,.35);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:999;
}

#backToTop.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

#backToTop:hover{

    transform:translateY(-5px) scale(1.08);

    background:#c99720;

}

/*==================================================
                RESPONSIVE DESIGN
==================================================*/

@media (max-width:992px){
    #hero{

    min-height:auto;

    padding:170px 0 100px;

}

    .container{
        width:min(94%,100%);
    }

    /* ---------- Navbar ---------- */

    .nav-links{
        gap:20px;
    }

    .nav-btn{
        padding:12px 22px;
        font-size:.95rem;
    }

    /* ---------- Hero ---------- */

    .hero{
        min-height:auto;
        padding:140px 0 90px;
    }

    .hero-content{

    grid-template-columns:1fr;

    gap:60px;

    text-align:center;

}
    .hero-left{

    max-width:100%;

}
    .hero-title{

    font-size:clamp(55px,8vw,80px);

    letter-spacing:-2px;

}
    .hero-description{

    width:100%;

    max-width:650px;

    margin:0 auto 40px;

}
    .hero-text{
        order:2;
    }

    .hero-image{
        order:1;
    }

    .hero-buttons{
        justify-content:center;
    }
.trust-card{

    width:100%;

    max-width:420px;

    justify-self:center;

}
.hero-watermark{

    display:none;

}
.scroll-indicator{

    display:none;

}
    /* ---------- About ---------- */

    .about-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    /* ---------- Services ---------- */

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ---------- Projects ---------- */

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ---------- Why ---------- */

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ---------- Statistics ---------- */

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ---------- Process ---------- */

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* ---------- Testimonials ---------- */

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    /* ---------- Contact ---------- */

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-right{
        min-height:500px;
    }

    /* ---------- Footer ---------- */

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}
/*========== MOBILE NAVBAR ==========*/

@media (max-width:992px){

    .nav-menu{

        position:fixed;

        top:110px;

        left:-100%;

        width:85%;
max-width:320px;

        background:#111;

        flex-direction:column;

        gap:25px;

        padding:35px;

        border-radius:20px;

        transition:.4s ease;

        box-shadow:0 20px 45px rgba(0,0,0,.30);

    }

    .nav-menu.active{

        left:5%;

    }

    .hamburger{

        display:block;

    }

    .nav-btn{

        display:none;

    }

}
@media (max-width:768px){

    .container{
        width:92%;
    }

    /* ---------- Navbar ---------- */

    .navbar{
        height:72px;
        padding:0 20px;
    }

    .logo-main{
        font-size:34px;
    }

    .logo-sub{
        font-size:9px;
        letter-spacing:5px;
    }

    /* ---------- Hero ---------- */

    #hero{
        padding:140px 0 80px;
    }

    .hero-title{
        font-size:clamp(42px,10vw,60px);
        line-height:1;
    }

    .hero-tag{
        justify-content:center;
        font-size:11px;
        letter-spacing:2px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:320px;
    }

    .trust-card{
        max-width:100%;
        padding:25px;
    }

    /* ---------- About ---------- */

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-card{
        position:static;
        margin-top:20px;
    }

    /* ---------- Services ---------- */

    .services-grid{
        grid-template-columns:1fr;
    }

    /* ---------- Projects ---------- */

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-card img{
        height:300px;
    }

    /* ---------- Why ---------- */

    .why-grid{
        grid-template-columns:1fr;
    }

    /* ---------- Statistics ---------- */

    .stats-grid{
        grid-template-columns:1fr;
    }

    /* ---------- Process ---------- */

    .process-grid{
        grid-template-columns:1fr;
    }

    /* ---------- Contact ---------- */

    .contact-grid{
        grid-template-columns:1fr;
    }

    .map-card iframe{
        min-height:350px;
    }

    /* ---------- Footer ---------- */

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-about p{
        margin:auto;
    }

}   
html,
body{
    overflow-x:hidden;
    width:100%;
}

section{
    overflow:hidden;
}