@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");


* {
    font-family: 'Sora', sans-serif;
}


a {
    text-decoration: none !important;
}

img.nav-logo {
    width: 223px;
    /* padding: 5px; */
    /* background: #ffff; */
    /* border-radius: 16px 16px 16px 16px; */
}


.roadside-gallery-track{
    will-change: transform;
}


.desktop-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1300px, 95%);
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    /* border-radius: 25px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    z-index: 9999;
    transition: .4s;
}

.desktop-navbar.scrolled {
    top: 10px;
    background: #ffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0px 4px 10px #00000052;
}



.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}



.desktop-navbar nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-navbar nav a {
    text-decoration: none;
    color: #2e2f5d;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 16px;
    transition: .3s;
    font-size: 18px;
}

.desktop-navbar nav a:hover {
    background: rgba(255, 255, 255, .12);
}

.desktop-navbar nav a.active {
    background: rgb(246 110 11 / 35%);
}



.mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 15px;
    height: 85px;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 28px;
    display: none;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    z-index: 99999;
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: .3s;
}

.mobile-bottom-nav a i {
    font-size: 22px;
}




@media(max-width:991px) {

    .desktop-navbar {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

}

@media(max-width:576px) {

    .mobile-bottom-nav {
        height: 70px;
        left: 8px;
        right: 8px;
        bottom: 5px;
    }

    .mobile-bottom-nav a i {
        font-size: 18px;
        color: #f66e0b;
    }

    .mobile-bottom-nav a {
        font-size: 12px;
        font-weight: 600;
        color: #ffff;
    }

}






.hero-section {
    padding: 170px 0 40px;
    background: linear-gradient(#000000d9, #000000bd), url(../img/hero-section.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #f66e0b;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.hero-title span {
    color: #f66e0b;
}

.hero-description {
    font-size: 18px;
    color: #ffff;
    line-height: 1.5;
    margin-bottom: 15px;
}


.hero-form strong {
    font-weight: bolder;
    font-size: 20px;
    color: #f66e0b;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}





.hero-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.hero-services .service-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.hero-services .service-card:hover {
    transform: translateY(-6px);
}

.hero-services .service-card i {
    font-size: 34px;
    color: #f66e0b;
    margin-bottom: 6px;
}

.hero-services .service-card h4 {
    color: #ffff;
    font-weight: 700;
    margin-bottom: 0px;
}

.hero-services .service-card p {
    color: #ffff;
    margin: 0;
}


.hero-form {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-top: 5px solid #f66e0b;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: #f66e0b;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.form-header h3 {
    margin: 0;
    color: #ffff;
    font-weight: 700;
    font-size: 22px;
}

.form-header p {
    margin: 0;
    color: #ffff;
}

.hero-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #ffff;
}

.hero-form .form-control {
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #dbe3ec;
    box-shadow: none;
}

.hero-form .form-control:focus {
    border-color: #f66e0b;
    box-shadow: none;
}

.hero-submit-btn {
    width: 100%;
    border: none;
    background: #f66e0b;
    color: #ffff;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s;
}

.hero-submit-btn:hover {
    background: #f66e0b;
}



@media(max-width:991px) {

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-services {
        margin: auto;
    }
}

@media(max-width:576px) {

    .hero-services {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 23px;
        margin-bottom: 15px;
    }


    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-form {
        padding: 20px;
    }


    .form-icon {
        display: none;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }


    .form-header h3 {
        font-size: 19px;
    }

    .form-header p {
        font-size: 13px;
    }


    .form-header {
        margin-bottom: 12px;
    }

    .hero-section {
        padding: 50px 0 41px;
    }


    .hero-submit-btn {
        width: 100%;
        border: none;
        background: #f66e0b;
        color: #ffff;
        padding: 7px;
        border-radius: 14px;
        font-weight: 700;
        transition: .3s;
        font-size: 16px;
    }
}






.about-img img {
    width: 100%;
}

.about-section {
    padding: 80px 0;
    background: #f8f8f8;
    overflow: hidden;
}


.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    transition: .4s;
}

.about-image:hover {
    transform: scale(1.03);
}

.experience-badge {

    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #ffb400;
    color: #111;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}




.section-tag {
    display: inline-block;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 700;
    color: #f66e0b;
    margin-bottom: 19px;
}

.about-content h2 {
    font-size: clamp(2.3rem, 5vw, 2.3px);
    line-height: 1.1;
    font-weight: 800;
    color: rgb(51 48 93);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 10px;
}


.about-services {
    margin-top: 0px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
    font-weight: 600;
    color: #222222b5;
}

.service-item span {
    color: #f66e0b;
    font-weight: 800;
    min-width: 50px;
}




@media(max-width:991px) {

    .about-section {
        padding: 90px 0;
    }

    .about-content {
        text-align: center;
    }

    .service-item {
        justify-content: center;
    }

    .experience-badge {
        left: 20px;
    }

}

@media(max-width:768px) {

    .about-content h2 {
        font-size: 2.3rem;
    }

    .about-content p {
        font-size: 16px;
    }

    .service-item {
        font-size: 16px;
        gap: 10px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .about-section {
        padding: 40px 0;
    }

    .experience-badge {
        padding: 15px 20px;
    }

    .experience-badge h3 {
        font-size: 24px;
    }


    .about-content {
        text-align: left;
        margin-top: 20px;
    }

    .service-item span {
        min-width: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .service-item {
        font-size: 14px;
        gap: 10px;
    }


    .service-item {
        justify-content: left;
    }

}





.services-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .78)), url(../img/battery.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-section .services-heading {
    text-align: center;
    margin: 0 auto 60px;
}

.services-section .section-tag {
    display: inline-block;
    color: #f66e0b;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.services-section .services-heading h2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 60px);
    font-weight: 800;
}

.services-section .services-heading p {
    color: #ffff;
    font-size: 18px;
    line-height: 1.8;
}


.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.services-section .service-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 30px;
    overflow: hidden;
    transition: .4s ease;
    padding: 15px;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    border-color: #f66e0b;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3);
}


.services-section .service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.services-section .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
    border-radius: 20px 20px 0px 0px;
}

.services-section .service-card:hover img {
    transform: scale(1.08);
}



.services-section .service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(255, 180, 0);
    color: rgb(50 48 96);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    display: none;
}

.services-section .service-content {
    padding: 10px 0px 0px 10px;
}

.services-section .service-content h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.services-section .service-content p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 11px;
}



.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #f66e0b;
    font-size: 15px;
    font-weight: 700;
    transition: .3s;
}

.learn-more-btn i {
    transition: .3s;
}

.learn-more-btn:hover {
    color: #f66e0b;
}

.learn-more-btn:hover i {
    transform:
        translate(4px, -4px);
}



@media(max-width:991px) {

    .services-section .services-section {
        padding: 90px 0;
    }

    .services-section .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .services-section .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section .services-heading h2 {
        font-size: 2.5rem;
    }

    .services-section .service-image {
        height: 220px;
    }

    .services-section .service-content {
        padding: 25px;
    }

    .services-section .service-content h3 {
        font-size: 22px;
    }

}

@media(max-width:576px) {

    .services-section {
        padding: 40px 0;
    }

    .services-section .service-image {
        height: 200px;
    }

    .services-section .services-heading p {
        font-size: 16px;
    }

    .services-section .services-heading p {
        font-size: 16px;
        line-height: 1.5;
    }


    .services-section .services-heading h2 {
        font-size: 24px;
    }

    .services-section .services-heading {
        text-align: left;
        margin: 0 auto 30px;
    }


    .services-section .service-card {
        padding: 10px;
    }

    .services-section .service-content {
        padding: 15px 0;
    }


    .services-section .service-content h3 {
        font-size: 20px;
    }

}






.trust-bento-section {
    padding: 80px 0 40px;
    background: #ffffff;
}

.trust-bento-header {
    text-align: center;
    margin: 0 auto 40px;
}

.trust-bento-tag {
    display: inline-block;
    color: #f66e0b;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.trust-bento-title {
    color: #33325d;
    font-size: clamp(2.8rem, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.trust-bento-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}



.trust-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}



.trust-bento-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
}

.trust-bento-card:hover {
    transform: translateY(-10px);
    border-color: #d7b88a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}


.trust-bento-large {
    grid-column: span 2;
}



.trust-bento-wide {
    grid-column: span 2;
}

.trust-bento-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f66e0b, #763a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.trust-bento-icon i {
    font-size: 32px;
    color: #fff;
}



.trust-bento-number {
    position: absolute;
    right: 25px;
    bottom: 15px;
    font-size: 70px;
    font-weight: 900;
    color: #fff4e8;
    line-height: 1;
}


.trust-bento-card h3 {
    color: rgb(122 122 122);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-bento-card p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}



@media(max-width:991px) {
    .trust-bento-section {
        padding: 90px 0;
    }

    .trust-bento-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-bento-large {
        grid-column: span 2;
    }

    .trust-bento-wide {
        grid-column: span 2;
    }

}



@media(max-width:768px) {

    .trust-bento-grid {
        grid-template-columns: 1fr;
    }

    .trust-bento-large,
    .trust-bento-wide {
        grid-column: span 1;
    }

    .trust-bento-card {
        padding: 30px;
    }

    .trust-bento-title {
        font-size: 2.5rem;
    }

    .trust-bento-description {
        font-size: 16px;
    }

    .trust-bento-number {
        font-size: 50px;
    }

}



@media(max-width:576px) {

    .trust-bento-section {
        padding: 50px 0;
    }

    .trust-bento-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .trust-bento-icon i {
        font-size: 26px;
    }

    .trust-bento-card h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .trust-bento-header {
        text-align: left;
        margin: 0 auto 30px;
    }


    .trust-bento-tag {
        letter-spacing: 2px;
    }


    .trust-bento-title {
        font-size: 24px;
    }


    .trust-bento-description {
        font-size: 16px;
        line-height: 1.5;
    }


    .trust-bento-card {
        padding: 15px;
    }

}








.company-stats-section {
    background: #ffffff;
    padding: 0px 0 40px;
    overflow: hidden;
    position: relative;
}


.company-car-image {
    position: relative;
}

.company-car-image img {
    width: 100%;
    display: block;
}


.company-content-wrapper {
    position: relative;
    padding: 80px;
}

.company-crane {
    position: absolute;
    top: -100px;
    right: 40px;
    z-index: 5;
}

.company-crane img {
    height: 320px;
    object-fit: contain;
}

.company-content h2 {
    font-size: clamp(2rem, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    color: #322f5a;
    margin-bottom: 40px;
}

.company-content h2 span {
    color: #f66e0b;
}



.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}



.company-stat-box {
    transition: .4s;
}

.company-stat-box:hover {
    transform: translateY(-5px);
}

.company-stat-box h3 {
    font-size: clamp(3rem, 6vw, 60px);
    font-weight: 900;
    line-height: 1;
    color: #1111118f;
    margin-bottom: 10px;
}



.company-stat-box p {
    font-size: 24px;
    font-weight: 700;
    color: #1111118f;
    margin: 0;
}




@media(max-width:1200px) {

    .company-content-wrapper {
        padding: 60px;
    }

    .company-crane img {
        height: 250px;
    }

}



@media(max-width:991px) {

    .company-stats-section {
        padding: 80px 0;
    }

    .company-content-wrapper {
        padding: 50px 25px;
    }

    .company-content {
        text-align: center;
    }

    .company-content h2 {
        margin-bottom: 50px;
    }

    .company-crane {
        display: none;
    }

}



@media(max-width:768px) {

    .company-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .company-content h2 {
        font-size: 2rem;
    }

    .company-stat-box h3 {
        font-size: 4rem;
    }

    .company-stat-box p {
        font-size: 20px;
    }

}



@media(max-width:576px) {

    .company-stats-section {
        padding: 0px 0;
    }

    .company-content-wrapper {
        padding: 40px 20px;
    }

    .company-content h2 {
        font-size: 20px;
    }

    .company-stat-box h3 {
        font-size: 40px;
        margin-bottom: 5px;
    }


    .company-stat-box p {
        font-size: 18px;
    }


    .company-stats-grid {
        gap: 30px;
    }

    .company-content h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

}








.process-v2-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, .78), rgba(0, 0, 0, .78)), url(../img/emergency.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



.process-v2-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.process-v2-heading span {
    color: rgb(246 110 11);
    letter-spacing: 4px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.process-v2-heading h2 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.process-v2-heading p {
    color: #d1d5db;
    font-size: 18px;
}



.process-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-v2-card {
    position: relative;
    padding: 40px;
    border-left: 5px solid #f66e0b;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    transition: .4s;
    overflow: hidden;
}

.process-v2-card:hover {

    transform: translateY(-10px);
    background: rgba(255, 255, 255, .12);
}



.process-v2-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 70px;
    font-weight: 900;
    color: rgb(255 255 255 / 24%);
}


.process-v2-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f66e0b, #763a3e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-v2-icon i {
    font-size: 32px;
    color: #fff;
}


.process-v2-card h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.process-v2-card p {
    color: #d1d5db;
    line-height: 1.8;
    margin: 0;
}


@media(max-width:991px) {

    .process-v2-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .process-v2-section {
        padding: 80px 0;
    }

    .process-v2-grid {
        grid-template-columns: 1fr;
    }

    .process-v2-card {
        padding: 20px;
    }

    .process-v2-number {
        font-size: 55px;
    }

    .process-v2-section {
        padding: 60px 0;
    }


    .process-v2-heading {
        text-align: left;
        max-width: 100%;
        margin: 0 auto 40px;
    }


    .process-v2-heading h2 {
        font-size: clamp(24px, 5vw, 4.8rem);
        margin-bottom: 15px;
    }

    .process-v2-heading p {
        font-size: 16px;
    }

    .process-v2-card h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }


    .process-v2-card p {
        color: #d1d5db;
        line-height: 1.5;
        margin: 0;
    }

}







.image-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 350px;
    overflow: hidden;
    display: none;
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    animation: popupSlide .5s ease;
}

.image-popup img {
    width: 100%;
    display: block;
}

.image-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    color: #ffff;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
}

@keyframes popupSlide {

    from {
        opacity: 0;
        transform: translateX(100px);

    }

    to {
        opacity: 1;
        transform:
            translateX(0);
    }
}

@media(max-width:576px) {
    .image-popup {
        width: 88%;
        right: 7%;
        bottom: 40%;
    }

}







.contact-cta-section {
    padding: 80px 0;
}



.contact-cta-wrapper {
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}



.contact-cta-tag {
    display: inline-block;
    color: #f66e0b;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-cta-content h2 {
    color: #2e2f5d;
    font-size: clamp(2.5rem, 5vw, 84px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-cta-content h2 span {
    color: #f66e0b;
}

.contact-cta-content p {
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
}


.contact-cta-note {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7a7a7a;
    font-weight: 600;
}

.contact-cta-note i {
    color: #f66e0b;
    font-size: 22px;
}


.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}


.contact-info-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 25px;
    padding: 30px;
    transition: .4s;
    box-shadow: 0px 4px 10px #00000052;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: #f66e0b;
}


.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgb(246 110 11), rgb(133, 77, 74));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.contact-icon i {
    color: #ffff;
    font-size: 28px;
}


.contact-info-card h4 {
    color: #605b5b;
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-card p {
    color: #7a7a7a;
    margin: 0;
    line-height: 1.5;
}



@media(max-width:991px) {

    .contact-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

}

@media(max-width:768px) {

    .contact-cta-section {
        padding: 80px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-content h2 {
        font-size: 2.3rem;
    }

}

@media(max-width:576px) {

    .contact-cta-wrapper {
        padding: 0 0;
    }

    .contact-info-card {
        padding: 18px;
    }


    .contact-info-card p {
        font-size: 14px;
    }



    .contact-cta-wrapper {
        grid-template-columns: 1fr;
        padding: 0px 0px !important;
    }


    .contact-cta-section {
        padding: 50px 0;
    }


    .contact-cta-tag {
        padding: 0px 0px;
        margin-bottom: 17px;
    }

    .contact-cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }


    .contact-cta-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

}




.main-footer {
    background: #0f172a;
    color: #fff;
    padding-top: 80px;
}



.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}



.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #f66e0b;
    margin-bottom: 9px;
    line-height: 1.2;
}

.footer-about {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 18px;
}



.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #f66e0b;
}



.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #f66e0b;
    padding-left: 6px;
}



.footer-contact div {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #cbd5e1;
    align-items: center;
}

.footer-contact i {
    color: #f66e0b;
    min-width: 18px;
}



.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #f66e0b;
    transform: translateY(-4px);
}



.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #fafdf4;
}



@media(max-width:991px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



@media(max-width:768px) {

    .main-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

}



@media(max-width:480px) {

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-contact div {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 22px 0;
    }


    .footer-contact div {
        font-size: 13px;
    }


    .main-footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}






.emergency-roadside-assistance-section {
    padding: 170px 0 40px;
    background: linear-gradient(#000000d9, #000000bd), url(../img/hero-section.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.emergency-roadside-assistance-content {
    color: #fff;
}

.emergency-roadside-assistance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #f66e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.emergency-roadside-assistance-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.emergency-roadside-assistance-content h1 span {
    color: #f66e0b;
}

.emergency-roadside-assistance-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

.emergency-roadside-assistance-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    height: 100%;
}



@media(max-width:991px) {

    .emergency-roadside-assistance-section {
        text-align: center;
        padding: 80px 0;
    }

    .emergency-roadside-assistance-content h1 {
        font-size: 48px;
    }


}


@media(max-width:576px) {

    .emergency-roadside-assistance-content h1 {
        font-size: 22px;
    }

    .emergency-roadside-assistance-content p {
        font-size: 15px;
        line-height: 1.5;
    }


    .emergency-roadside-assistance-badge {
        font-size: 15px;
    }


    .emergency-roadside-assistance-section {
        text-align: left;
        padding: 60px 0;
    }


    .emergency-roadside-assistance-section .row.mt-4 {
        display: none;
    }

}




.what-we-cover {
    background: #f8fafc;
    overflow: hidden;
    padding: 80px 0;
}

.what-we-cover-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.what-we-cover-heading span {
    display: inline-block;
    color: #f66e0b;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.what-we-cover-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #2e315d;
    margin-bottom: 15px;
}

.what-we-cover-heading p {
    color: #6b7280;
    line-height: 1.9;
}



.what-we-cover-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.what-we-cover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
}



.what-we-cover-image {
    height: 240px;
    overflow: hidden;
}

.what-we-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.what-we-cover-card:hover img {
    transform: scale(1.08);
}



.what-we-cover-content {
    padding: 18px;
    text-align: center;
}

.what-we-cover-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827b5;
    margin-bottom: 0px;
}

.what-we-cover-content p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}




@media(max-width:991px) {

    .what-we-cover-heading h2 {
        font-size: 40px;
    }

}

@media(max-width:767px) {

    .what-we-cover-heading {
        margin-bottom: 40px;
    }

    .what-we-cover-heading h2 {
        font-size: 32px;
    }

    .what-we-cover-content {
        padding: 25px;
    }

    .what-we-cover-image {
        height: 220px;
    }

}


@media(max-width:480px) {

    .what-we-cover-heading h2 {
        font-size: 28px;
    }

    .what-we-cover-content h3 {
        font-size: 20px;
    }

    .what-we-cover-image {
        height: 200px;
    }


    .what-we-cover {
        padding: 50px 0;
    }


    .what-we-cover-heading {
        margin-bottom: 30px;
        text-align: left !important;
    }


    .what-we-cover-heading span {
        font-size: 17px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }


    .what-we-cover-heading p {
        line-height: 1.5;
    }


    .what-we-cover-content {
        padding: 15px;
    }


    .what-we-cover-content h3 {
        font-size: 18px;
    }

}





.hero-vehicle-towing-service {
    padding: 170px 0 40px;
    background: linear-gradient(#000000d9, #000000bd), url(../img/hero-section.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.hero-vehicle-towing-service-content {
    color: #ffffff;
}



.hero-vehicle-towing-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 50px;
    color: #f66e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}



.hero-vehicle-towing-service-content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-vehicle-towing-service-content h1 span {
    color: #f66e0b;
}

.hero-vehicle-towing-service-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgb(255 255 255);
    margin-bottom: 35px;
}

.hero-vehicle-towing-service-features {
    line-height: 50px;
}

.hero-vehicle-towing-service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-vehicle-towing-service-feature i {
    color: #f66e0b;
}



.hero-vehicle-towing-service-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-vehicle-towing-service-btn-primary {
    background: #f66e0b;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-vehicle-towing-service-btn-primary:hover {
    background: #ff8400;
    color: #fff;
}

.hero-vehicle-towing-service-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.hero-vehicle-towing-service-btn-secondary:hover {
    background: #ffffff;
    color: #111827;
}



.hero-vehicle-towing-service-image {
    text-align: center;
}

.hero-vehicle-towing-service-image img {
    width: 100%;
    max-width: 650px;
}




.hero-vehicle-towing-service-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    color: #ffffff;
    font-weight: 600;
}

.hero-vehicle-towing-service-highlight i {
    color: #f66e0b;
    font-size: 20px;
}

@media(max-width:768px) {

    .hero-vehicle-towing-service-highlight {
        justify-content: center;
        text-align: center;
    }


    .hero-vehicle-towing-service {
        padding: 60px 0 40px;
    }

    .hero-vehicle-towing-service-badge {
        padding: 12px 17px;
    }


    .hero-vehicle-towing-service-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }


    .hero-vehicle-towing-service-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 17px;
    }

    .hero-vehicle-towing-service-highlight {
        display: none;
    }


    .hero-vehicle-towing-service-features {
        line-height: 39px;
        margin-bottom: 25px;
    }

}







.our-towing-services {
    background: #f8fafc;
    padding: 80px 0;
}



.our-towing-services-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.our-towing-services-heading span {
    display: inline-block;
    color: #f66e0b;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.our-towing-services-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #2e2f5a;
    margin-bottom: 15px;
}

.our-towing-services-heading p {
    color: #6b7280;
    line-height: 1.9;
}



.our-towing-services-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.our-towing-services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}



.our-towing-services-image {
    height: 240px;
    overflow: hidden;
}

.our-towing-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.our-towing-services-card:hover img {
    transform: scale(1.08);
}



.our-towing-services-content {
    padding: 20px;
    text-align: center;
}

.our-towing-services-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827a6;
    margin-bottom: 0px;
}

.our-towing-services-content p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}




@media(max-width:991px) {

    .our-towing-services-heading h2 {

        font-size: 40px;
    }

}



@media(max-width:767px) {

    .our-towing-services-heading {
        margin-bottom: 40px;
    }

    .our-towing-services-heading h2 {
        font-size: 32px;
    }

    .our-towing-services-content {
        padding: 25px;
    }

    .our-towing-services-image {
        height: 220px;
    }

}



@media(max-width:480px) {

    .our-towing-services-heading h2 {
        font-size: 26px;
        margin-bottom: 7px;
    }

    .our-towing-services-content h3 {
        font-size: 18px;
    }

    .our-towing-services-image {
        height: 200px;
    }

    .our-towing-services {
        background: #f8fafc;
        padding: 55px 0;
    }

    .our-towing-services-heading {
        margin-bottom: 40px;
        text-align: left !important;
    }

    .our-towing-services-heading span {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }


    .our-towing-services-heading p {
        line-height: 1.5;
    }

    .our-towing-services-content {
        padding: 20px 0 20px 0;
    }

}





.crane-recovery-services {
    padding: 170px 0 40px;
    background: linear-gradient(#000000d9, #000000bd), url(../img/hero-section.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



.crane-recovery-services-content {
    color: #ffffff;
}

.crane-recovery-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #f66e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.crane-recovery-services-badge i {
    font-size: 15px;
}



.crane-recovery-services-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}


.crane-recovery-services-content h1 span {
    color: #f66e0b;
}


.crane-recovery-services-content p {
    color: #ffffff;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 20px;
}


.crane-recovery-services-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    margin-bottom: 35px;
}

.crane-recovery-services-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
}


.crane-recovery-services-feature i {
    color: #f66e0b;
}


.crane-recovery-services-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}





@media(max-width:991px) {

    .crane-recovery-services {
        padding: 90px 0;
    }

    .crane-recovery-services-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .crane-recovery-services-content h1 {
        font-size: 52px;
    }

    .crane-recovery-services-features {
        justify-content: center;
    }

}



@media(max-width:767px) {

    .crane-recovery-services {
        padding: 60px 0;
    }

    .crane-recovery-services-content h1 {
        font-size: 40px;
    }

    .crane-recovery-services-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .crane-recovery-services-features {
        flex-direction: column;
        align-items: center;
        display: none;
    }


    .crane-recovery-services-content {
        text-align: left;
        margin-bottom: 40px;
    }

}



@media(max-width:480px) {

    .crane-recovery-services-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .crane-recovery-services-badge {
        font-size: 13px;
        padding: 10px 18px;
    }

}










.crane-recovery-service-section {
    background: #f8fafc;
    overflow: hidden;
    padding: 80px 0px;
}



.crane-recovery-service-heading {
    max-width: 800px;
    margin: 0 auto 60px;
}

.crane-recovery-service-heading span {
    display: inline-block;
    color: #f66e0b;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.crane-recovery-service-heading h2 {
    font-size: 48px;
    font-weight: 800;
    color: #2e2f5b;
    margin-bottom: 15px;
}

.crane-recovery-service-heading p {
    color: #6b7280;
    line-height: 1.9;
}



.crane-recovery-service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.crane-recovery-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}



.crane-recovery-service-image {
    height: 250px;
    overflow: hidden;
}

.crane-recovery-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.crane-recovery-service-card:hover img {
    transform: scale(1.08);
}


.crane-recovery-service-content {
    padding: 20px;
    text-align: center;
}

.crane-recovery-service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827bf;
    margin-bottom: 0px;
}

.crane-recovery-service-content p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}






@media(max-width:991px) {

    .crane-recovery-service-heading h2 {
        font-size: 40px;
    }

}



@media(max-width:767px) {
    .crane-recovery-service-heading {
        margin-bottom: 30px;
        text-align: left !important;
    }

    .crane-recovery-service-heading h2 {
        font-size: 32px;
    }

    .crane-recovery-service-content {
        padding: 20px;
    }

    .crane-recovery-service-image {

        height: 220px;
    }

    .crane-recovery-service-section {
        padding: 55px 0px;
    }


    .crane-recovery-service-heading span {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 2px;
    }

}



@media(max-width:480px) {

    .crane-recovery-service-heading h2 {
        font-size: 25px;
    }

    .crane-recovery-service-content h3 {
        font-size: 18px;
    }

    .crane-recovery-service-image {
        height: 200px;
    }

    .crane-recovery-service-heading p {
        color: #6b7280;
        line-height: 1.5;
    }

}




.thank-you-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(#000000d9, #000000bd), url(../img/hero-section.webp);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.thank-you-page {
    width: 100%;
    max-width: 700px;
}

.thank-you-card {

    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.thank-you-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff7a00, #ffb100);
}

.thank-you-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e2f5e, #2e2f5e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon i {
    font-size: 60px;
    color: #ffffff;
    font-weight: bold;
}

.thank-you-card h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
}

.thank-you-card p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 35px;
}

.thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.thank-you-btn:hover {
    background: #e96d00;
    color: #ffffff;
    transform: translateY(-3px);
}

.thank-you-support {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    color: #ffffff;
    font-size: 15px;
}

.thank-you-support strong {
    color: #ff7a00;
}

@media(max-width:768px) {

    .thank-you-card {
        padding: 45px 30px;
    }

    .thank-you-card h1 {
        font-size: 38px;
    }

    .thank-you-card p {
        font-size: 16px;
    }
}



@media(max-width:576px) {

    .thank-you-card {
        padding: 35px 25px;
    }

    .thank-you-icon {
        width: 90px;
        height: 90px;
    }

    .thank-you-icon i {
        font-size: 35px;
    }

    .thank-you-card h1 {
        font-size: 30px;
    }

    .thank-you-btn {
        width: 100%;
        justify-content: center;
    }
}



.thank-you-support a {
    color: #ff7a00;
}




.vehicle-number {
    text-transform: uppercase;
}





.roadside-widget-container {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 9999;
    gap: 20px;
}



.roadside-call-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    margin-bottom: 37px;
    box-shadow: 0 15px 35px rgba(255, 122, 0, .35);
    animation: roadsidePulse 2s infinite;
}



.roadside-whatsapp-button {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    animation: roadsidePulse 2s infinite;
}

@keyframes roadsidePulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}



.roadside-chat-popup {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 380px;
    max-height: 570px;
    overflow-y: auto;
    border-radius: 25px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    display: none;
}

.roadside-chat-popup.active {
    display: block;
}



.roadside-chat-header {
    background: #25d366;
    color: #fff;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roadside-chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.roadside-chat-logo {
    position: relative;
    width: 55px;
    height: 55px;
}

.roadside-chat-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.roadside-chat-logo span {
    width: 12px;
    height: 12px;
    background: #00ff40;
    border-radius: 50%;
    position: absolute;
    right: 2px;
    bottom: 2px;
    border: 2px solid #fff;
}

.roadside-chat-header h5 {
    margin: 0;
    font-size: 18px;
}

.roadside-chat-header p {
    margin: 0;
    font-size: 12px;
}

.roadside-chat-header button {
    border: none;
    background: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}


.roadside-welcome-box {
    margin: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 15px;
    line-height: 1.5;
}



.roadside-service-list {
    padding: 0 15px;
}

.roadside-service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    margin-bottom: 5px;
    text-decoration: none;
    border-radius: 15px;
    background: #f8fafc;
    transition: .3s;
}

.roadside-service-card:hover {
    background: #25d366;
    color: #fff;
}

.roadside-service-card img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
}

.roadside-service-card div {
    flex: 1;
}

.roadside-service-card h6 {
    margin: 0;
    color: #111827;
}

.roadside-service-card p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #64748b;
}

.roadside-service-card:hover h6,
.roadside-service-card:hover p,
.roadside-service-card:hover i {
    color: #fff;
}



.roadside-custom-message {
    padding: 15px;
}

.roadside-custom-message label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.roadside-custom-message textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px;
    resize: none;
    outline: none;
}

.roadside-send-btn {
    width: 100%;
    border: none;
    margin-top: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}



@media(max-width:576px) {

    .roadside-widget-container {
        right: 15px;
        bottom: 93px;
    }

    .roadside-chat-popup {
        width: 370px;
        bottom: -25px;
    }

    .roadside-call-button,
    .roadside-whatsapp-button {
        width: 58px;
        height: 58px;
    }
}






.roadside-gallery-section {
    padding: 80px 0;
    background: #f8fafc;
}

.roadside-gallery-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.roadside-gallery-heading span {
    color: rgb(246 110 11);
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.roadside-gallery-heading h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2f305a;
}

.roadside-gallery-heading p {

    color: #64748b;

    line-height: 1.8;
}

.roadside-gallery-wrapper {

    position: relative;
}

/* Desktop Grid */

.roadside-gallery-track {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.roadside-gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.roadside-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.roadside-gallery-item:hover img {
    transform: scale(1.08);
}

.roadside-gallery-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #ff7a0091;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.roadside-gallery-prev {
    left: 10px;
}

.roadside-gallery-next {
    right: 10px;
}




@media(max-width:991px) {

    .roadside-gallery-wrapper {
        overflow: hidden;
    }

    .roadside-gallery-track {
        display: flex;
        gap: 0;
        transition: .5s ease;
        width: 100%;
    }

    .roadside-gallery-item {

        min-width: 100%;
        flex: 0 0 100%;
        border-radius: 20px;
    }

    .roadside-gallery-item img {
        width: 100%;
        height: 280px;

        object-fit: cover;
    }

    .roadside-gallery-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .roadside-gallery-heading h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .roadside-gallery-section {
        padding: 50px 0 30px;
    }

    .roadside-gallery-heading h2 {
        font-size: 23px;
    }


    .roadside-gallery-heading span {
        letter-spacing: 2px;
    }

    .roadside-gallery-item img {

        height: 240px;
    }

    .roadside-gallery-btn {
        width: 40px;
        height: 40px;
    }



    .roadside-gallery-heading {
        text-align: left;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .roadside-gallery-heading p {
        line-height: 1.5;
    }

    .roadside-gallery-prev {
        left: 0px;
    }


    .roadside-gallery-next {
        right: 0px;
    }

}