/*==========================================
RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

/*==========================================
COLORS
==========================================*/

:root{

    --primary:#D4AF37;
    --primary-dark:#B89428;

    --black:#111111;
    --black-light:#1C1C1C;

    --white:#ffffff;

    --gray:#777777;

    --border:#e5e5e5;

    --transition:.35s ease;

}

/*==========================================
TOP BAR
==========================================*/

.topbar{

    background:#111;

    color:#fff;

    font-size:14px;

}

.topbar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:46px;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.topbar a{

    color:#fff;

    transition:.3s;

}

.topbar a:hover{

    color:var(--primary);

}

.topbar i{

    color:var(--primary);

    margin-right:8px;

}

/*==========================================
HEADER
==========================================*/

.main-header{

    position:absolute;

    left:0;

    top:46px;

    width:100%;

    z-index:999;

    transition:.4s;

}

.main-header.sticky{

    position:fixed;

    top:0;

    background:#111;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:95px;

}

.logo img{

    height:75px;

}

/*==========================================
MENU
==========================================*/

.desktop-menu ul{

    display:flex;

    align-items:center;

    gap:40px;

}

.desktop-menu a{

    color:#fff;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.3s;

}

.desktop-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.desktop-menu a:hover{

    color:var(--primary);

}

.desktop-menu a:hover::after,

.desktop-menu .active::after{

    width:100%;

}

.desktop-menu .active{

    color:var(--primary);

}

/*==========================================
CALL BUTTON
==========================================*/

.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}

.call-btn{

    background:var(--primary);

    color:#111;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.call-btn:hover{

    background:#fff;

}

.call-btn i{

    margin-right:8px;

}
/*==========================================
MOBILE BUTTON
==========================================*/

.mobile-toggle{

    width:48px;

    height:48px;

    border:none;

    background:var(--primary);

    color:#111;

    border-radius:8px;

    display:none;

    cursor:pointer;

    font-size:22px;

}
/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1199px){

    .desktop-menu{
    
    display:none;
    
    }
    
    .mobile-toggle{
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    }
    
    .call-btn{
    
    display:none;
    
    }
    
    }
    
    @media(max-width:991px){
    
    .topbar-wrapper{
    
    flex-direction:column;
    
    padding:10px 0;
    
    gap:10px;
    
    }
    
    .top-left{
    
    flex-wrap:wrap;
    
    justify-content:center;
    
    gap:15px;
    
    }
    
    .top-right{
    
    justify-content:center;
    
    }
    
    .logo img{
    
    height:60px;
    
    }
    
    .header-wrapper{
    
    min-height:80px;
    
    }
    
    }
    
    @media(max-width:767px){
    
    .topbar{
    
    display:none;
    
    }
    
    .main-header{
    
    top:0;
    
    }
    
    .logo img{
    
    height:55px;
    
    }
    
    .header-wrapper{
    
    min-height:75px;
    
    }
    
    }

    /* hero section */

    /*==========================================
HERO SECTION
==========================================*/

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    background:url('../images/hero-bg.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:140px 0 80px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,
        rgba(10,10,10,.92) 0%,
        rgba(10,10,10,.88) 45%,
        rgba(10,10,10,.55) 100%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:url('../images/pattern.png');
    opacity:.08;
    pointer-events:none;
}

.hero .container{
    position:relative;
    z-index:5;
}

.hero-content{
    color:#fff;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,208,0,.4);
    background:rgba(255,208,0,.08);
    color:#FFD000;
    border-radius:50px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
    font-family:'Montserrat',sans-serif;
}

.hero-content h1 span{
    color:#FFD000;
}

.hero-content p{
    color:#d5d5d5;
    font-size:18px;
    line-height:32px;
    max-width:620px;
    margin-bottom:35px;
}

.hero-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:40px;
}

.hero-list div{
    color:#fff;
    font-size:16px;
}

.hero-list i{
    color:#FFD000;
    margin-right:10px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-yellow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#FFD000;
    color:#111;
    padding:16px 38px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.btn-yellow:hover{
    background:#fff;
    color:#111;
    transform:translateY(-4px);
}

.btn-border{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:2px solid #FFD000;
    color:#FFD000;
    padding:16px 38px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.btn-border:hover{
    background:#FFD000;
    color:#111;
}

.hero-image{
    position:relative;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    animation:carFloat 4s ease-in-out infinite;
    filter:drop-shadow(0 25px 35px rgba(0,0,0,.45));
}

@keyframes carFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==========================================
SERVICE STRIP
==========================================*/

.service-strip{

    background:#111;
    padding:30px 0;

}

.service-box{

    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
    transition:.35s;

}

.service-box i{

    width:60px;
    height:60px;
    background:#FFD000;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;

}

.service-box h5{

    margin:0;
    font-size:18px;
    font-weight:700;

}

.service-box p{

    margin:4px 0 0;
    color:#bbb;
    font-size:14px;

}

.service-box:hover{

    transform:translateY(-8px);

}

/*==========================================
RESPONSIVE HERO
==========================================*/

@media(max-width:1199px){

    .hero-content h1{
    
    font-size:58px;
    
    }
    
    }
    
    @media(max-width:991px){
    
    .hero{
    
    text-align:center;
    
    padding:140px 0 80px;
    
    }
    
    .hero-content{
    
    margin-bottom:50px;
    
    }
    
    .hero-content h1{
    
    font-size:48px;
    
    }
    
    .hero-content p{
    
    margin:auto auto 30px;
    
    }
    
    .hero-list{
    
    grid-template-columns:1fr;
    
    }
    
    .hero-buttons{
    
    justify-content:center;
    
    }
    
    }
    
    @media(max-width:767px){
    
    .hero{
    
    min-height:auto;
    
    padding:120px 0 70px;
    
    }
    
    .hero-content h1{
    
    font-size:36px;
    
    }
    
    .hero-content p{
    
    font-size:16px;
    line-height:28px;
    
    }
    
    .hero-tag{
    
    font-size:12px;
    
    }
    
    .btn-yellow,
    .btn-border{
    
    width:100%;
    
    }
    
    }

    /*==========================================
FEATURE SECTION
==========================================*/

.features{

    position:relative;

    margin-top:-80px;

    z-index:20;

}

.feature-box{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

    background:#111;

}

.feature-box:hover h4{

    color:#FFD000;

}

.feature-box:hover p{

    color:#ddd;

}

.feature-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#FFD000;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin:auto auto 25px;

}

.feature-box h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.feature-box p{

    color:#777;

    line-height:28px;

}

@media(max-width:991px){

    .features{
    
    margin-top:40px;
    
    }
    
    }

    /*==================================
ABOUT SECTION
===================================*/

.section-padding{

    padding:120px 0;

}

.about{

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:20px;

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    width:180px;

    height:180px;

    border-radius:50%;

    background:#FFD000;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.experience-box h2{

    font-size:52px;

    font-weight:800;

    color:#111;

    margin:0;

}

.experience-box span{

    font-weight:600;

    text-align:center;

}

.section-title span{

    color:#FFD000;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:30px;

    font-weight:800;

    margin:18px 0 30px;

    color:#111;

    line-height:1.2;

}

.about p{

    color:#666;

    line-height:30px;

    margin-bottom:35px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-list div{

    font-weight:500;

}

.about-list i{

    color:#FFD000;

    margin-right:10px;

}

.about-counter{

    display:flex;

    gap:35px;

    margin-bottom:40px;

}

.about-counter h3{

    font-size:36px;

    color:#FFD000;

    margin-bottom:5px;

}

.about-counter span{

    color:#777;

}
@media(max-width:991px){

    .about-image{
    
    margin-bottom:50px;
    
    }
    
    .experience-box{
    
    right:20px;
    
    bottom:20px;
    
    width:140px;
    
    height:140px;
    
    }
    
    .section-title h2{
    
    font-size:34px;
    
    }
    
    .about-list{
    
    grid-template-columns:1fr;
    
    }
    
    .about-counter{
    
    flex-wrap:wrap;
    
    gap:20px;
    
    }
    
    }
    
    @media(max-width:767px){
    
    .section-padding{
    
    padding:80px 0;
    
    }
    
    .section-title h2{
    
    font-size:28px;
    
    }
    
    .experience-box{
    
    width:120px;
    
    height:120px;
    
    }
    
    .experience-box h2{
    
    font-size:36px;
    
    }
    
    }

    .about .container{
        max-width:1400px;
    }

    .section-title h2{

        font-size:40px;
    
        line-height:1.15;
    
        font-weight:800;
    
    }

    /*=====================================
SERVICES
=====================================*/

.services{

    background:#111;

    color:#fff;

}

.section-heading{

    max-width:750px;

    margin:auto;

}

.section-heading span{

    color:#FFD000;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-heading h2{

    font-size:52px;

    font-weight:800;

    margin:15px 0;

    color:#fff;

}

.section-heading p{

    color:#bbb;

    line-height:30px;

}

.service-card{

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:40px 30px;

    transition:.35s;

    height:100%;

    text-align:center;

}

.service-card:hover{

    background:#FFD000;

    transform:translateY(-10px);

}

.service-card:hover h4,

.service-card:hover p,

.service-card:hover i{

    color:#111;

}

.service-icon{

    width:90px;

    height:90px;

    background:#FFD000;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 25px;

}

.service-icon i{

    font-size:36px;

    color:#111;

}

.service-card h4{

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.service-card p{

    color:#ccc;

    line-height:28px;

}

@media(max-width:991px){

.section-heading h2{

font-size:38px;

}

}

@media(max-width:767px){

.section-heading h2{

font-size:30px;

}

.service-card{

padding:30px 20px;

}

}

/*==================================
WHY CHOOSE US
==================================*/

.why-us{

    position:relative;

    padding:120px 0;

    background:#fff;

    overflow:hidden;

}

.why-us::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(212,175,55,.05);

    border-radius:50%;

    left:-180px;

    top:-180px;

}

.why-us::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(212,175,55,.04);

    border-radius:50%;

    right:-220px;

    bottom:-220px;

}

.why-us .container{

    position:relative;

    z-index:5;

}

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.experience-badge{

    position:absolute;

    right:-30px;

    bottom:35px;

    width:170px;

    height:170px;

    background:#FFD000;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border:8px solid #fff;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.experience-badge h3{

    font-size:48px;

    margin:0;

    color:#111;

    font-weight:800;

}

.experience-badge span{

    font-size:15px;

    text-align:center;

    font-weight:600;

}

.why-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

    border:1px solid #eee;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.why-icon{

    width:70px;

    height:70px;

    background:#FFD000;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.why-icon i{

    color:#111;

    font-size:28px;

}

.why-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:28px;

}

@media(max-width:991px){

    .why-image{

        margin-bottom:60px;

    }

    .experience-badge{

        right:20px;

        bottom:20px;

        width:130px;

        height:130px;

    }

    .experience-badge h3{

        font-size:34px;

    }

}

@media(max-width:767px){

    .why-us{

        padding:80px 0;

    }

    .experience-badge{

        display:none;

    }

}


/*==================================
BRANDS
==================================*/

.brands{

    padding:120px 0;

    background:#111;

}

.brands .section-title h2{

    color:#fff;

}

.brands .section-title p{

    color:#bfbfbf;

}

.brand-card{

    background:#1d1d1d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.brand-card:hover{

    background:#FFD000;

    transform:translateY(-8px);

}

.brand-card img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin-bottom:18px;

    filter:grayscale(100%);

    transition:.35s;

}

.brand-card:hover img{

    filter:none;

    transform:scale(1.1);

}

.brand-card h5{

    color:#fff;

    margin:0;

    font-weight:600;

    transition:.35s;

}

.brand-card:hover h5{

    color:#111;

}

@media(max-width:767px){

.brand-card{

padding:25px 15px;

}

.brand-card img{

width:55px;

height:55px;

}

}

/*==================================
OUR WORK
===================================*/

.our-work{

    padding:120px 0;

    background:#fafafa;

}

.work-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.work-card img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.5s;

}

.work-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.work-card:hover img{

    transform:scale(1.08);

}

.work-card:hover .work-overlay{

    opacity:1;

}

.work-overlay h4{

    font-size:28px;

    margin-bottom:10px;

}

.work-overlay p{

    color:#FFD000;

}

@media(max-width:767px){

.work-card img{

height:250px;

}

}

/*==================================
TESTIMONIALS
===================================*/

.testimonials{

    padding:120px 0;

    background:#111;

}

.testimonials .section-title h2{

    color:#fff;

}

.testimonials .section-title p{

    color:#bbb;

}

.testimonial-card{

    position:relative;

    background:#1c1c1c;

    padding:40px;

    border-radius:20px;

    height:100%;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#FFD000;

}

.quote-icon{

    width:65px;

    height:65px;

    background:#FFD000;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.quote-icon i{

    color:#111;

    font-size:28px;

}

.testimonial-card p{

    color:#ddd;

    line-height:30px;

    margin-bottom:25px;

}

.stars{

    color:#FFD000;

    margin-bottom:25px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    color:#fff;

    margin-bottom:5px;

}

.client span{

    color:#999;

}

/*==================================
BOOK APPOINTMENT
===================================*/

.appointment-section{

    position:relative;

    padding:120px 0;

    background:url('../images/appointment-bg.jpg') center center/cover no-repeat;

}

.appointment-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.82);

}

.appointment-section .container{

    position:relative;

    z-index:2;

}

.appointment-subtitle{

    color:#FFD000;

    text-transform:uppercase;

    letter-spacing:3px;

    font-weight:700;

}

.appointment-section h2{

    color:#fff;

    font-size:56px;

    font-weight:800;

    margin:20px 0;

}

.appointment-section p{

    color:#ddd;

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

}

.appointment-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.appointment-list li{

    color:#fff;

}

.appointment-list i{

    color:#FFD000;

    margin-right:10px;

}

.appointment-box{

    background:#fff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.appointment-box h3{

    margin-bottom:25px;

    font-size:28px;

}

.phone-btn,
.whatsapp-btn,
.appointment-btn{

    display:block;

    width:100%;

    padding:16px;

    border-radius:50px;

    margin-top:18px;

    font-weight:600;

    transition:.35s;

}

.phone-btn{

    background:#FFD000;

    color:#111;

}

.phone-btn:hover{

    background:#111;

    color:#fff;

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

}

.whatsapp-btn:hover{

    background:#1fa855;

}

.appointment-btn{

    background:#111;

    color:#fff;

}

.appointment-btn:hover{

    background:#FFD000;

    color:#111;

}

@media(max-width:991px){

.appointment-section{

text-align:center;

}

.appointment-box{

margin-top:40px;

}

.appointment-list{

grid-template-columns:1fr;

}

}

@media(max-width:767px){

.appointment-section h2{

font-size:34px;

}

}

/*==================================
CONTACT INFO
==================================*/

.contact-info{

    background:#fafafa;

}

.info-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.info-card:hover{

    transform:translateY(-10px);

}

.info-card i{

    width:70px;

    height:70px;

    background:#FFD000;

    color:#111;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 25px;

    font-size:28px;

}

.info-card h4{

    margin-bottom:18px;

}

/*==================================
FOOTER
==================================*/

.footer{

    background:#111;

    color:#ddd;

    padding:80px 0 30px;

}

.footer h4{

    color:#FFD000;

    margin-bottom:25px;

}

.footer ul{

    padding:0;

    list-style:none;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:#FFD000;

}

.social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#FFD000;

    color:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.social a:hover{

    background:#fff;

}

.footer hr{

    margin:40px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.copyright{

    text-align:center;

    color:#999;

}

.map-link{
    color:inherit;
    text-decoration:none;
    transition:.3s;
    display:inline-block;
}

.map-link:hover{
    color:#FFD000;
    text-decoration:underline;
}
.info-card{
    display:block;
    text-decoration:none;
    color:#222;
}

.info-card:hover{
    color:#222;
    transform:translateY(-8px);
}
html{
    scroll-behavior:smooth;
}
section{
    scroll-margin-top:110px;
}

#home{
    scroll-margin-top:0;
}

.mobile-menu{

    position:fixed;

    top:0;

    left:-100%;

    width:320px;

    max-width:85%;

    height:100vh;

    background:#111;

    transition:.4s;

    z-index:9999;

    overflow-y:auto;

}

.mobile-menu.active{

    left:0;

}

.mobile-menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;

}

.mobile-menu-overlay.active{

    opacity:1;

    visibility:visible;

}

.mobile-menu{

    position:fixed;
    top:0;
    left:-100%;
    width:320px;
    max-width:85%;
    height:100%;
    background:#111;
    transition:.35s ease;
    z-index:9999;

}

.mobile-menu.active{

    left:0;

}

.mobile-menu-overlay{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;

}

.mobile-menu-overlay.active{

    opacity:1;
    visibility:visible;

}

.logo img{
    height:90px;
}

@media(max-width:767px){

.logo img{
    height:75px;
}

.mobile-header img{
    height:70px;
}

}
.main-header{

    padding:18px 0;

}

@media(max-width:767px){

.main-header{

    padding:14px 0;

}

}

/*=========================================
STICKY HEADER
=========================================*/

.main-header{

    position:fixed;

    top:40px; /* Height of topbar */

    left:0;

    width:100%;

    z-index:999;

    background:rgba(17,17,17,.95);

    backdrop-filter:blur(10px);

    transition:all .35s ease;

}

.main-header.sticky{

    top:0;

    background:#111;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    padding:10px 0;

}

.main-header.sticky .logo img{

    height:90px;

}

body{

    padding-top:120px;

}

/* Mobile */

@media(max-width:991px){

.main-header{

    top:0;

}

body{

    padding-top:90px;

}

.main-header.sticky{

    padding:8px 0;

}

.main-header.sticky .logo img{

    height:90px;

}

}

.topbar{

    transition:.35s;

}

.topbar.hide{

    transform:translateY(-100%);

    opacity:0;

}

/*==============================
HEADER
==============================*/

.main-header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    background:#111;
    z-index:999;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.main-header .container{
    max-width:1400px;
    margin:auto;
    padding:0 25px;
}

.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:95px;
}

/*==============================
LOGO
==============================*/

.logo img{
    height:90px;
    width:auto;
    display:block;
}

/*==============================
MENU
==============================*/

.desktop-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.desktop-menu ul{
    display:flex;
    align-items:center;
    gap:42px;
    margin:0;
    padding:0;
    list-style:none;
}

.desktop-menu ul li{
    list-style:none;
}

.desktop-menu ul li a{

    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.3s;
    position:relative;
    padding:10px 0;

}

.desktop-menu ul li a:hover,
.desktop-menu ul li a.active{

    color:#ffc107;

}

.desktop-menu ul li a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffc107;
    transition:.3s;

}

.desktop-menu ul li a:hover::after,
.desktop-menu ul li a.active::after{

    width:100%;

}

/*==============================
CALL BUTTON
==============================*/

.call-btn{

    background:#ffc107;
    color:#111;
    padding:14px 32px;
    border-radius:40px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;

}

.call-btn:hover{

    background:#fff;
    color:#111;

}

/*==============================
TABLET
==============================*/

@media(max-width:1199px){

.desktop-menu ul{

    gap:25px;

}

.desktop-menu ul li a{

    font-size:15px;

}

.logo img{

    height:70px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:991px){

.desktop-menu{

    display:none;

}

.logo img{

    height:65px;

}

.call-btn{

    display:none;

}

.mobile-toggle{

    display:flex;

}

}

/*=========================
TOPBAR
=========================*/

.topbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    height:42px;

    background:#111;
    color:#fff;

    z-index:9999;

    display:flex;
    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.topbar .container{

    max-width:1400px;
    margin:auto;

}

.topbar-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:25px;

}

.topbar a{

    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;

}

.topbar a:hover{

    color:#ffc107;

}



/*=========================
MAIN HEADER
=========================*/

.main-header{

    position:fixed;

    top:30px;

    left:0;

    width:100%;

    z-index:9998;

    background:rgba(18,18,18,.98);

    backdrop-filter:blur(10px);

    transition:.35s;

}

.main-header .container{

    max-width:1400px;

}

.header-wrapper{

    min-height:95px;

}



/*=========================
BODY SPACE
=========================*/

body{

    padding-top:137px;

}



/*=========================
TABLET
=========================*/

@media(max-width:991px){

.topbar{

    display:none;

}

.main-header{

    top:0;

}

body{

    padding-top:85px;

}

}



/*=========================
MOBILE
=========================*/

@media(max-width:767px){

.main-header{

    height:75px;

}

}

/* Mobile Hero Fix */
@media (max-width: 991px){

    body{
        padding-top:75px !important;
    }

    .hero{
        margin-top:0 !important;
        padding-top:30px !important;
    }

    .main-header{
        height:75px;
    }

}

@media (max-width:767px){

    .hero-badge{
    
        display:inline-flex;
        margin:0 0 20px;
        align-self:flex-start;
    
    }
    
    .hero-content{
    
        text-align:left;
    
    }
    
    .hero-content h1{
    
        text-align:left;
    
    }
    
    .hero-content p{
    
        text-align:left;
    
    }
    
    }

    @media(max-width:767px){

        .hero-features{
        
            display:flex;
            flex-direction:column;
            align-items:flex-start;
            gap:12px;
        
        }
        
        .hero-features li{
        
            justify-content:flex-start;
        
        }
        
        }

        @media(max-width:767px){

            .hero-buttons{
            
                display:flex;
                flex-direction:column;
                gap:15px;
            
            }
            
            .hero-buttons a{
            
                width:100%;
            
            }
            
            }