/*==================================================
YESMOVE PACKERS AND MOVERS
FILE : assets/css/style.css
PART : 1
==================================================*/

/*==========================
Google Font
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
CSS Variables
==========================*/
:root{

    --primary:#0B5ED7;
    --secondary:#FF9800;
    --dark:#081F3F;
    --light:#F8FAFD;
    --white:#ffffff;
    --text:#5C6574;
    --heading:#17233D;
    --border:#E8EDF5;
    --success:#28A745;
    --danger:#DC3545;

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

    --radius:18px;

    --transition:.35s ease;

}

/*==========================
Reset
==========================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

button{

    transition:var(--transition);

}

section{

    padding:90px 0;

}

/*==========================
Scrollbar
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0848a7;

}

/*==========================
Typography
==========================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--heading);
    font-weight:700;
    line-height:1.3;

}

p{

    color:var(--text);
    margin-bottom:15px;

}

.section-tag{

    display:inline-block;
    background:#EAF2FF;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;

}

.section-title{

    font-size:42px;
    margin-bottom:15px;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#666;

}

/*==========================
Buttons
==========================*/

.btn{

    border-radius:50px;
    font-weight:600;
    padding:14px 32px;

}

.btn-warning{

    background:var(--secondary);
    border:none;
    color:#fff;

}

.btn-warning:hover{

    background:#ff8700;
    color:#fff;
    transform:translateY(-3px);

}

.btn-outline-light{

    border:2px solid #fff;
    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;
    color:var(--primary);

}

.btn-outline-primary{

    border:2px solid var(--primary);
    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);
    color:#fff;

}

/*==========================
Preloader
==========================*/

#preloader{

    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;

}

.loader{

    width:65px;
    height:65px;
    border-radius:50%;
    border:6px solid #ddd;
    border-top:6px solid var(--primary);
    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*==========================
Topbar
==========================*/

.topbar{

    background:var(--dark);
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-contact{

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

}

.top-contact a{

    color:#fff;

}

.top-contact a:hover{

    color:var(--secondary);

}

.top-contact i{

    color:var(--secondary);
    margin-right:7px;

}

.top-social{

    display:flex;
    justify-content:flex-end;
    gap:15px;

}

.top-social a{

    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;

}

.top-social a:hover{

    background:var(--secondary);
    color:#fff;
    transform:translateY(-3px);

}

/*==========================
Navbar
==========================*/

.navbar{

    padding:16px 0;
    background:#fff !important;
    transition:.4s;

}

.navbar-brand img{

    height:58px;

}

.navbar-nav .nav-link{

    color:var(--heading);
    font-weight:600;
    padding:12px 18px;
    position:relative;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:'';
    position:absolute;
    width:0;
    height:3px;
    background:var(--secondary);
    left:18px;
    bottom:0;
    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:45%;

}

.dropdown-menu{

    border:none;
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:15px;

}

.dropdown-item{

    border-radius:10px;
    padding:12px 18px;

}

.dropdown-item:hover{

    background:var(--primary);
    color:#fff;

}

/*==========================
Hero Section
==========================*/

.hero-section{

    position:relative;
    min-height:760px;
    display:flex;
    align-items:center;

    background:
    linear-gradient(rgba(8,31,63,.75),
    rgba(8,31,63,.75)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.hero-section::before{

    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(255,152,0,.20),
    transparent 40%);

}

.hero-section .container{

    position:relative;
    z-index:5;

}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,.15);

    padding:12px 22px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(12px);

}

.hero-badge i{

    color:var(--secondary);

}

.hero-section h1{

    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;

}

.hero-section h1 span{

    color:var(--secondary);

}

.hero-section p{

    color:#f3f3f3;
    max-width:650px;
    font-size:18px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.hero-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

}

.feature-item{

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

    color:#fff;
    font-weight:500;

}

.feature-item i{

    color:var(--secondary);
    font-size:20px;

}

/*==========================
END OF PART 1
PART 2 STARTS FROM
QUOTE FORM
==========================*/
/*==================================================
YESMOVE PACKERS AND MOVERS
FILE : assets/css/style.css
PART : 2
Quote Form + Stats + Services
==================================================*/

/*==========================
Quote Form
==========================*/

.quote-box{

    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    position:relative;
    overflow:hidden;

}

.quote-box::before{

    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.quote-box h3{

    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    color:var(--heading);

}

.quote-box .form-control,
.quote-box .form-select{

    height:58px;
    border:1px solid var(--border);
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    box-shadow:none;
    transition:var(--transition);

}

.quote-box textarea.form-control{

    height:130px;
    padding:18px;
    resize:none;

}

.quote-box .form-control:focus,
.quote-box .form-select:focus{

    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(11,94,215,.12);

}

.quote-box button{

    height:58px;
    border:none;
    border-radius:12px;
    font-size:17px;
    font-weight:600;

}

/*==========================
Statistics
==========================*/

.stats-section{

    background:var(--primary);
    padding:70px 0;

}

.stat-box{

    color:#fff;
    padding:20px;

}

.stat-box h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;

}

.stat-box p{

    color:rgba(255,255,255,.85);
    margin:0;
    font-size:16px;

}

/*==========================
Services
==========================*/

.services-section{

    background:var(--light);

}

.service-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.service-card img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(11,94,215,.08);
    color:var(--primary);

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

    font-size:28px;

    margin-bottom:20px;

    transition:.3s;

}

.service-card:hover .service-icon{

    background:var(--primary);
    color:#fff;
    transform:rotate(10deg);

}

.service-content h4{

    font-size:24px;
    margin-bottom:15px;

}

.service-content p{

    margin-bottom:20px;

}

.service-content a{

    color:var(--primary);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;

}

.service-content a:hover{

    color:var(--secondary);

}

.service-content a i{

    transition:.3s;

}

.service-content a:hover i{

    transform:translateX(6px);

}

/*==========================
Section Heading
==========================*/

.section-tag{

    display:inline-block;
    background:rgba(11,94,215,.08);
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;

}

.section-title{

    font-size:42px;
    font-weight:700;
    margin-bottom:18px;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;

}

/*==========================
Card Hover Effect
==========================*/

.service-card,
.quote-box{

    transition:.35s;

}

.quote-box:hover{

    transform:translateY(-6px);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .stats-section{

        padding:50px 0;

    }

    .stat-box{

        margin-bottom:30px;

    }

    .quote-box{

        margin-top:40px;

    }

}

@media(max-width:768px){

    .service-card img{

        height:220px;

    }

    .section-title{

        font-size:34px;

    }

    .quote-box{

        padding:25px;

    }

    .stat-box h2{

        font-size:38px;

    }

}
/*==================================================
YESMOVE PACKERS AND MOVERS
FILE : assets/css/style.css
PART : 3
Why Choose Us + Process + Testimonials
==================================================*/

/*==========================
Why Choose Us
==========================*/

.why-us{

    background:#fff;
    position:relative;
    overflow:hidden;

}

.why-us::before{

    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(11,94,215,.04);
    border-radius:50%;
    top:-220px;
    right:-220px;

}

.why-us img{

    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

.why-us h2{

    font-size:42px;
    margin-bottom:20px;

}

.choose-box{

    background:#fff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    border:1px solid var(--border);
    transition:var(--transition);
    height:100%;

}

.choose-box:hover{

    background:var(--primary);
    transform:translateY(-8px);
    box-shadow:var(--shadow);

}

.choose-box i{

    font-size:42px;
    color:var(--secondary);
    margin-bottom:18px;
    transition:var(--transition);

}

.choose-box h5{

    margin:0;
    font-size:18px;
    transition:var(--transition);

}

.choose-box:hover h5{

    color:#fff;

}

.choose-box:hover i{

    color:#fff;
    transform:scale(1.1);

}

/*==========================
Process Section
==========================*/

.process-section{

    background:var(--light);
    position:relative;

}

.process-box{

    background:#fff;
    border-radius:22px;
    padding:40px 25px;
    position:relative;
    transition:var(--transition);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    height:100%;

}

.process-box:hover{

    transform:translateY(-10px);
    box-shadow:0 22px 60px rgba(0,0,0,.12);

}

.process-number{

    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:22px;
    margin:0 auto 25px;

}

.process-box i{

    font-size:46px;
    color:var(--secondary);
    margin-bottom:22px;

}

.process-box h5{

    margin-bottom:15px;
    font-size:22px;

}

.process-box p{

    margin:0;

}

/*==========================
Testimonials
==========================*/

.testimonials-section{

    background:#fff;

}

.testimonial-card{

    background:#fff;
    border-radius:22px;
    padding:35px;
    border:1px solid var(--border);
    transition:var(--transition);
    height:100%;
    position:relative;
    overflow:hidden;

}

.testimonial-card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.testimonial-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.stars{

    color:#FFC107;
    font-size:22px;
    margin-bottom:20px;
    letter-spacing:2px;

}

.testimonial-card p{

    font-style:italic;
    margin-bottom:25px;

}

.testimonial-card h5{

    margin-bottom:5px;
    font-size:20px;

}

.testimonial-card span{

    color:#777;
    font-size:15px;

}

/*==========================
Google Rating Box
==========================*/

.google-rating{

    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:var(--shadow);
    text-align:center;

}

.google-rating img{

    width:70px;
    margin:auto auto 15px;

}

.google-rating h3{

    font-size:38px;
    color:var(--primary);
    margin-bottom:8px;

}

.google-rating p{

    margin:0;

}

/*==========================
Animation
==========================*/

.service-card,
.choose-box,
.process-box,
.testimonial-card{

    transition:.4s ease;

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .why-us img{

        margin-bottom:40px;

    }

    .process-box{

        margin-bottom:30px;

    }

}

@media(max-width:768px){

    .why-us h2{

        font-size:34px;

    }

    .choose-box{

        margin-bottom:20px;

    }

    .process-box{

        padding:30px 20px;

    }

    .testimonial-card{

        padding:25px;

    }

}
/*==================================================
YESMOVE PACKERS AND MOVERS
FILE : assets/css/style.css
PART : 4
CTA + FAQ + BLOG + FOOTER + FLOATING BUTTONS
==================================================*/

/*==========================
Call To Action
==========================*/

.cta-section{

    background:linear-gradient(135deg,var(--primary),#084298);
    color:#fff;
    padding:70px 0;
    position:relative;
    overflow:hidden;

}

.cta-section::before{

    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;

}

.cta-section h2{

    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;

}

.cta-section p{

    color:rgba(255,255,255,.9);
    margin-bottom:0;
    font-size:18px;

}

.cta-section .btn{

    padding:16px 38px;
    font-size:17px;
    font-weight:600;

}

/*==========================
FAQ
==========================*/

.faq-section{

    background:#fff;

}

.accordion-item{

    border:none;
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.accordion-button{

    background:#fff;
    font-size:17px;
    font-weight:600;
    color:var(--heading);
    padding:22px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;
    color:var(--text);
    line-height:1.8;

}

/*==========================
Blog Section
==========================*/

.blog-section{

    background:var(--light);

}

.blog-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:var(--transition);
    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);
    box-shadow:0 22px 60px rgba(0,0,0,.12);

}

.blog-card img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-card h5{

    font-size:22px;
    margin-bottom:18px;
    line-height:1.5;

}

.blog-card a{

    color:var(--primary);
    font-weight:600;

}

.blog-card a:hover{

    color:var(--secondary);

}

/*==========================
Footer
==========================*/

.footer{

    background:#081F3F;
    color:#d8d8d8;
    padding:90px 0 0;

}

.footer-logo{

    height:60px;
    margin-bottom:20px;

}

.footer h4{

    color:#fff;
    margin-bottom:25px;
    font-size:24px;

}

.footer p{

    color:#cfcfcf;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#d8d8d8;
    transition:.3s;

}

.footer ul li a:hover{

    color:var(--secondary);
    padding-left:8px;

}

.footer-contact li{

    display:flex;
    align-items:flex-start;
    gap:12px;

}

.footer-contact i{

    color:var(--secondary);
    margin-top:5px;

}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.footer-social a{

    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s;

}

.footer-social a:hover{

    background:var(--secondary);
    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.12);
    padding:22px 0;
    text-align:center;
    color:#bdbdbd;

}

/*==========================
Floating Buttons
==========================*/

.floating-whatsapp,
.floating-call{

    position:fixed;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    z-index:999;
    transition:.3s;
    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

.floating-whatsapp{

    right:20px;
    bottom:20px;
    background:#25D366;

}

.floating-call{

    left:20px;
    bottom:20px;
    background:var(--primary);

}

.floating-whatsapp:hover,
.floating-call:hover{

    color:#fff;
    transform:scale(1.1);

}

/*==========================
Scroll Top
==========================*/

.scroll-top{

    position:fixed;
    right:20px;
    bottom:95px;

    width:52px;
    height:52px;

    border-radius:50%;
    background:var(--secondary);

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

    color:#fff;

    font-size:18px;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

.scroll-top:hover{

    background:var(--primary);

}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

    .cta-section{

        text-align:center;

    }

    .cta-section .btn{

        margin-top:25px;

    }

    .footer{

        text-align:center;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-section h2{

        font-size:32px;

    }

    .blog-card img{

        height:210px;

    }

    .footer{

        padding-top:70px;

    }

    .floating-whatsapp,
    .floating-call{

        width:52px;
        height:52px;
        font-size:20px;

    }

}
/*==================================================
YESMOVE PACKERS AND MOVERS
FILE : assets/css/style.css
PART : 5 (FINAL)
Animations + Utilities + Responsive
==================================================*/

/*==========================
Animation Classes
==========================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-40px);
    transition:all .7s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(40px);
    transition:all .7s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

.zoom-in{
    opacity:0;
    transform:scale(.9);
    transition:all .6s ease;
}

.zoom-in.show{
    opacity:1;
    transform:scale(1);
}

/*==========================
Hover Effects
==========================*/

.hover-up{
    transition:var(--transition);
}

.hover-up:hover{
    transform:translateY(-8px);
}

.shadow-hover{
    transition:var(--transition);
}

.shadow-hover:hover{
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/*==========================
Utility Classes
==========================*/

.rounded-xl{
    border-radius:24px;
}

.shadow-xl{
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.bg-primary-soft{
    background:#edf5ff;
}

.bg-light-blue{
    background:#f8fbff;
}

.text-primary{
    color:var(--primary)!important;
}

.text-secondary{
    color:var(--secondary)!important;
}

.text-dark{
    color:var(--heading)!important;
}

.border-radius{
    border-radius:18px;
}

.border-light{
    border:1px solid var(--border);
}

/*==========================
Spacing Helpers
==========================*/

.mt-80{
    margin-top:80px;
}

.mb-80{
    margin-bottom:80px;
}

.pt-80{
    padding-top:80px;
}

.pb-80{
    padding-bottom:80px;
}

.py-100{
    padding-top:100px;
    padding-bottom:100px;
}

/*==========================
Image Effects
==========================*/

.img-cover{
    width:100%;
    height:100%;
    object-fit:cover;
}

.img-radius{
    border-radius:20px;
}

.img-shadow{
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/*==========================
Form Elements
==========================*/

input,
textarea,
select{

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

}

/*==========================
Selection
==========================*/

::selection{

    background:var(--primary);
    color:#fff;

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

    .hero-section h1{

        font-size:54px;

    }

}

@media(max-width:992px){

    section{

        padding:70px 0;

    }

    .hero-section{

        min-height:auto;
        padding:120px 0 80px;

    }

    .hero-section h1{

        font-size:46px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        grid-template-columns:1fr 1fr;

    }

    .navbar{

        padding:12px 0;

    }

    .navbar-collapse{

        background:#fff;
        padding:20px;
        margin-top:15px;
        border-radius:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);

    }

    .navbar-nav{

        margin-bottom:20px;

    }

    .navbar-nav .nav-link{

        padding:14px 10px;

    }

}

@media(max-width:768px){

    .section-title{

        font-size:32px;

    }

    .hero-section{

        text-align:center;

    }

    .hero-section h1{

        font-size:38px;

    }

    .hero-section p{

        font-size:16px;

    }

    .hero-features{

        grid-template-columns:1fr;

    }

    .feature-item{

        justify-content:center;

    }

    .quote-box{

        margin-top:40px;

    }

    .top-contact{

        flex-direction:column;
        gap:8px;
        justify-content:center;

    }

    .top-social{

        justify-content:center;
        margin-top:10px;

    }

    .stats-section .col-md-3{

        margin-bottom:30px;

    }

    .service-card{

        margin-bottom:25px;

    }

}

@media(max-width:576px){

    body{

        font-size:15px;

    }

    section{

        padding:60px 0;

    }

    .hero-section{

        padding-top:110px;

    }

    .hero-section h1{

        font-size:32px;

    }

    .hero-badge{

        font-size:13px;
        padding:10px 18px;

    }

    .btn{

        width:100%;
        margin-bottom:12px;

    }

    .hero-buttons{

        display:block;

    }

    .quote-box{

        padding:22px;

    }

    .service-content{

        padding:22px;

    }

    .process-box{

        margin-bottom:25px;

    }

    .testimonial-card{

        padding:22px;

    }

    .blog-card h5{

        font-size:20px;

    }

    .footer h4{

        margin-top:25px;

    }

}

/*==========================
Print
==========================*/

@media print{

    .navbar,
    .topbar,
    .floating-call,
    .floating-whatsapp,
    .scroll-top,
    footer{

        display:none!important;

    }

    body{

        background:#fff;

    }

}

/*==========================
End of File
==========================*/