/*=========================================================
  CrownMove Packers & Movers
  Main Stylesheet
  Part 1
=========================================================*/

/*==============================
Google Font
==============================*/

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

/*==============================
Root Variables
==============================*/

:root{

    --primary:#0d6efd;
    --secondary:#ff9800;
    --dark:#1d1d1d;
    --light:#f8f9fa;
    --white:#ffffff;
    --black:#000000;
    --gray:#6c757d;
    --border:#e9ecef;

    --radius:12px;
    --transition:.35s ease;
    --shadow:0 10px 30px rgba(0,0,0,.08);

}

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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

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

}

ul{

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

}

section{

    position:relative;

}

.container{

    max-width:1200px;

}

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

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

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

}

h1{

    font-size:52px;

}

h2{

    font-size:38px;

}

h3{

    font-size:30px;

}

h4{

    font-size:24px;

}

p{

    color:#666;
    margin-bottom:15px;

}

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

.btn{

    border-radius:50px;
    padding:13px 34px;
    font-weight:600;
    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);
    border-color:var(--primary);

}

.btn-primary:hover{

    background:#0056d8;
    border-color:#0056d8;
    transform:translateY(-3px);

}

.btn-warning{

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

}

.btn-warning:hover{

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

}

.btn-success{

    border-radius:50px;

}

/*==============================
Loader
==============================*/

#loader{

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

}

.loader{

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

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
Top Bar
==============================*/

.top-bar{

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

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    margin-right:8px;

}

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

.navbar{

    padding:15px 0;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
    transition:var(--transition);

}

.navbar-brand{

    font-size:30px;
    font-weight:800;
    color:var(--primary);

}

.navbar-brand span{

    color:var(--secondary);

}

.navbar-nav .nav-link{

    color:#222;
    font-weight:600;
    padding:14px 18px;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.dropdown-menu{

    border:none;
    border-radius:10px;
    box-shadow:var(--shadow);

}

.dropdown-item{

    padding:12px 20px;
    font-weight:500;

}

.dropdown-item:hover{

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

}

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

.sticky{

    position:fixed;
    width:100%;
    left:0;
    top:0;
    z-index:999;
    animation:slideDown .5s;

}

@keyframes slideDown{

    from{

        transform:translateY(-100%);

    }

    to{

        transform:translateY(0);

    }

}

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

.hero{

    padding:120px 0;
    background:linear-gradient(rgba(13,110,253,.75),
               rgba(13,110,253,.75)),
               url('../images/hero.jpg') center/cover no-repeat;
    color:#fff;

}

.hero h1{

    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;

}

.hero p{

    color:#fff;
    font-size:20px;
    margin-bottom:35px;

}

.hero-btns .btn{

    margin-right:15px;
    margin-bottom:15px;

}

/*==============================
Page Banner
==============================*/

.page-banner{

    padding:100px 0;
    background:linear-gradient(rgba(13,110,253,.85),
               rgba(13,110,253,.85)),
               url('../images/banner.jpg') center/cover;

}

.page-banner h1{

    color:#fff;
    font-size:48px;

}

.page-banner p{

    color:#fff;
    font-size:18px;

}

/*==============================
Section Title
==============================*/

.section-title{

    margin-bottom:60px;
    text-align:center;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;
    margin:auto;

}
/*=========================================================
  CrownMove Packers & Movers
  Main Stylesheet
  Part 2
=========================================================*/

/*==============================
About Section
==============================*/

.about-section{
    padding:90px 0;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:18px;
}

.about-list{
    margin-top:25px;
}

.about-list li{
    padding:10px 0;
    font-weight:500;
}

.about-list li i{
    color:var(--secondary);
    margin-right:10px;
}

/*==============================
Cards
==============================*/

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:var(--transition);
    box-shadow:var(--shadow);
}

.card:hover{
    transform:translateY(-10px);
}

.card-body{
    padding:30px;
}

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

.service-card{
    text-align:center;
    background:#fff;
    border-radius:15px;
    padding:40px 25px;
    transition:var(--transition);
    box-shadow:var(--shadow);
    height:100%;
}

.service-card:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-12px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover a{
    color:#fff;
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}

.service-card:hover .service-icon{
    background:#fff;
}

.service-icon i{
    font-size:40px;
    color:var(--primary);
}

.service-card h4{
    margin-bottom:15px;
}

.service-card p{
    margin-bottom:20px;
}

/*==============================
Feature Boxes
==============================*/

.feature-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    text-align:center;
    height:100%;
}

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

.feature-box i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.feature-box h4{
    margin-bottom:15px;
}

/*==============================
Counter Section
==============================*/

.counter-section{
    background:var(--primary);
    color:#fff;
    padding:80px 0;
}

.counter-box{
    text-align:center;
}

.counter-box h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
}

.counter-box p{
    color:#fff;
    margin:0;
}

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

.why-us{
    padding:90px 0;
}

.why-item{
    display:flex;
    margin-bottom:25px;
}

.why-icon{
    width:70px;
    height:70px;
    background:var(--secondary);
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-right:20px;
    flex-shrink:0;
}

.why-content h4{
    margin-bottom:10px;
}

/*==============================
Pricing
==============================*/

.pricing-table{
    border-radius:15px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.pricing-table table{
    margin:0;
}

.pricing-table thead{
    background:var(--primary);
    color:#fff;
}

.pricing-table th,
.pricing-table td{
    padding:18px;
    vertical-align:middle;
}

.pricing-table tbody tr:hover{
    background:#f7f9fc;
}

/*==============================
Gallery
==============================*/

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(13,110,253,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    font-size:40px;
    color:#fff;
}

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

.testimonial-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:var(--shadow);
    transition:var(--transition);
    height:100%;
}

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

.testimonial-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:20px;
}

.testimonial-card h5{
    margin-top:15px;
    margin-bottom:5px;
}

.testimonial-card .stars{
    color:#ffc107;
    margin-bottom:15px;
}

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

.accordion-item{
    border:none;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.accordion-button{
    font-weight:600;
    padding:20px;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:20px;
}

/*==============================
Contact Box
==============================*/

.contact-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    height:100%;
}

.contact-box i{
    color:var(--primary);
    font-size:24px;
    margin-right:12px;
}

.contact-box h5{
    margin-bottom:8px;
}

/*==============================
Forms
==============================*/

.form-control,
.form-select{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:12px 15px;
}

textarea.form-control{
    min-height:140px;
    resize:none;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:none;
}

/*==============================
Animations
==============================*/

.zoom-hover{
    transition:.4s;
}

.zoom-hover:hover{
    transform:scale(1.05);
}

.rotate-hover{
    transition:.4s;
}

.rotate-hover:hover{
    transform:rotate(3deg);
}

.shadow-hover{
    transition:.4s;
}

.shadow-hover:hover{
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
/*=========================================================
  CrownMove Packers & Movers
  Main Stylesheet
  Part 3
=========================================================*/

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

footer{

    background:#111827;
    color:#fff;
    padding:80px 0 20px;

}

footer h4,
footer h5{

    color:#fff;
    margin-bottom:25px;

}

footer p{

    color:#cfd3d8;

}

footer ul{

    padding:0;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#cfd3d8;
    transition:.3s;

}

footer ul li a:hover{

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

}

.footer-contact li{

    display:flex;
    align-items:flex-start;
    margin-bottom:18px;

}

.footer-contact i{

    color:var(--secondary);
    margin-right:12px;
    margin-top:4px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

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

}

.footer-social a:hover{

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

}

.footer-bottom{

    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;

}

.footer-bottom p{

    margin:0;
    color:#bbb;

}

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

#scrollTop{

    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    cursor:pointer;
    z-index:999;
    display:none;
    transition:.3s;

}

#scrollTop:hover{

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

}

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

.float-call{

    position:fixed;
    left:20px;
    bottom:90px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    z-index:999;
    box-shadow:var(--shadow);

}

.float-call:hover{

    color:#fff;
    background:#0056d8;

}

.float-whatsapp{

    position:fixed;
    left:20px;
    bottom:20px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:var(--shadow);

}

.float-whatsapp:hover{

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

}

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

.bg-primary-gradient{

    background:linear-gradient(135deg,#0d6efd,#084db8);

}

.bg-light-blue{

    background:#f5f9ff;

}

.rounded-15{

    border-radius:15px;

}

.shadow-custom{

    box-shadow:var(--shadow);

}

.text-primary{

    color:var(--primary)!important;

}

.text-warning{

    color:var(--secondary)!important;

}

.fw-700{

    font-weight:700;

}

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

.py-80{

    padding:80px 0;

}

.py-100{

    padding:100px 0;

}

/*==============================
Image Hover
==============================*/

.img-hover{

    overflow:hidden;
    border-radius:15px;

}

.img-hover img{

    transition:.5s;

}

.img-hover:hover img{

    transform:scale(1.1);

}

/*==============================
Badges
==============================*/

.badge-custom{

    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;

}

/*==============================
Animations
==============================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.float-animation{

    animation:float 3s infinite;

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

.pulse{

    animation:pulse 2s infinite;

}

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

@media (max-width:991px){

    h1{

        font-size:40px;

    }

    h2{

        font-size:32px;

    }

    .hero{

        padding:90px 0;
        text-align:center;

    }

    .hero h1{

        font-size:42px;

    }

    .navbar{

        padding:10px 0;

    }

    .navbar-nav{

        margin-top:15px;

    }

    .service-card{

        margin-bottom:30px;

    }

    .counter-box{

        margin-bottom:35px;

    }

}

@media (max-width:768px){

    h1{

        font-size:34px;

    }

    h2{

        font-size:28px;

    }

    h3{

        font-size:22px;

    }

    .hero{

        padding:70px 0;

    }

    .page-banner{

        padding:70px 0;

    }

    .hero p{

        font-size:17px;

    }

    .btn{

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

    }

    .hero-btns .btn{

        margin-right:0;

    }

    .top-bar{

        display:none;

    }

    .float-call,
    .float-whatsapp{

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

    }

    #scrollTop{

        width:46px;
        height:46px;

    }

}

@media (max-width:576px){

    .container{

        padding-left:18px;
        padding-right:18px;

    }

    h1{

        font-size:30px;

    }

    h2{

        font-size:25px;

    }

    .card-body{

        padding:22px;

    }

    footer{

        text-align:center;

    }

    .footer-contact li{

        justify-content:center;

    }

    .footer-social{

        text-align:center;

    }

}

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