/* =========================================================
   IMAGE HYGIENE & DECOR MAHARASHTRA
   COMPLETE RESPONSIVE STYLESHEET
   ========================================================= */

/* =========================================================
   GOOGLE FONT
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root{
    --primary:#e4002b;
    --primary-dark:#c80025;
    --black:#111111;
    --black-2:#181818;
    --white:#ffffff;
    --light:#f7f7f7;
    --text:#666666;
    --heading:#111111;
    --border:#e8e8e8;
    --shadow:0 12px 35px rgba(0,0,0,.08);
    --radius:12px;
    --transition:.35s ease;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    padding:0;
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

body.menu-open{
    overflow:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

ul,
ol{
    list-style:none;
    margin:0;
    padding:0;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

button{
    cursor:pointer;
}

section{
    position:relative;
    padding:90px 0;
}

.container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.row{
    display:flex;
    flex-wrap:wrap;
    margin-left:-12px;
    margin-right:-12px;
}

[class*="col-"]{
    width:100%;
    padding-left:12px;
    padding-right:12px;
}


/* =========================================================
   BASIC GRID
   ========================================================= */

@media(min-width:576px){

    .col-sm-6{
        width:50%;
    }

}

@media(min-width:768px){

    .col-md-4{
        width:33.333333%;
    }

    .col-md-6{
        width:50%;
    }

    .col-md-8{
        width:66.666666%;
    }

    .col-md-12{
        width:100%;
    }

}

@media(min-width:992px){

    .col-lg-3{
        width:25%;
    }

    .col-lg-4{
        width:33.333333%;
    }

    .col-lg-5{
        width:41.666666%;
    }

    .col-lg-6{
        width:50%;
    }

    .col-lg-7{
        width:58.333333%;
    }

    .col-lg-8{
        width:66.666666%;
    }

    .col-lg-12{
        width:100%;
    }

}

@media(min-width:1200px){

    .col-xl-3{
        width:25%;
    }

    .col-xl-4{
        width:33.333333%;
    }

    .col-xl-6{
        width:50%;
    }

    .col-xl-8{
        width:66.666666%;
    }

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6{
    margin:0;
    color:var(--heading);
    font-weight:700;
    line-height:1.25;
}

p{
    margin:0 0 15px;
    color:var(--text);
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title > span,
.section-tag{
    display:inline-block;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    line-height:1.2;
}

.section-title h2 strong,
.section-title h2 span{
    color:var(--primary);
}

.section-title p{
    max-width:700px;
    margin:18px auto 0;
    font-size:15px;
    line-height:1.8;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.theme-btn,
.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 30px;
    border:2px solid var(--primary);
    border-radius:50px;
    background:var(--primary);
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    line-height:1;
    transition:var(--transition);
}

.theme-btn:hover,
.primary-btn:hover{
    background:var(--black);
    border-color:var(--black);
    color:#fff !important;
    transform:translateY(-2px);
}

.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 30px;
    border:2px solid #fff;
    border-radius:50px;
    background:transparent;
    color:#fff !important;
    font-size:14px;
    font-weight:600;
    line-height:1;
}

.secondary-btn:hover{
    background:#fff;
    color:var(--black) !important;
}


/* =========================================================
   MAIN HEADER
   ========================================================= */

.main-header{
    position:relative;
    z-index:9999;
    width:100%;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.header-wrapper{
    width:100%;
    min-height:105px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.site-logo{
    flex:0 0 auto;
}

.site-logo a{
    display:block;
}

.site-logo img{
    width:auto;
    height:80px;
    max-width:230px;
    object-fit:contain;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-navigation{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex:1;
}

.main-menu{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
}

.main-menu > li{
    position:relative;
}

.main-menu > li > a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    min-height:44px;
    padding:10px 14px;
    color:#111;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.main-menu > li > a:hover,
.main-menu > li.active > a{
    color:var(--primary);
}


/* =========================================================
   DROPDOWN ARROWS
   ========================================================= */

.has-dropdown > a::after{
    content:"";
    width:8px;
    height:8px;
    margin-left:3px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    margin-top:-4px;
    transition:.3s ease;
}

.has-dropdown:hover > a::after{
    transform:rotate(225deg);
    margin-top:4px;
}


/* =========================================================
   DROPDOWN MENU
   ========================================================= */

.dropdown-menu{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    min-width:245px;
    padding:10px 0;
    background:#fff;
    border-radius:10px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    border:1px solid #eeeeee;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s ease;
    z-index:99999;
}

.has-dropdown:hover > .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:9px 18px;
    color:#111;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    white-space:nowrap;
}

.dropdown-menu li a:hover{
    color:var(--primary);
    background:#fafafa;
    padding-left:22px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    color:#111;
    font-size:22px;
}

.menu-toggle:hover{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
}


/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

.heroSwiper{
    width:100%;
    height:680px;
}

.hero-slide{
    position:relative;
    width:100%;
    height:680px;
    display:flex;
    align-items:center;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.72) 42%,
            rgba(0,0,0,.25) 100%
        );
}

.hero-slide .container{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:780px;
    padding:40px 0;
}

.hero-subtitle{
    display:inline-flex;
    align-items:center;
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    border-left:4px solid var(--primary);
    padding-left:18px;
    margin-bottom:18px;
}

.hero-content h1{
    color:#fff;
    font-size:62px;
    font-weight:800;
    line-height:1.12;
    margin-bottom:22px;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    max-width:680px;
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:180px;
    padding:15px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}


/* =========================================================
   SWIPER NAVIGATION
   ========================================================= */

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
    transition:.3s ease;
}

.heroSwiper .swiper-button-prev{
    left:25px;
}

.heroSwiper .swiper-button-next{
    right:25px;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after{
    font-size:17px;
    font-weight:700;
}


/* =========================================================
   SWIPER PAGINATION
   ========================================================= */

.heroSwiper .swiper-pagination{
    bottom:25px;
}

.heroSwiper .swiper-pagination-bullet{
    width:9px;
    height:9px;
    background:#fff;
    opacity:.65;
}

.heroSwiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:var(--primary);
    opacity:1;
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section{
    background:#fff;
}

.about-image-wrapper{
    position:relative;
    padding-right:35px;
    padding-bottom:35px;
}

.about-image{
    overflow:hidden;
    border-radius:15px;
}

.about-image img{
    width:100%;
   
    object-fit:contain;
    border-radius:15px;
    transition:.6s ease;
}

.about-image:hover img{
    transform:scale(1.04);
}

.about-experience{
    position:absolute;
    right:0;
    bottom:0;
    width:185px;
    min-height:145px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.about-experience strong{
    color:#fff;
    font-size:46px;
    line-height:1;
    font-weight:800;
}

.about-experience span{
    margin-top:8px;
    color:#fff;
    font-size:13px;
}

.about-content{
    padding-left:15px;
}

.about-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.about-content h2 span{
    display:block;
    color:var(--primary);
}

.about-content p{
    font-size:15px;
    line-height:1.8;
}

.about-intro{
    font-size:17px !important;
    color:#444 !important;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin:30px 0;
}

.about-feature{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.about-feature > i{
    width:48px;
    height:48px;
    min-width:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(228,0,43,.08);
    color:var(--primary);
    font-size:19px;
}

.about-feature h4{
    font-size:16px;
    margin-bottom:4px;
}

.about-feature p{
    font-size:13px !important;
    line-height:1.6 !important;
    margin:0;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-choose-section{
    background:#f7f7f7;
}

.why-content{
    padding-right:35px;
}

.why-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.why-content h2 span{
    display:block;
    color:var(--primary);
}

.why-intro{
    font-size:15px;
    line-height:1.8;
    margin-bottom:30px;
}

.why-list{
    margin-bottom:30px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:17px;
    margin-bottom:24px;
}

.why-icon{
    width:52px;
    height:52px;
    min-width:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#fff;
    color:var(--primary);
    font-size:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s ease;
}

.why-item:hover .why-icon{
    background:var(--primary);
    color:#fff;
    transform:translateY(-3px);
}

.why-item h4{
    font-size:17px;
    margin-bottom:4px;
}

.why-item p{
    font-size:13px;
    line-height:1.6;
    margin:0;
}

.why-image-wrapper{
    position:relative;
    padding-left:25px;
}

.why-image-wrapper img{
    width:100%;
   
    object-fit:cover;
    border-radius:15px;
}

.why-badge{
    position:absolute;
    left:0;
    bottom:40px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:17px 20px;
    background:#111;
    border-left:4px solid var(--primary);
    border-radius:8px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.why-badge > i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
}

.why-badge strong{
    display:block;
    color:#fff;
    font-size:14px;
}

.why-badge span{
    display:block;
    color:#aaa;
    font-size:11px;
}


/* =========================================================
   TRUST STATS
   ========================================================= */

.trust-stats{
    margin-top:70px;
    overflow:hidden;
    background:#fff;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.07);
}

.stat-box{
    min-height:120px;
    height:100%;
    display:flex;
    align-items:center;
    gap:17px;
    padding:25px;
    border-right:1px solid #eee;
    transition:.35s ease;
}

.stat-box:hover{
    background:#111;
}

.stat-icon{
    width:55px;
    height:55px;
    min-width:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(228,0,43,.08);
    color:var(--primary);
    font-size:20px;
}

.stat-box h3{
    font-size:20px;
    margin-bottom:2px;
}

.stat-box p{
    margin:0;
    font-size:12px;
}

.stat-box:hover h3,
.stat-box:hover p{
    color:#fff;
}

.stat-box:hover .stat-icon{
    background:var(--primary);
    color:#fff;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section{
    background:#fff;
}

.services-section .section-title p{
    max-width:700px;
}

.service-card{
    height:100%;
    overflow:hidden;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-7px);
    border-color:transparent;
    box-shadow:0 18px 40px rgba(0,0,0,.1);
}

.service-image{
    position:relative;
    height:235px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.07);
}

.service-number{
    position:absolute;
    top:16px;
    right:16px;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.service-content{
    position:relative;
    padding:55px 25px 28px;
}

.service-icon{
    position:absolute;
    top:-29px;
    left:24px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #fff;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:20px;
    transition:.35s ease;
}

.service-card:hover .service-icon{
    background:var(--primary);
}

.service-content h3{
    font-size:19px;
    margin-bottom:10px;
}

.service-content p{
    min-height:72px;
    font-size:13px;
    line-height:1.7;
    margin-bottom:18px;
}

.service-read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    font-size:13px;
    font-weight:700;
}

.service-read-more i{
    color:var(--primary);
    transition:.3s ease;
}

.service-read-more:hover{
    color:var(--primary);
}

.service-read-more:hover i{
    transform:translateX(5px);
}

.services-bottom-btn{
    text-align:center;
    margin-top:45px;
}


/* =========================================================
   DEEP CLEANING
   ========================================================= */

.deep-cleaning-section{
    background:#f7f7f7;
}

.cleaning-card{
    height:100%;
    overflow:hidden;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    transition:.35s ease;
}

.cleaning-card:hover{
    transform:translateY(-7px);
    border-color:transparent;
    box-shadow:0 18px 40px rgba(0,0,0,.1);
}

.cleaning-image{
    position:relative;
    height:230px;
    overflow:hidden;
}

.cleaning-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.cleaning-card:hover .cleaning-image img{
    transform:scale(1.07);
}

.cleaning-content{
    position:relative;
    padding:52px 23px 25px;
}

.cleaning-icon{
    position:absolute;
    top:-28px;
    left:23px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:4px solid #fff;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:19px;
}

.cleaning-card:hover .cleaning-icon{
    background:var(--primary);
}

.cleaning-content h3{
    font-size:18px;
    margin-bottom:10px;
}

.cleaning-content p{
    min-height:65px;
    font-size:13px;
    line-height:1.7;
}

.cleaning-bottom{
    text-align:center;
    margin-top:45px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section{
    background:#111;
    overflow:hidden;
}

.process-section .section-title h2{
    color:#fff;
}

.process-section .section-title p{
    color:#aaa;
}

.process-section .section-title > span{
    color:var(--primary);
}

.process-card{
    position:relative;
    height:100%;
    padding:35px 25px;
    text-align:center;
    background:#181818;
    border:1px solid #292929;
    border-radius:12px;
    transition:.35s ease;
}

.process-card:hover{
    transform:translateY(-7px);
    border-color:var(--primary);
}

.process-number{
    position:absolute;
    top:15px;
    right:18px;
    color:#555;
    font-size:16px;
    font-weight:800;
}

.process-icon{
    width:72px;
    height:72px;
    margin:10px auto 23px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:26px;
    transition:.4s ease;
}

.process-card:hover .process-icon{
    background:#fff;
    color:var(--primary);
    transform:rotateY(180deg);
}

.process-card h3{
    color:#fff;
    font-size:19px;
    margin-bottom:10px;
}

.process-card p{
    color:#aaa;
    font-size:13px;
    line-height:1.7;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-section{
    background:#fff;
}

.testimonial-card{
    position:relative;
    height:100%;
    padding:35px 28px 28px;
    background:#f7f7f7;
    border:1px solid #e8e8e8;
    border-radius:12px;
    transition:.35s ease;
}

.testimonial-card:hover{
    transform:translateY(-7px);
    background:#fff;
    border-color:transparent;
    box-shadow:0 18px 40px rgba(0,0,0,.09);
}

.quote-icon{
    position:absolute;
    top:22px;
    right:25px;
    color:rgba(228,0,43,.12);
    font-size:42px;
}

.testimonial-stars{
    margin-bottom:17px;
}

.testimonial-stars i{
    color:#f5b301;
    font-size:13px;
    margin-right:2px;
}

.testimonial-card > p{
    color:#555;
    font-size:13px;
    line-height:1.8;
    margin-bottom:23px;
}

.testimonial-client{
    display:flex;
    align-items:center;
    gap:12px;
    padding-top:18px;
    border-top:1px solid #e5e5e5;
}

.client-avatar{
    width:48px;
    height:48px;
    min-width:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
}

.testimonial-client h4{
    font-size:15px;
    margin-bottom:2px;
}

.testimonial-client span{
    color:#888;
    font-size:11px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section{
    background:#fff;
}

.gallery-grid{
    margin-top:10px;
}

.gallery-item{
    position:relative;
    display:block;
    height:260px;
    overflow:hidden;
    background:#111;
    border-radius:10px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(228,0,43,.78);
    opacity:0;
    transition:.4s ease;
}

.gallery-overlay i{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    transform:scale(.7);
    transition:.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

.gallery-bottom{
    text-align:center;
    margin-top:45px;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section{
    background:#f7f7f7;
}

.faq-intro{
    padding-right:30px;
}

.faq-intro h2{
    font-size:40px;
    line-height:1.2;
    margin-bottom:18px;
}

.faq-intro h2 span{
    display:block;
    color:var(--primary);
}

.faq-intro > p{
    font-size:14px;
    line-height:1.8;
}

.faq-item{
    overflow:hidden;
    margin-bottom:12px;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:8px;
}

.faq-item.active{
    border-color:var(--primary);
}

.faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:18px 20px;
    border:0;
    background:#fff;
    color:#111;
    text-align:left;
    font-size:14px;
    font-weight:700;
}

.faq-question i{
    width:30px;
    height:30px;
    min-width:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:11px;
    transition:.3s ease;
}

.faq-item.active .faq-question i{
    background:var(--primary);
    transform:rotate(180deg);
}

.faq-answer{
    display:none;
    padding:0 20px 18px;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-answer p{
    margin:0;
    color:#666;
    font-size:13px;
    line-height:1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
    background:#111;
    color:#fff;
}

.footer-main{
    padding:70px 0 55px;
}

.footer-widget{
    height:100%;
}

.footer-logo{
    display:inline-block;
    margin-bottom:20px;
}

.footer-logo img{
    max-width:210px;
    height:auto;
}

.footer-widget > p{
    color:#aaa;
    font-size:13px;
    line-height:1.8;
}

.footer-widget h3{
    position:relative;
    padding-bottom:12px;
    margin-bottom:23px;
    color:#fff;
    font-size:18px;
}

.footer-widget h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:35px;
    height:3px;
    background:var(--primary);
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#aaa;
    font-size:13px;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:9px;
    margin-top:20px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #333;
    border-radius:50%;
    color:#fff;
}

.footer-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:17px;
}

.footer-contact-item > i{
    width:20px;
    margin-top:3px;
    color:var(--primary);
}

.footer-contact-item p{
    margin:0;
    color:#aaa;
    font-size:12px;
    line-height:1.7;
}

.footer-contact-item a{
    color:#aaa;
}

.footer-contact-item a:hover{
    color:var(--primary);
}

.footer-services-bar{
    padding:18px 0;
    background:#191919;
    border-top:1px solid #292929;
    border-bottom:1px solid #292929;
}

.footer-services-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 24px;
}

.footer-services-inner strong{
    color:#fff;
    font-size:12px;
}

.footer-services-inner a{
    color:#999;
    font-size:11px;
}

.footer-services-inner a:hover{
    color:var(--primary);
}

.footer-bottom{
    padding:17px 0;
    background:#0b0b0b;
}

.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{
    margin:0;
    color:#777;
    font-size:11px;
}

.footer-bottom a{
    color:#aaa;
}

.footer-bottom a:hover{
    color:var(--primary);
}


/* =========================================================
   FLOATING WHATSAPP / CALL
   ========================================================= */

.floating-contact-buttons{
    position:fixed;
    right:20px;
    bottom:25px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.floating-contact-buttons a{
    position:relative;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:21px;
    box-shadow:0 6px 20px rgba(0,0,0,.2);
    transition:.3s ease;
}

.floating-whatsapp{
    background:#25d366;
}

.floating-call{
    background:var(--primary);
}

.floating-contact-buttons a:hover{
    color:#fff;
    transform:scale(1.08);
}

.floating-contact-buttons a span{
    position:absolute;
    right:62px;
    top:50%;
    transform:translateY(-50%);
    padding:6px 11px;
    border-radius:5px;
    background:#111;
    color:#fff;
    font-size:11px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
}

.floating-contact-buttons a:hover span{
    opacity:1;
    visibility:visible;
}


/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.inner-page-hero{
    position:relative;
    overflow:hidden;
    padding:105px 0 80px;
    background:#111;
}

.inner-page-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    right:-120px;
    top:-120px;
    border:70px solid rgba(228,0,43,.12);
    border-radius:50%;
}

.inner-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.inner-hero-content > span{
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.inner-hero-content h1{
    color:#fff;
    font-size:48px;
    line-height:1.2;
    margin:15px 0;
}

.inner-hero-content h1 strong{
    color:var(--primary);
}

.inner-hero-content p{
    max-width:680px;
    color:#aaa;
    line-height:1.8;
}

.breadcrumb-area{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    color:#999;
    font-size:12px;
}

.breadcrumb-area a{
    color:#fff;
}

.breadcrumb-area i{
    color:var(--primary);
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page-section{
    background:#fff;
}

.about-page-image{
    position:relative;
    padding-right:30px;
}

.about-page-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:12px;
}

.about-experience-box{
    position:absolute;
    right:0;
    bottom:30px;
    display:flex;
    flex-direction:column;
    padding:18px 25px;
    border-radius:8px;
    background:var(--primary);
    color:#fff;
}

.about-experience-box strong{
    color:#fff;
    font-size:20px;
}

.about-experience-box span{
    color:#fff;
    font-size:11px;
}

.about-page-content h2{
    font-size:40px;
    line-height:1.25;
    margin:12px 0 20px;
}

.about-page-content h2 strong{
    display:block;
    color:var(--primary);
}

.about-page-content p{
    color:#666;
    font-size:14px;
    line-height:1.8;
}

.about-check-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px;
    margin-top:25px;
}

.about-check-list div{
    color:#222;
    font-size:13px;
    font-weight:600;
}

.about-check-list i{
    margin-right:7px;
    color:var(--primary);
}


/* =========================================================
   MISSION
   ========================================================= */

.mission-section{
    background:#f7f7f7;
}

.mission-card{
    height:100%;
    display:flex;
    gap:20px;
    padding:32px;
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    transition:.35s ease;
}

.mission-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.mission-icon{
    width:62px;
    height:62px;
    min-width:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:22px;
}

.mission-card span{
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.mission-card h3{
    font-size:19px;
    margin:7px 0 10px;
}

.mission-card p{
    color:#666;
    font-size:13px;
    line-height:1.7;
    margin:0;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-section{
    background:#f7f7f7;
}

.contact-info-card{
    height:100%;
    padding:30px 20px;
    text-align:center;
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    transition:.35s ease;
}

.contact-info-card:hover{
    transform:translateY(-6px);
    border-color:var(--primary);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-info-icon{
    width:62px;
    height:62px;
    margin:0 auto 17px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:21px;
}

.contact-info-card:hover .contact-info-icon{
    background:var(--primary);
}

.contact-info-icon.whatsapp-icon{
    background:#25d366;
}

.contact-info-card h3{
    font-size:17px;
    margin-bottom:10px;
}

.contact-info-card p{
    color:#666;
    font-size:12px;
    line-height:1.7;
    margin:0;
}

.contact-info-card p a{
    color:#111;
    font-weight:600;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-section{
    background:#fff;
}

.contact-form-box{
    height:100%;
    padding:38px;
    border-radius:12px;
    background:#f7f7f7;
}

.contact-form-box h2{
    font-size:34px;
    margin:10px 0 15px;
}

.contact-form-box h2 strong{
    color:var(--primary);
}

.contact-form-box > p{
    color:#666;
    font-size:13px;
    line-height:1.8;
}

.enquiry-form label{
    display:block;
    margin-bottom:6px;
    color:#222;
    font-size:12px;
    font-weight:600;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
    width:100%;
    padding:12px 14px;
    outline:none;
    border:1px solid #ddd;
    border-radius:6px;
    background:#fff;
    color:#333;
    font-size:13px;
    transition:.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus{
    border-color:var(--primary);
}

.enquiry-form textarea{
    min-height:130px;
    resize:vertical;
}


/* =========================================================
   GOOGLE MAP
   ========================================================= */

.google-map{
    width:100%;
    height:460px;
    overflow:hidden;
    border-radius:12px;
    box-shadow:var(--shadow);
}

.google-map iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}


/* =========================================================
   BUSINESS HOURS
   ========================================================= */

.business-hours-section{
    background:#111;
}

.business-hours-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.business-hours-box span{
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.business-hours-box h2{
    color:#fff;
    font-size:30px;
    margin:8px 0;
}

.business-hours-box p{
    color:#999;
    font-size:13px;
    margin:0;
}

.business-hours-buttons{
    display:flex;
    gap:12px;
}

.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 24px;
    border:1px solid var(--primary);
    border-radius:5px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.outline-btn:hover{
    background:var(--primary);
    color:#fff;
}


/* =========================================================
   FULL GALLERY PAGE
   ========================================================= */

.full-gallery-section{
    background:#fff;
}

.full-gallery-item{
    position:relative;
    display:block;
    height:300px;
    overflow:hidden;
    background:#111;
    border-radius:10px;
}

.full-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.full-gallery-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(228,0,43,.82);
    opacity:0;
    transition:.4s ease;
}

.full-gallery-overlay > div{
    text-align:center;
    color:#fff;
    transform:translateY(15px);
    transition:.4s ease;
}

.full-gallery-overlay i{
    display:block;
    margin-bottom:10px;
    font-size:28px;
}

.full-gallery-overlay span{
    font-size:13px;
    font-weight:600;
}

.full-gallery-item:hover img{
    transform:scale(1.08);
}

.full-gallery-item:hover .full-gallery-overlay{
    opacity:1;
}

.full-gallery-item:hover .full-gallery-overlay > div{
    transform:translateY(0);
}

.gallery-page-cta{
    margin-top:55px;
    padding:45px 25px;
    text-align:center;
    background:#111;
    border-radius:10px;
}

.gallery-page-cta h3{
    color:#fff;
    font-size:27px;
    margin-bottom:10px;
}

.gallery-page-cta p{
    color:#999;
    font-size:13px;
}


/* =========================================================
   ALL SERVICES PAGE
   ========================================================= */

.all-services-section{
    background:#f7f7f7;
}

.service-page-card{
    height:100%;
    overflow:hidden;
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    transition:.35s ease;
}

.service-page-card:hover{
    transform:translateY(-7px);
    box-shadow:0 15px 35px rgba(0,0,0,.09);
}

.service-page-image{
    position:relative;
    height:235px;
    overflow:hidden;
}

.service-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.service-page-card:hover .service-page-image img{
    transform:scale(1.07);
}

.service-page-image span{
    position:absolute;
    top:15px;
    left:15px;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.service-page-content{
    padding:25px;
}

.service-page-content h3{
    font-size:19px;
    margin-bottom:10px;
}

.service-page-content p{
    color:#666;
    font-size:13px;
    line-height:1.7;
}

.deep-cleaning-intro{
    background:#111;
}

.deep-cleaning-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.deep-cleaning-box span{
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.deep-cleaning-box h2{
    color:#fff;
    font-size:30px;
    margin:8px 0;
}

.deep-cleaning-box h2 strong{
    color:var(--primary);
}

.deep-cleaning-box p{
    color:#999;
    font-size:13px;
    margin:0;
}


/* =========================================================
   SERVICE DETAIL
   ========================================================= */

.service-detail-hero{
    background:#111;
    padding:100px 0 80px;
}

.service-detail-hero-content{
    max-width:850px;
}

.service-detail-hero-content > span{
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.service-detail-hero-content h1{
    color:#fff;
    font-size:50px;
    line-height:1.2;
    margin:15px 0;
}

.service-detail-hero-content h1 strong{
    color:var(--primary);
}

.service-detail-hero-content p{
    max-width:700px;
    color:#aaa;
    line-height:1.8;
}

.service-detail-section{
    background:#fff;
}

.service-detail-image,
.benefits-image{
    overflow:hidden;
    border-radius:12px;
}

.service-detail-image img,
.benefits-image img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.service-detail-content h2,
.service-benefits-content h2{
    font-size:38px;
    line-height:1.25;
    margin:12px 0 20px;
}

.service-detail-content h2 strong,
.service-benefits-content h2 strong{
    display:block;
    color:var(--primary);
}

.service-detail-content p,
.service-benefits-content p{
    color:#666;
    font-size:14px;
    line-height:1.8;
}

.service-check-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:13px;
    margin-top:25px;
}

.service-check-list div{
    color:#222;
    font-size:13px;
    font-weight:600;
}

.service-check-list i{
    margin-right:7px;
    color:var(--primary);
}


/* =========================================================
   SERVICE MINI CARDS
   ========================================================= */

.service-pests-section{
    background:#f7f7f7;
}

.service-mini-card{
    height:100%;
    padding:30px 22px;
    text-align:center;
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    transition:.35s ease;
}

.service-mini-card:hover{
    transform:translateY(-6px);
    border-color:var(--primary);
    box-shadow:0 12px 30px rgba(0,0,0,.07);
}

.service-mini-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:22px;
}

.service-mini-card:hover .service-mini-icon{
    background:var(--primary);
}

.service-mini-card h3{
    font-size:18px;
    margin-bottom:8px;
}

.service-mini-card p{
    color:#666;
    font-size:13px;
    line-height:1.7;
}


/* =========================================================
   SERVICE PROCESS
   ========================================================= */

.service-process-section{
    background:#fff;
}

.service-process-section .process-card{
    height:100%;
    padding:30px 22px;
    text-align:left;
    background:#f7f7f7;
    border:1px solid #eee;
    border-radius:10px;
}

.service-process-section .process-number{
    position:static;
    color:var(--primary);
    font-size:27px;
    margin-bottom:12px;
}

.service-process-section .process-card h3{
    color:#111;
}

.service-process-section .process-card p{
    color:#666;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.service-benefits-section{
    background:#f7f7f7;
}

.benefits-image img{
    height:480px;
}

.benefit-list{
    margin-top:25px;
}

.benefit-list div{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:13px;
    color:#333;
    font-size:13px;
    font-weight:600;
}

.benefit-list i{
    width:22px;
    height:22px;
    min-width:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:9px;
}


/* =========================================================
   SERVICE CTA
   ========================================================= */

.service-cta-section{
    background:#111;
}

.service-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.service-cta-box span{
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}

.service-cta-box h2{
    color:#fff;
    font-size:30px;
    margin:8px 0;
}

.service-cta-box p{
    color:#999;
    font-size:13px;
    margin:0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1199px){

    .container{
        max-width:1140px;
    }

    .header-wrapper{
        min-height:95px;
    }

    .site-logo img{
        height:70px;
        max-width:200px;
    }

    .main-menu{
        gap:2px;
    }

    .main-menu > li > a{
        padding:9px 10px;
        font-size:14px;
    }

    .heroSwiper,
    .hero-slide{
        height:620px;
    }

    .hero-content h1{
        font-size:54px;
    }

    .section-title h2,
    .about-content h2,
    .why-content h2{
        font-size:38px;
    }

}


@media(max-width:991px){

    section{
        padding:75px 0;
    }

    .container{
        max-width:960px;
    }

    /* Header */

    .header-wrapper{
        min-height:85px;
    }

    .site-logo img{
        height:65px;
    }

    .menu-toggle{
        display:flex;
        flex:0 0 auto;
    }

    .main-navigation{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        display:block;
        padding:0 20px 20px;
        background:#fff;
        box-shadow:0 15px 30px rgba(0,0,0,.1);
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:.3s ease;
    }

    .main-navigation.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .main-menu{
        display:block;
        width:100%;
    }

    .main-menu > li{
        border-bottom:1px solid #eee;
    }

    .main-menu > li > a{
        justify-content:space-between;
        padding:14px 5px;
        font-size:15px;
    }

    .dropdown-menu{
        position:static;
        min-width:100%;
        padding:0 0 8px;
        border:0;
        border-radius:0;
        box-shadow:none;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
    }

    .has-dropdown.open > .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{
        padding:9px 18px;
        white-space:normal;
        font-size:13px;
    }

    .has-dropdown:hover > .dropdown-menu{
        display:none;
    }

    .has-dropdown.open:hover > .dropdown-menu{
        display:block;
    }

    .heroSwiper,
    .hero-slide{
        height:570px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }

    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next{
        display:none;
    }

    .about-image-wrapper{
        margin-bottom:40px;
    }

    .about-content{
        padding-left:0;
    }

    .why-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .why-image-wrapper{
        padding-left:0;
    }

    .why-image-wrapper img{
        height:500px;
    }

    .trust-stats{
        margin-top:50px;
    }

    .stat-box{
        border-bottom:1px solid #eee;
    }

    .business-hours-box,
    .service-cta-box{
        align-items:flex-start;
        flex-direction:column;
    }

}


@media(max-width:767px){

    section{
        padding:60px 0;
    }

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:31px;
    }

    .section-title p{
        font-size:13px;
    }

    /* Header */

    .header-wrapper{
        min-height:78px;
    }

    .site-logo img{
        height:58px;
        max-width:175px;
    }

    .main-navigation{
        padding-left:16px;
        padding-right:16px;
    }

    /* Hero */

    .heroSwiper,
    .hero-slide{
        height:590px;
    }

    .hero-content{
        padding:30px 0;
    }

    .hero-subtitle{
        font-size:11px;
        letter-spacing:1.5px;
        margin-bottom:14px;
    }

    .hero-content h1{
        font-size:39px;
        line-height:1.12;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-btn{
        min-width:175px;
        padding:13px 22px;
    }

    /* About */

    .about-image-wrapper{
        padding-right:15px;
        padding-bottom:20px;
    }

    .about-image img{
        height:350px;
    }

    .about-experience{
        width:145px;
        min-height:115px;
    }

    .about-experience strong{
        font-size:34px;
    }

    .about-content h2,
    .why-content h2{
        font-size:31px;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:18px;
    }

    /* Why */

    .why-image-wrapper img{
        height:360px;
    }

    .why-badge{
        bottom:20px;
    }

    /* Stats */

    .stat-box{
        min-height:100px;
        padding:18px;
    }

    /* Cards */

    .service-image,
    .cleaning-image,
    .service-page-image{
        height:220px;
    }

    .service-content{
        padding-left:20px;
        padding-right:20px;
    }

    /* Process */

    .process-card{
        padding:30px 20px;
    }

    /* Gallery */

    .gallery-item,
    .full-gallery-item{
        height:230px;
    }

    /* FAQ */

    .faq-intro{
        padding-right:0;
        margin-bottom:30px;
    }

    .faq-intro h2{
        font-size:31px;
    }

    /* Footer */

    .footer-main{
        padding:55px 0 35px;
    }

    .footer-bottom-inner{
        align-items:flex-start;
        flex-direction:column;
    }

    /* Floating */

    .floating-contact-buttons{
        right:14px;
        bottom:16px;
    }

    .floating-contact-buttons a{
        width:48px;
        height:48px;
        font-size:19px;
    }

    .floating-contact-buttons a span{
        display:none;
    }

    /* Inner page */

    .inner-page-hero{
        padding:75px 0 60px;
    }

    .inner-hero-content h1{
        font-size:36px;
    }

    /* About page */

    .about-page-image{
        padding-right:15px;
        margin-bottom:35px;
    }

    .about-page-image img{
        height:350px;
    }

    .about-page-content h2{
        font-size:31px;
    }

    .about-check-list{
        grid-template-columns:1fr;
    }

    /* Mission */

    .mission-card{
        padding:25px;
        flex-direction:column;
    }

    /* Contact */

    .contact-form-box{
        padding:25px 20px;
    }

    .contact-form-box h2{
        font-size:29px;
    }

    .google-map{
        height:350px;
    }

    .business-hours-buttons{
        width:100%;
        flex-direction:column;
    }

    /* Service Detail */

    .service-detail-hero{
        padding:75px 0 60px;
    }

    .service-detail-hero-content h1{
        font-size:36px;
    }

    .service-detail-image img,
    .benefits-image img{
        height:350px;
    }

    .service-detail-content h2,
    .service-benefits-content h2{
        font-size:30px;
    }

    .service-check-list{
        grid-template-columns:1fr;
    }

    .service-cta-box h2{
        font-size:25px;
    }

    .deep-cleaning-box{
        align-items:flex-start;
        flex-direction:column;
    }

}


@media(max-width:480px){

    .site-logo img{
        height:52px;
        max-width:155px;
    }

    .menu-toggle{
        width:42px;
        height:42px;
    }

    .heroSwiper,
    .hero-slide{
        height:560px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:13px;
    }

    .hero-btn{
        width:100%;
    }

    .about-image img{
        height:300px;
    }

    .about-experience{
        width:130px;
        min-height:100px;
    }

    .about-experience strong{
        font-size:30px;
    }

    .why-image-wrapper img{
        height:300px;
    }

    .why-badge{
        padding:13px 15px;
    }

    .why-badge > i{
        width:35px;
        height:35px;
    }

    .floating-contact-buttons{
        right:10px;
    }

}


/* =========================================================
   UTILITY
   ========================================================= */

.text-center{
    text-align:center;
}

.w-100{
    width:100%;
}

.d-none{
    display:none !important;
}

.clearfix::after{
    content:"";
    display:block;
    clear:both;
}


/* =========================================================
   END
   ========================================================= */
   /* =========================================
   HEADER TO HERO GAP FIX
========================================= */

.main-header{
    margin-bottom:0 !important;
}

.hero-section{
    margin-top:0 !important;
    padding-top:0 !important;
}

.heroSwiper{
    margin-top:0 !important;
}

.hero-slide{
    margin-top:0 !important;
}