:root {
    --primary: rgba(255,0,0,1);
    --secondary: #2C3E50;
    --accent: #F39C12;
    --light: #F8F9FA;
    --dark: #212529;
    --text: #555555;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
}

/* Header Styles */
.top-bar {
    background-color: var(--secondary);
    color: white;
    padding: 8px 0;
    font-size: 17px;
}
@media(max-width:430px){
    .top-bar{
        font-size: 10px;
    }
}

.top-contact span {
    margin-right: 20px;
}

.top-contact i {
    color: var(--primary);
    margin-right: 8px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    transition: all 0.3s;
}

.social-icons a:hover {
    cursor: pointer;
    color: var(--primary);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: white !important;
}
@media(max-width:1100px){
    .navbar-brand{
        width: 70%;
    }
    .navbar-brand img{
        width: 100%;
      }
}

.navbar-brand img{
  width: 300px;
  height: auto;
}

.navbar-brand span {
    font-weight: 400;
    font-size: 16px;
    color: #777;
}
.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown .dropdown-menu a{
    padding: 20px;
}
.dropdown .dropdown-menu a:hover{
   background-color: var(--primary);
   color: white;
}
.nav-link {
    font-weight: 600;
    color: var(--secondary);
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.quote-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.quote-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* close button Section */
.popup #close {
    margin: 0 0 20px auto;
    display: block;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/about-section-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding:40px;
    position: relative;
}
.hero-section-2{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/slide-2-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding:40px;
    position: relative;
}
.hero-section-3{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/slide-3-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding:40px;
    position: relative;
}

.hero-label {
    color: var(--light);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--primary);
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    background-color: var(--primary);
    color: white;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.hero-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.section-padding {
    padding: 100px 0;
    background: var(--secondary);
}

.section-title {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--light);
    margin-bottom: 50px;
    font-size: 18px;
}

.service-card-box {
    padding-bottom: 20px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* margin-bottom: 30px; */
    /* margin-top:50px; */
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-body {
    padding: 25px;
}

.service-icon:hover {
    color: var(--accent);
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.read-more:hover{
    color: var(--accent);
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s;
}

.read-more:hover i {
    color: var(--accent);
    transform: translateX(15px);
    font-size: 20px;
}

/* About Section */
.about-section {
    background-color: var(--light);
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.about-section .about-img {
    width: 100%;
}

.about-section .about-section-inner-left span {

    /* margin-right: 20px; */
    color: red;
    font-size: 20px;
    font-weight: 400;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: .8s ease-in infinite;
}
@media(min-width:344px) and (max-width:767px){

    .about-section-btn button{
        margin-top: 20px;
    }
}
.about-section-btn button {
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 10px 20px;
    transition: all 0.5s;
}

.about-section-btn button:hover {
    background-color: #F39C12;
    /* color: black; */
}

@keyframes animate {
    0% {
        transform: translateY(0rem);
    }

    25% {
        transform: translateY(-2em);
    }

    50% {
        transform: translateY(-1em);
    }

    100% {
        transform: translateY(0em);
    }
}

.about-feature {
    margin-bottom: 25px;
    display: flex;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--primary);
    font-size: 20px;
}

/* about section 2  */
.about-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.people {
    background: var(--primary);
    padding: 25px;
    position: absolute;
    right: 19px;
    top: -17px;
    z-index: 1;
}
.people::before{
    background: var(--dark);
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    content: "";
    height: 17px;
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
}
.people h2 span{
   margin-left: -5px;
  /* padding-bottom: 20px; */
    font-size: 20px;
}
.about-2-heading h5{
    color: var(--primary);
    text-transform: capitalize;
}
@media (max-width:767px){
    .about-2-para{
        font-size: 2.2rem;
        }
        .people {
            background: primary;
            padding: 10px;
            position: absolute;
            right: 19px;
            top: -17px;
            z-index: 1;
        }

}

.about-2-icons i::before{
font-size: 40px;
color: var(--primary);
}
@media(min-width:768px) and (max-width:1200px){
    .about-2-row-inner h5{
        font-size: small;
    }

}
.about-2-btn button{
    margin-top: 20px;
    padding: 10px 30px;
    border: none;
    background: var(--primary);
    color: white;
    transition: all .5s;
}

.about-2-btn button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 88px 0;
    text-align: center;
}
@media(min-width:768px) and (max-width:933px){
    .stat-number {
        font-size: 10px;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 10px;
    }
}
.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials */
.testinomial-container .testinomial-left img{
width: 100%;

}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 60px;
    color: rgba(255, 107, 107, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.owl-carousal .testimonial-card .client-info .client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-name {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.client-position {
    color: var(--primary);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: white;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sticky Buttons */
.sticky-icon {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    transition: transform 0.3s ease;
}
.sticky-icon:hover {
    transform: scale(1.1);
}
.call-icon {
    text-decoration: none;
    left: 20px;
    background-color: var(--primary);
}
.whatsapp-icon {
    text-decoration: none;
    right: 20px;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 80px 0 30px;
}

.footer-title {
    color: var(--light);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-links a {
    color: #bbb;
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    color: #bbb;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
 .secondary{
    width: 51%;
 }
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
    }

    .hero-btn {
        margin-right: 0;
        margin-bottom: 15px;
        /* width: 50%; */
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }
    .carousel-control-prev .carousel-control-prev-icon{
        display: none;
    }
    .carousel-control-next .carousel-control-next-icon{
        display: none;
    }
}
@media(max-width:1200px){
    .carousel-control-prev .carousel-control-prev-icon{
        display: none;
    }
    .carousel-control-next .carousel-control-next-icon{
        display: none;
    }
}
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 40px;
    }
}


/* about  */

.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/about-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.about-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.about-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.about-navigation .breadcrumb li a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.about-company {
    padding: 70px 0px 100px;
}

.about-title {
    color: var(--primary);
    font-weight: 500;
}

.about-featured-image img {
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.about-company-featured {
    /* margin-bottom: 5px; */
    display: flex;
}

.about-company-featured p {
    margin-top: 7px;
}

.about-featured-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-featured-icon i {
    color: var(--primary);
    font-size: 20px;
}

.choose-container {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.choose-container .row {
    background-color: rgb(229, 226, 226);
}

.choose-container .row .choose-boxes {
    padding: 20px 0px 40px;
    background-color: white;
}

.choose-icon-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.choose-icon-container i::before {
    font-size: 5rem;
    color: var(--primary);
}
.choose-boxes{
    transition: all 0.5s;
}
.choose-boxes:hover{
   
    cursor: pointer;
    transform: scale(1.1);
}

.contact-card {
    text-align: center;
    padding: 20px;
}

.contact-card img {
    margin: auto;
    width: 90%;
    height: auto;
    border-radius: 10px;
}

.contact-icon {
    background: red;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-top: -30px;
    position: relative;
}

.contact-icon img {
    width: 40px;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 600;
}

.form-control {
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
}

/* enquiry section  */
.enquiry-container {

    background-color: white;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    padding: 30px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 600;
}

.enquiry-container .form-control {
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-submit {
    background-color: var(--primary);
    color: white;
    border: none;
    /* padding: 12px 20px; */
    font-size: 20px;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}





/* // branches // */

.branches-section .container {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: var(--secondary);
}

.branches-section .accordion .accordion-item {
    color: white;
    background-color: #0b5ed7;
}

.home-inner-links-active{
    color: white;
    background-color: var(--primary);
    padding: 20px 40px;
    text-align: center;
}
.home-inner-links-active .inner{
    text-align: center;
    color: white;
text-decoration: none;
}
.home-inner-links {
    border-bottom: 1px solid red;
    text-align: center;
    background-color: var(--dark);
    padding: 20px 40px;
}

.home-inner-links:hover{
    background-color: var(--primary);
    color: var(--light);
    /* padding: 10px 40px; */
}
.inner::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--light);
    bottom: -10px;
    left: 0;
}

.home-inner-links .inner {
    text-decoration: none;
    color: var(--light);
}
.home-inner-links .inner  {

    text-decoration: none;
    color: var(--light);
}




.about-section-2 .card img{
    height: 75vh;
}
@media(max-width:767px){
    .about-section-2 .card img{
        height: auto;
    }
}
@media(min-width:768px) and (max-width:1200px){
    .about-section-2 .card img{
        height: 38vh;
    }
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #fe0707;
    /* padding: 30px ; */
    box-sizing: border-box;
    display: flex;
}

.marquee-content {
    display: inline-block;

    /* padding-left: 100%; */
    animation: scroll 15s linear infinite;
}

.marquee-content span {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    /* margin-right: 30px; */
    font-size: 5rem;
    padding: 20px;
    /* color: #fff; */
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}



/* home quote section  */
.home-quote-section{
    margin-top: 3rem;
}
.home-quote-left{
    background-color: var(--secondary);
    /* padding: 20px; */
}
@media(max-width:767px){
    .home-quote-left .hero-titles{
        margin-top: -2em;
    } 
}
.home-quote-left .hero-titles{
    /* text-align: center; */
    color: white;
    padding-top: 3em;
}
.hero-subtitles{
    /* text-align: center; */
    color: white;
    font-size: 3em;
}
.hero-descriptions{
    color: white;
}
.hero-descriptions {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.home-quote-btn{
    padding: 10px 40px ;
    background-color: var(--primary);
    color: var(--light);
    transition: .5s;
    border: none;
}
.home-quote-btn:hover{
    background-color: var(--accent);
}
.contact-sections {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* padding: 80px 0; */
    background-color: white;
}

.section-titles {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.contact-forms {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primarys {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primarys:hover {
    background-color: #c0392b;
    border-color: #c0392b;
}

.form-control {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .hero-titles{
        font-size: 2.2rem;
    }
    
    .hero-subtitles {
        font-size: 1.2rem;
    }
    
    .section-titles {
        font-size: 2rem;
    }
    
    .contact-forms {
        padding: 20px;
    }
}

/* office loaction  */

.office-location-left{
    padding: 15px;
    background-color: #d8d8d8;
}
.office-location-left p span{
    font-weight: 700;
    color: black;
}
.office-location-left p{
    color: black;
}
.office-location-right{
    padding: 15px;
    background-color: #c6c6c6;
}
.office-location-right p{
    color: black;
}
.office-location-right p span{
    font-weight: 700;
    color: black;
}
.title-divider-separator:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 40px;
    border-bottom: 2px solid #fff;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
}
.title-divider-separator:before {
    -webkit-animation: heading-move 7s infinite linear;
    animation: heading-move 7s infinite linear;
}
.title-divider-separator:after, .title-divider-separator:before {
    -webkit-animation: heading-move 7s infinite linear;
    animation: heading-move 7s infinite linear;
}
.title-divider-separator:after {
    content: "\f1c9";
    position: absolute;
    left: 0;
    top: -13px;
    font-size: 24px;
    height: 26px;
    width: 40px;
    line-height: 20px;
    /* font-weight: 600; */
    text-align: center;
    color: var(red);
    /* background: white; */
    line-height: 26px;
}
@keyframes heading-move{
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-1px);
    }
}
@keyframes heading-move{
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-1px);
    }
}


.marquee-container-2 {
    width: 90%;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    /* background-color: #fe0707; */
    /* padding: 30px ; */
    box-sizing: border-box;
    display: flex;
}

.marquee-content-2 {
    display: inline-block;

    /* padding-left: 100%; */
    animation: scroll 15s linear infinite;
}
.marquee-content-2 span {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary);
    /* margin-right: 30px; */
    font-weight: 700;
    font-size: 70px;
    padding: 20px;
    /* color: #fff; */
}



.branches-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/about-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.branches-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.branches-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branches-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.branches-navigation .breadcrumb li a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}


.warehouse-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/warehouse-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.warehouse-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.warehouse-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warehouse-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.warehouse-navigation .breadcrumb li a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}


.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/contact-us.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.contact-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.contact-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.contact-navigation .breadcrumb li a {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}



.house-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/home-shifting-banner.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.house-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.house-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.house-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.house-navigation .breadcrumb li a {
    color: white;
}


.industrial-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/industrial-relocation.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.industrial-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.industrial-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industrial-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.industrial-navigation .breadcrumb li a {
    color: white;
}


.corporate-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ankitpackersandmovers.in/image/corporate-relocation-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 80px;
    position: relative;
}

.corporate-label h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--light);
}

.corporate-navigation .breadcrumb {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corporate-navigation .breadcrumb li {
    text-align: center;
    color: var(--primary);
}

.corporate-navigation .breadcrumb li a {
    color: white;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}



@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}





/* Animation Utilities */


.animate-pulse {
    animation: pulse 2s infinite;
}



/* Moving Background Elements */
.title-decoration {
    position: relative;
    display: inline-block;
}

.title-decoration::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    animation: expandLine 1s ease-out forwards;
}







