/* =========================================
   ROOT VARIABLES
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');
html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}



h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'INTER', sans-serif;
    font-weight:600;
}
:root {

    /* Brand Colors */
    --primary-color: #282828;
    --secondary-color: #505050;
    --background-color: #F8F3F0;
    --accent-color: #0038D1;
    --white-color: #FFFFFF;
    --heading-font: "Space Grotesk", sans-serif;

    --body-font: "Inter", sans-serif;


    /* Layout */
    --container-width: 1200px;


    /* Spacing */
    --section-padding: 100px;


    /* Effects */
    --border-radius: 12px;
    --transition: 0.3s ease;

}



/* =========================================
   RESET CSS
========================================= */


*,
*::before,
*::after {

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family: "Inter", sans-serif;;
    background:var(--background-color);
    color:var(--primary-color);
    line-height:1.6;
    overflow-x:hidden;

}


img {

    max-width:100%;
    display:block;

}


a {

    text-decoration:none;
    color:inherit;

}


ul {

    list-style:none;

}


button,
input,
textarea {

    font-family:inherit;

}



/* =========================================
   CONTAINER
========================================= */


.container {

    width:100%;
    max-width:var(--container-width);
    margin:auto;
    padding:0 20px;

}



/* =========================================
   SECTION COMMON
========================================= */


.section {

    padding:var(--section-padding) 0;

}


.section-title {

    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:var(--primary-color);

}


.section-subtitle {

    margin-top:15px;
    font-size:18px;
    color:var(--secondary-color);
    max-width:650px;

}



/* =========================================
   BUTTON STYLE
========================================= */


.btn {

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 32px;

    background:var(--accent-color);
    color:var(--white-color);

    border-radius:var(--border-radius);

    font-size:16px;
    font-weight:600;

    transition:var(--transition);

}


.btn:hover {

    transform:translateY(-3px);

}



/* =========================================
   FLEX UTILITIES
========================================= */


.flex {

    display:flex;

}


.flex-center {

    display:flex;
    align-items:center;
    justify-content:center;

}


.flex-between {

    display:flex;
    align-items:center;
    justify-content:space-between;

}



/* =========================================
   RESPONSIVE
========================================= */


@media(max-width:1024px){


    :root{

        --section-padding:70px;

    }


    .section-title{

        font-size:40px;

    }


}



@media(max-width:768px){


    :root{

        --section-padding:60px;

    }


    .container{

        padding:0 16px;

    }


    .section-title{

        font-size:34px;

    }


    .section-subtitle{

        font-size:16px;

    }


}



@media(max-width:480px){


    .section-title{

        font-size:28px;

    }


    .btn{

        padding:12px 24px;
        font-size:14px;

    }


}
/*==================================================
                HEADER
==================================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    background:rgba(248,243,240,0.96);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    transition:.35s ease;

}

.header.scrolled{

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar{

    height:90px;

}

.nav-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;

}

/*==================================================
                LOGO
==================================================*/

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    height:48px;
    width:auto;

}

.logo h2{

    font-size:24px;
    color:var(--primary-color);
    font-weight:700;
    letter-spacing:-0.5px;

}

.logo span{

    display:block;
    font-size:13px;
    color:var(--secondary-color);
    margin-top:3px;

}

/*==================================================
                NAVIGATION
==================================================*/

.nav-menu{

    display:flex;
    align-items:center;
    gap:45px;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    position:relative;

    font-size:16px;
    font-weight:500;

    color:var(--primary-color);

    transition:var(--transition);

    padding:5px 0;

}

.nav-menu a::after{

    content:"";

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--accent-color);

    transition:.35s ease;

}

.nav-menu a:hover{

    color:var(--accent-color);

}

.nav-menu a:hover::after{

    width:100%;

}

/* Active Link */

.nav-menu .active{

    color:var(--accent-color);

}

.nav-menu .active::after{

    width:100%;

}

/*==================================================
                HEADER CTA
==================================================*/

.header-btn{

    display:flex;
    align-items:center;
    gap:15px;

}

.header-btn .btn{

    min-width:165px;
    height:52px;

    border-radius:8px;

    font-size:15px;
    font-weight:600;

    box-shadow:0 12px 24px rgba(0,56,209,.18);

}

.header-btn .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 30px rgba(0,56,209,.25);

}

/*==================================================
                HAMBURGER
==================================================*/

.hamburger{

    width:48px;
    height:48px;

    display:none;

    cursor:pointer;

    align-items:center;
    justify-content:center;

}

.hamburger span{

    position:relative;

    width:26px;
    height:2px;

    background:var(--primary-color);

    transition:.35s;

}

.hamburger span::before,
.hamburger span::after{

    content:"";

    position:absolute;

    width:26px;
    height:2px;

    background:var(--primary-color);

    transition:.35s;

}

.hamburger span::before{

    top:-8px;

}

.hamburger span::after{

    top:8px;

}

/* Open */

.hamburger.active span{

    background:transparent;

}

.hamburger.active span::before{

    top:0;
    transform:rotate(45deg);

}

.hamburger.active span::after{

    top:0;
    transform:rotate(-45deg);

}

/*==================================================
            MOBILE NAVIGATION
==================================================*/

@media(max-width:991px){

.nav-menu{

    position:fixed;

    top:90px;
    left:-100%;

    width:100%;
    height:calc(100vh - 90px);

    background:var(--background-color);

    flex-direction:column;

    justify-content:flex-start;

    padding-top:60px;

    gap:35px;

    transition:.45s ease;

}

.nav-menu.active{

    left:0;

}

.nav-menu a{

    font-size:18px;

}

.header-btn{

    display:none;

}

.hamburger{

    display:flex;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.navbar{

    height:80px;

}

.logo img{

    height:42px;

}

.logo h2{

    font-size:20px;

}

.nav-menu{

    top:80px;
    height:calc(100vh - 80px);

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.logo h2{

    font-size:18px;

}

.logo span{

    font-size:11px;

}

}
/*==================================================
                HERO SECTION
==================================================*/

.hero{

    padding-top:170px;
    padding-bottom:90px;

    overflow:hidden;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    align-items:center;

    gap:40px;

}

/*==========================
        LEFT
===========================*/

.hero-tag{

    display:inline-block;

    color:var(--accent-color);

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:34px;

    line-height:1.08;

    font-weight:500;

    color:var(--primary-color);

    margin-bottom:28px;

    letter-spacing:-2px;
    line-height: 60px;

}
.hero-content h1 span{

    color:var(--accent-color);
    font-weight:700;
    font-size:54px;
}
.hero-content p{

    max-width:540px;

    font-size:18px;

    color:var(--secondary-color);

    line-height:1.9;

    margin-bottom:45px;

}

/*==========================
        BUTTONS
===========================*/

.hero-buttons{

    display:flex;

    gap:20px;

    align-items:center;

}
.whatsapp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

}

.whatsapp-btn i{

    font-size:20px;

    line-height:1;

}
.whatsapp-btn{
    
    background:#25D366;

    color:#fff;
}
.btn-outline{

    background:transparent;

    border:2px solid var(--accent-color);

    color:var(--accent-color);

}

.btn-outline:hover{

    background:var(--accent-color);

    color:#fff;

}

/*==========================
        IMAGE
===========================*/

.hero-image{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    position:relative;

}

.hero-image img{

    max-width:620px;

    animation:float 4s ease-in-out infinite;

}

/*==========================
        FLOAT
===========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
            TABLET
==================================================*/

@media(max-width:991px){

.hero{

    padding-top:150px;

}

.hero-wrapper{

    grid-template-columns:2fr;

    text-align:center;

}

.hero-content p{

    margin:auto auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.hero-image{

    justify-content:center;

    margin-top:50px;

}

.hero-image img{

    max-width:500px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.hero{

    padding-top:130px;

}

.hero-content h1{

    font-size:48px;

}

.hero-content p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

    width:100%;

}

.hero-buttons .btn{

    width:100%;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.hero{

    padding-top:110px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:15px;

}

.hero-image img{

    max-width:340px;

}

}
/*==================================================
                SERVICES
==================================================*/

.services{

    background:#fff;

}

/* Heading */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    color:var(--accent-color);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

    margin-bottom:16px;

}

.section-title{

    margin-bottom:18px;

}

.section-subtitle{

    max-width:650px;

    margin:auto;

}


/* Grid */

.services-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:0;

}


/* Card */

.service-card{

    padding:10px 25px 10px;

    border-right:1px solid #e7e7e7;

    transition:.35s;

    position:relative;

}

.service-card:last-child{

    border-right:none;

}

.service-card h3{

    font-size:21px;

    line-height:1.4;

    color:var(--primary-color);

    margin-bottom:18px;

    font-weight:700;

}

.service-card p{

    color:var(--secondary-color);

    line-height:1.8;

    font-size:15px;

}


/* Hover */

.service-card:hover{

    transform:translateY(-10px);

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    bottom:-20px;

    width:100%;

    height:3px;

    background:var(--accent-color);

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}
@media(max-width:991px){

.services-grid{

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    border:1px solid #ececec;

    border-radius:12px;

    padding:35px 25px;

}

}
@media(max-width:768px){

.section-heading{

    margin-bottom:45px;

}

.services-grid{

    grid-template-columns:1fr;

}

.service-card{

    text-align:center;

    border-right:none;

}

}
/*=========================================
            OFFER SECTION
=========================================*/

.offers{

    background:var(--background-color);

}

.offerSlider{

    padding:10px 5px 60px;

}

.offer-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.offer-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.offer-badge{

    display:inline-block;

    background:var(--accent-color);

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:25px;

}

.offer-card h3{

    font-size:28px;

    color:var(--primary-color);

    margin-bottom:15px;

    line-height:1.3;

}

.offer-card p{

    color:var(--secondary-color);

    line-height:1.8;

    margin-bottom:35px;

}

.offer-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.offer-bottom h4{

    color:var(--accent-color);

    font-size:34px;

    font-weight:700;

}

.offer-btn{

    font-weight:600;

    color:var(--accent-color);

    transition:.3s;

}

.offer-btn:hover{

    letter-spacing:.5px;

}

/* Pagination */

.offerSlider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    opacity:1;

    background:#cfcfcf;

}

.offerSlider .swiper-pagination-bullet-active{

    background:var(--accent-color);

}
@media(max-width:768px){

.offer-card{

    padding:30px;

}

.offer-card h3{

    font-size:24px;

}

.offer-bottom{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

}

}
/*==================================================
                WHY CHOOSE US
==================================================*/

.why-us{

    background:#fff;

}

.why-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* Left */

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/* Right */

.why-text{

    color:var(--secondary-color);

    font-size:17px;

    line-height:1.9;

    margin:25px 0 45px;

}

/* Grid */

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/* Card */

.why-card{

    display:flex;

    gap:18px;

    padding:28px;

    background:#fff;

    border-radius:18px;

    border:1px solid #ececec;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent-color);

    box-shadow:0 18px 40px rgba(0,56,209,.10);

}

.why-number{

    min-width:55px;

    height:55px;

    border-radius:50%;

    background:var(--accent-color);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:18px;

}

.why-card h4{

    margin-bottom:10px;

    font-size:20px;

    color:var(--primary-color);

}

.why-card p{

    color:var(--secondary-color);

    line-height:1.7;

    font-size:15px;

}
/* Tablet */

@media(max-width:991px){

.why-wrapper{

    grid-template-columns:1fr;

}

.why-content{

    text-align:center;

}

.why-text{

    max-width:700px;

    margin:25px auto 40px;

}

.why-grid{

    margin-top:30px;

}

}

/* Mobile */

@media(max-width:768px){

.why-grid{

    grid-template-columns:1fr;

}

.why-card{

    text-align:left;

}

}

@media(max-width:480px){

.why-wrapper{

    gap:45px;

}

.why-card{

    padding:22px;

}

.why-card h4{

    font-size:18px;

}

}
/*=========================================
            PROCESS SECTION
=========================================*/



.process-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

    margin-top:70px;

}

/* Connecting Line */

.process-wrapper::before{

    content:"";

    position:absolute;

    top:40px;
    left:8%;

    width:84%;
    height:2px;

    background:#e6e6e6;

    z-index:0;

}

/* Card */

.process-item{

    position:relative;

    background:#fff;

    text-align:center;

    padding:25px;

    z-index:1;

}

.process-number{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    background:var(--accent-color);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:700;

    border:8px solid #fff;

    box-shadow:0 15px 35px rgba(0,56,209,.18);

}

.process-item h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--primary-color);

}

.process-item p{

    font-size:15px;

    line-height:1.8;

    color:var(--secondary-color);

}

/* Hover */

.process-item:hover .process-number{

    transform:scale(1.08);

    transition:.35s;

}

.process-item:hover h3{

    color:var(--accent-color);

}
/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.process-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.process-wrapper::before{

    display:none;

}

}

@media(max-width:768px){

.process-wrapper{

    grid-template-columns:1fr;

    gap:40px;

}

.process-item{

    max-width:450px;

    margin:auto;

}

}
/*=========================================
            CONTACT CTA
=========================================*/

.cta{

    padding:90px 0;

    background:var(--accent-color);

    overflow:hidden;

}

.cta-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.cta-content{

    max-width:650px;

}

.cta .section-tag{

    color:rgba(255,255,255,.75);

}

.cta-content h2{

    color:#fff;

    font-size:56px;

    line-height:1.15;

    margin:18px 0 20px;

}

.cta-content p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    font-size:18px;

}

.cta-action{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:25px;

}

.cta .btn{

    background:#fff;

    color:var(--accent-color);

    min-width:220px;

    height:58px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.cta .btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.cta-phone{

    color:#fff;

    font-size:28px;

    font-weight:600;

    transition:.3s;

}

.cta-phone:hover{

    opacity:.8;

}
/*=========================================
        CTA RESPONSIVE
=========================================*/

@media(max-width:991px){

.cta-wrapper{

    flex-direction:column;

    text-align:center;

}

.cta-action{

    align-items:center;

}

}

@media(max-width:768px){

.cta{

    padding:70px 0;

}

.cta-content h2{

    font-size:40px;

}

.cta-content p{

    font-size:16px;

}

.cta-phone{

    font-size:22px;

}

}

@media(max-width:480px){

.cta-content h2{

    font-size:32px;

}

.cta .btn{

    width:100%;

}

}
/*=========================================
                FOOTER
=========================================*/

.footer{

    background:#ffffff;

    padding:90px 0 0;

    border-top:1px solid #ececec;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

.footer-logo{

    width:180px;

    margin-bottom:25px;

}

.footer-about p{

    color:var(--secondary-color);

    line-height:1.9;

    max-width:360px;

}

.footer h4{

    margin-bottom:28px;

    font-size:22px;

    color:var(--primary-color);

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer ul li{

    color:var(--secondary-color);

}

.footer a{

    transition:.3s;

}

.footer a:hover{

    color:var(--accent-color);

    padding-left:6px;

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding:30px 0;

    border-top:1px solid #ececec;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom p{

    color:var(--secondary-color);

}

/* Social */

.social-links{

    display:flex;

    gap:14px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    font-size:20px;

}

.social-links a:hover{

    background:var(--accent-color);

    color:#fff;

    transform:translateY(-5px);

}

/*=========================================
            SCROLL TOP
=========================================*/

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    background:var(--accent-color);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;
    
    margin-bottom: 70px;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}
/*=========================================
        FOOTER RESPONSIVE
=========================================*/

@media(max-width:991px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width: 768px) {

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Company section - full width */
    .footer-about {
        grid-column: 1 / 3;
        text-align: center;
    }

    /* Quick Links - left */
    .footer-links:nth-child(2) {
        grid-column: 1;
    }

    /* Services - right */
    .footer-links:nth-child(3) {
        grid-column: 2;
    }

    /* Contact - full width */
    .footer-contact {
        grid-column: 1 / 3;
    }
}

.footer-bottom{

    flex-direction:column;

    gap:20px;

    text-align:center;

}


@media(max-width:480px){

.footer{

    padding-top:70px;

}

.footer-logo{

    width: 235px;
    margin-left: 75px;
}

}
.services-showcase{

    background:#fff;

}

.service-layout{

    display:grid;

    grid-template-columns:35% 65%;

    gap:50px;

    margin-top:70px;

}

/* Left */

.service-list{

    display:flex;

    flex-direction:column;

}

.service-item{

    padding:30px;

    border-bottom:1px solid #ececec;

    cursor:pointer;

    transition:.35s;

    position:relative;

}

.service-item span{

    font-size:14px;

    color:#999;

    font-weight:600;

}

.service-item h3{

    margin-top:8px;

    font-size:24px;

    transition:.3s;

}

.service-item::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:100%;

    background:var(--accent-color);

    transform:scaleY(0);

    transition:.35s;

}

.service-item.active::before{

    transform:scaleY(1);

}

.service-item.active{

    background:#f9f9f9;

}

.service-item.active h3{

    color:var(--accent-color);

}

/* Right */

.service-info{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.service-info img{

    width:100%;

    height:340px;

    object-fit:cover;

    border-radius:18px;

    margin-bottom:30px;

}

.service-info h3{

    font-size:34px;

    margin-bottom:20px;

}

.service-info p{

    color:var(--secondary-color);

    line-height:1.9;

    margin-bottom:30px;

}

.service-info ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}

.service-info li{

    position:relative;

    padding-left:22px;

}

.service-info li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--accent-color);

    font-weight:bold;

}
@media(max-width:991px){

.service-layout{

    grid-template-columns:1fr;

}

.service-info{

    display:none;

}

.service-item{

    padding:20px;

}

.service-item.active .mobile-content{

    display:block;

}

.mobile-content{

    display:none;

    margin-top:25px;

}

.mobile-content img{

    width:100%;

    border-radius:15px;

    margin-bottom:20px;

}

}
/*=========================================
        HERO QUICK SERVICES
=========================================*/

.hero-quick-services{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:15px;
    padding:0 40px;
    margin-top:45px;

}

.quick-service-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:20px 12px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    

}

.quick-service-card i{

    font-size:40px;

    color:var(--accent-color);

}

.quick-service-card span{

    font-size:14px;

    font-weight:600;

    color:var(--primary-color);

    line-height:1.4;

}

.quick-service-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent-color);

    box-shadow:0 18px 40px rgba(0,56,209,.12);

}

.more-card{

    background:var(--accent-color);

}

.more-card i,

.more-card span{

    color:#fff;

}


/* ============================
   Floating WhatsApp Button
============================ */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}


.combo-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    border:1px solid #e5e5e5;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.combo-card:hover{

    transform:translateY(-8px);

}

.combo-badge{

    display:inline-block;

    background:#1746D1;

    color:#fff;

    padding:6px 14px;

    border-radius:50px;

    font-size:13px;

    margin-bottom:20px;

}

.combo-card h3{

    margin-bottom:20px;

}

.combo-card ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.combo-card ul li{

    padding:8px 0;

    color:#555;

}

.combo-price{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.combo-price del{

    color:#999;

}

.combo-price h4{

    color:#1746D1;

    font-size:28px;

}

.combo-card .btn{

    width:100%;

    text-align:center;

}

.sub-service::after
.sub-service span::after{

    display:none !important;

}


/*==========================================
        POPULAR SIZE DROPDOWN
==========================================*/

.size-dropdown{
    position:relative;
    width:100%;
}

/* Selected Box */

.size-dropdown-selected{

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;
    height:55px;

    padding:0 18px;

    background:#fff;

    border:1px solid #d9e2ef;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.size-dropdown-selected:hover{

    border-color:#1746D1;

}

.size-dropdown-selected span{

    font-size:15px;
    color:#555;

}

.size-dropdown-selected i{

    color:#1746D1;
    transition:.3s;

}

.size-dropdown.active .size-dropdown-selected i{

    transform:rotate(180deg);

}

/*==========================================
        DROPDOWN MENU
==========================================*/

.size-dropdown-menu{

    position:absolute;

    top:110%;

    left:0;

    width:100%;

    background:#fff;

    border:1px solid #dfe7f5;

    border-radius:12px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    display:none;

    z-index:999;

    max-height:350px;

    overflow-y:auto;

}

.size-dropdown.active .size-dropdown-menu{

    display:contents;

}

/*==========================================
        HEADER
==========================================*/

.size-header{

    display:grid;

    grid-template-columns:2fr 1.5fr 1.5fr 1.5fr;

    padding:14px 18px;

    background:#1746D1;

    color:#fff;

    font-size:14px;

    font-weight:600;

    position:sticky;

    top:0;

    z-index:2;

}

/*==========================================
        ITEMS
==========================================*/

.size-item{

    display:grid;

    grid-template-columns:2fr 1.5fr 1.5fr 1.5fr;

    padding:14px 18px;

    border-bottom:1px solid #eee;

    cursor:pointer;

    transition:.25s;

    font-size:14px;

}

.size-item:hover{

    background:#f4f8ff;

}

.size-item span{

    color:#555;

}

.size-item:hover span{

    color:#1746D1;

    font-weight:600;

}

/*==========================================
        SCROLLBAR
==========================================*/

.size-dropdown-menu::-webkit-scrollbar{

    width:8px;

}

.size-dropdown-menu::-webkit-scrollbar-thumb{

    background:#c8d4ef;

    border-radius:20px;

}

.size-dropdown-menu::-webkit-scrollbar-thumb:hover{

    background:#1746D1;

}

/*==========================================
        MOBILE
==========================================*/

@media(max-width:768px){

.size-header,
.size-item{

    grid-template-columns:1.6fr 1fr 1fr 1fr;

    font-size:12px;

    padding:12px;

}

.size-dropdown-menu{

    max-height:280px;

}

}



.slider {
    width: 100%;
    max-width: 600px; /* Change according to your design */
    height: 400px;    /* Set your desired height */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    min-width: 100%;
    height: 400px;
    object-fit: contain; /* Use 'cover' if you want the image to fill the area */
    display: block;
}


@media (max-width: 768px) {

    .hero {
        padding: 40px 15px;
    }

    .hero-wrapper{
        display: flex;
        flex-direction: column;
    }

    .hero-content{
        order: 1;   /* Text first */
    }

    .hero-image{
        order: 2;   /* Image second */
        margin-top: 25px;
    }


    .slider {
        width: 100%;
        max-width: 100%;
    }

    .slides img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-quick-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .quick-service-card {
        width: 100%;
    }
}