/* ==========================================================
   All India Cargo Packers & Movers
   Premium Bootstrap 5 Landing Page
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#ff6b00;
    --secondary:#0f172a;
    --dark:#111827;
    --light:#f8fafc;
    --white:#ffffff;
    --text:#555;
    --border:#ececec;
    --transition:.4s ease;

}

*{

    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;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

img{

    width:100%;
    display:block;

}

ul{

    list-style:none;

}

/*=============================
TOP BAR
==============================*/

.top-bar{

    background:#111827;
    color:#fff;
    padding:10px 0;
    font-size:14px;

}

.top-contact{

    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;

}

.top-contact a{

    color:#fff;

}

.top-contact i{

    color:var(--primary);
    margin-right:6px;

}

.top-social{

    display:flex;
    justify-content:flex-end;
    gap:12px;

}

.top-social a{

    width:35px;
    height:35px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;

}

.top-social a:hover{

    background:var(--primary);

}

/*=============================
NAVBAR
==============================*/

.navbar{

    padding:18px 0;
    transition:.4s;

}

.navbar-brand{

    font-size:28px;
    font-weight:700;

}

.navbar-brand span{

    color:var(--primary);

}

.nav-link{

    font-weight:500;
    margin-left:20px;
    color:#333!important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-warning{

    background:var(--primary);
    border:none;
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
    font-weight:600;

}

.btn-warning:hover{

    background:#ff7d26;
    color:#fff;

}

.btn-dark{

    border-radius:50px;
    padding:13px 28px;

}

/*=============================
HERO
==============================*/

.hero-section{

    min-height:92vh;
    display:flex;
    align-items:center;
    position:relative;
    background:

    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),

    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80');

    background-size:cover;
    background-position:center;

}

.hero-content{

    color:#fff;

}

.hero-tag{

    display:inline-block;
    padding:8px 20px;
    background:rgba(255,255,255,.12);
    border-radius:50px;
    backdrop-filter:blur(8px);
    margin-bottom:25px;

}

.hero-content h1{

    font-size:62px;
    font-weight:800;
    line-height:1.2;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    margin:30px 0;
    font-size:18px;
    max-width:650px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

.hero-image img{

    border-radius:25px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.hero-features{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.feature-box{

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    padding:12px 20px;
    border-radius:50px;
    color:#fff;
    font-size:15px;

}

.feature-box i{

    color:var(--primary);
    margin-right:8px;

}

/*=============================
TRUST
==============================*/

.trust-section{

    background:#fff;

}

.trust-box{

    padding:35px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;

}

.trust-box:hover{

    transform:translateY(-8px);

}

.trust-box h2{

    color:var(--primary);
    font-size:42px;
    font-weight:700;

}

.trust-box p{

    margin:0;
    font-weight:500;

}

/*=============================
SECTION TITLE
==============================*/

.section-tag{

    background:#fff3e9;
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    display:inline-block;

}

section{

    padding:90px 0;

}

/*==========================================================
SERVICES
==========================================================*/

#services{
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-card img{
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-icon{
    width:70px;
    height:70px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.service-card h4{
    font-weight:700;
    color:var(--secondary);
}

.service-card p{
    color:#666;
    margin:15px 0 25px;
}


/*==========================================================
ABOUT
==========================================================*/

#about img{
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

#about h2{
    color:var(--secondary);
}

#about p{
    color:#666;
}

#about h3{
    font-size:40px;
    color:var(--primary);
    font-weight:700;
}


/*==========================================================
WHY CHOOSE US
==========================================================*/

.choose-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 25px;
    transition:.4s;
    height:100%;
}

.choose-box:hover{
    background:var(--primary);
    transform:translateY(-10px);
}

.choose-box:hover i,
.choose-box:hover h5,
.choose-box:hover p{
    color:#fff!important;
}

.choose-box h5{
    margin:20px 0 10px;
    font-weight:600;
}

.choose-box p{
    color:#d1d5db;
}


/*==========================================================
PROCESS
==========================================================*/

.process-box{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:40px 25px;
    position:relative;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.process-box:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:48px;
    font-weight:800;
    color:rgba(255,107,0,.12);
}

.process-box i{
    width:90px;
    height:90px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 25px;
}

.process-box h4{
    font-weight:700;
    margin-bottom:12px;
}


/*==========================================================
COUNTERS
==========================================================*/

.counter-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    text-align:center;
}

.counter-box h2{
    color:var(--primary);
    font-size:52px;
    font-weight:700;
}

.counter-box p{
    margin-top:10px;
}


/*==========================================================
GALLERY
==========================================================*/

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.gallery-item img{
    transition:.5s;
    height:280px;
    object-fit:cover;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:40px;
}


/*==========================================================
TESTIMONIAL
==========================================================*/

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    margin-bottom:20px;
}

.testimonial-card h5{
    margin-top:20px;
    font-weight:700;
}

.testimonial-card span{
    color:#ffc107;
    font-size:18px;
}

.testimonial-card p{
    margin-top:20px;
    color:#666;
    font-style:italic;
}


/*==========================================================
CTA
==========================================================*/

.cta-section{
    background:linear-gradient(135deg,#ff6b00,#ff9b3d);
    color:#fff;
    border-radius:25px;
    padding:70px 50px;
}

.cta-section h2{
    font-size:46px;
    font-weight:700;
}

.cta-section p{
    font-size:18px;
}


/*==========================================================
BUTTON EFFECT
==========================================================*/

.btn-warning{
    transition:.35s;
    box-shadow:0 12px 25px rgba(255,107,0,.25);
}

.btn-warning:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(255,107,0,.35);
}

/*=========================================================
FAQ SECTION
=========================================================*/

.accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.accordion-button{
    font-weight:600;
    padding:20px;
    background:#fff;
    color:#111827;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:20px;
    color:#666;
    background:#fff;
}

/*=========================================================
CONTACT
=========================================================*/

#contact{
    background:linear-gradient(135deg,#0f172a,#1e293b);
}

#contact h2,
#contact p,
#contact li{
    color:#fff;
}

#contact .form-control{
    border:none;
    border-radius:12px;
    padding:15px;
    margin-bottom:20px;
    box-shadow:none;
}

#contact .form-control:focus{
    border:2px solid var(--primary);
    box-shadow:none;
}

/*=========================================================
FOOTER
=========================================================*/

.footer{
    background:#111827;
    color:#ddd;
    padding:70px 0 30px;
}

.footer h4,
.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-links{
    padding:0;
    margin:0;
}

.footer-links li{
    list-style:none;
    margin-bottom:12px;
}

.footer-links a{
    color:#bdbdbd;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:8px;
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:35px 0;
}

/*=========================================================
GOOGLE MAP
=========================================================*/

iframe{
    width:100%;
    border:0;
}

/*=========================================================
FLOATING BUTTONS
=========================================================*/

.call-btn,
.whatsapp-btn{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    z-index:999;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.3s;
}

.call-btn{
    bottom:95px;
    background:#ff6b00;
}

.whatsapp-btn{
    bottom:20px;
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:scale(1.1);
    color:#fff;
}

/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{
    position:fixed;
    left:20px;
    bottom:20px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#111827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

/*=========================================================
SECTION SPACING
=========================================================*/

section{
    padding:90px 0;
}

.display-5{
    font-weight:700;
}

.text-warning{
    color:var(--primary)!important;
}

/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f5f5f5;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/*=========================================================
ANIMATIONS
=========================================================*/

.fade-up{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

0%{
    opacity:0;
    transform:translateY(40px);
}

100%{
    opacity:1;
    transform:translateY(0);
}

}

.zoom{
    animation:zoom .8s ease;
}

@keyframes zoom{

0%{
    transform:scale(.8);
    opacity:0;
}

100%{
    transform:scale(1);
    opacity:1;
}

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.hero-section{
    text-align:center;
    min-height:auto;
    padding:100px 0;
}

.hero-content h1{
    font-size:42px;
}

.hero-buttons{
    justify-content:center;
}

.hero-features{
    justify-content:center;
}

.top-social{
    justify-content:center;
    margin-top:10px;
}

.navbar-nav{
    text-align:center;
    padding-top:20px;
}

.nav-link{
    margin:10px 0;
}

.cta-section{
    text-align:center;
}

}

@media(max-width:767px){

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.display-5{
    font-size:2rem;
}

.service-card img{
    height:220px;
}

.process-box,
.choose-box,
.testimonial-card,
.counter-box{
    margin-bottom:20px;
}

.call-btn,
.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:20px;
}

section{
    padding:70px 0;
}

}

@media(max-width:575px){

.hero-content h1{
    font-size:30px;
}

.btn-warning,
.btn-dark{
    width:100%;
    margin-bottom:12px;
}

.hero-buttons{
    flex-direction:column;
}

.top-contact{
    justify-content:center;
}

.footer{
    text-align:center;
}

}

/*=========================================================
END OF STYLE.CSS
=========================================================*/