@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #D33D50;
    --secondary-color: #4A0E30;
    --background-color: #f5f5f5;
    --text-color: #260819;
    --primary-font-family: 'Poppins', sans-serif;
    --main-heading-font-family: 'Bebas Neue', cursive;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--primary-font-family);
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--primary-font-family);
}

.btn-secondary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.tel-num {
    font-family: var(--primary-font-family);
    font-weight: bold;
    color: var(--text-color) !important;
    transition: color .3s ease;
    color: var(--primary-color) !important;
}

.banner-heading {
    font-family: var(--main-heading-font-family) !important;
    color: #fff;
}

.banner-content {
    font-family: var(--primary-font-family) !important;
    color: #fff;
}

.sp {
    color: var(--primary-color);
}

/* =====================================Banner Section===================================== */
#hero {
    background: url('../images/banner.png') no-repeat center center/cover;
    min-height: 90vh;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heroResposive {
    background: url('../images/banner.png') no-repeat center center/cover;
}

.form-head {
    font-family: var(--main-heading-font-family) !important;
    color: var(--text-color);
}

label {
    font-family: var(--primary-font-family) !important;
    color: var(--text-color);
    font-weight: 700;
}

::placeholder {
    font-family: var(--primary-font-family) !important;
    color: var(--text-color);
}

.form-conatiner {
    background-color: rgba(255, 255, 255, 0.433);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Lead Form Modal */
.lead-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

#leadFormModal .modal-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 16px 20px 12px;
}

#leadFormModal .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.9;
}

#leadFormModal .modal-body {
    background-color: #fff;
}

#leadFormModal .form-head {
    color: var(--secondary-color);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

#leadFormModal .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--primary-font-family);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#leadFormModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 61, 80, 0.15);
}

.badge-container {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-family: var(--primary-font-family) !important;
}

i {
    font-size: 58px;
    padding: 0px;
}

.cout {
    font-size: 32px;
    font-weight: bold;
    font-family: var(--main-heading-font-family) !important;
}

.cout-text {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

/* =================brand section========================    */
#brands {
    background-color: var(--secondary-color);
}

#brandsRes {
    display: none !important;
    background-color: var(--secondary-color);

}

.btn-con-res {
    display: none !important;
}

@media screen and (max-width:628px) {
    #brandsRes {
        display: block !important;
    }

    #brands {
        display: none !important;
    }

    .btn-con-res {

        display: flex !important;
    }
}

.barnd-contant-res {
    display: none;
}

@media screen and (max-width:1200px) {
    .barnd-contant-res {
        display: block;
    }

    .brand-card {
        width: 200px;
        height: 120px;
    }
}

@media screen and (max-width: 628px) {
    .barnd-contant-res {
        display: block;
    }
}

.brand-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    background-color: #ffffff;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: all .3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.brand-card:hover {
    filter: grayscale(0%);
}

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(175, 20, 40, 0.93);
    color: #fff;
    padding: 8px 10px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    text-align: center;
}

.brand-card:hover .brand-overlay {
    transform: translateY(0);
}

.brand-overlay h6 {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.brand-overlay p {
    font-size: 0.62rem;
    margin: 0;
    line-height: 1.3;
}

@media screen and (max-width: 1200px) {
    .brand-overlay h6 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 3px;
        line-height: 1.2;
    }

    .brand-overlay p {
        font-size: 10px !important;
        margin: 0;
        line-height: 1.3;
    }
}


.brand-heading {
    font-family: var(--main-heading-font-family) !important;
    color: var(--background-color);
    font-size: 62px;
    text-align: center;
}

.btn-brand {
    border-color: var(--primary-color) !important;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.products-group {
    overflow: hidden;
}

.product-slider {
    display: flex;
    width: max-content;
    gap: 16px;
    transition: transform 0.4s ease;
    padding: 0px 32px;
}

.product-slider:hover {
    animation-play-state: paused;
}

.product-heading {
    font-family: var(--main-heading-font-family) !important;
    color: var(--text-color);
    font-size: 62px;
}

@media screen and (max-width:628px) {
    .product-heading {
        font-size: 42px;
    }
}

.bt-next {
    font-size: 28px;
}

.product-card {
    /* width: 290px; */
    max-width: 310px;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--background-color);
}

.product-card h5 {
    font-family: var(--primary-font-family) !important;
    font-weight: 700;
    color: white !important;
}

.product-card:hover {
    cursor: grab;
}

#services {
    background-image: linear-gradient(-90deg, var(--primary-color), var(--secondary-color));
}

#services p {
    font-family: var(--primary-font-family) !important;

}

.service-card-container {
    background-color: white;
    color: var(--text-color);
    width: 100%;
    height: 310px;
    position: relative;
}

.service-card-front {
    font-family: var(--main-heading-font-family) !important;
    z-index: 200;
}

.service-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: white;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in;
    text-align: center;
}

.service-card-container:hover .service-back {
    display: flex;
    z-index: 300;
}

/* =================products============= */
.section-container {
    width: 100%;
    background: #eee;
    font-family: sans-serif;
}

/* Tabs container */
.tabs {
    scrollbar-width: none;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
}

.tabs::-webkit-scrollbar {
    display: none;
}

/* Tab style */
.tab {
    padding: 10px 18px;
    background: none;
    color: white;
    border-radius: 6px;
    white-space: nowrap;
    /* 🔥 prevents breaking */
    font-size: 32px;
    position: relative;
}

/* Active tab */
.tab.active {
    background: #d63b45;
}

/* Arrow */
.tab.active::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Content */
.tab-contant {
    display: none;
    padding: 15px;
    border-radius: 8px;
}

.tab-contant.active {
    display: block;
    color: rgb(255, 255, 255) !important;
    font-size: 24px;
}

/* TEXT FIX */
.tab-contant p {
    line-height: 1.6;
    word-break: break-word;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .tab {
        font-size: 18px;
        padding: 8px 12px;
    }

    .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

}

/* Content */
.section-content {
    padding: 20px;
}

/* Text */
.section-content p {
    max-width: 80%;
    line-height: 1.6;
    color: #333;
}

/* Button */
.quote-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #d63b45;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.tabs {
    font-family: var(--main-heading-font-family) !important;
    font-size: 24px;
    height: fit-content;
}

.tab {
    padding: 12px;
}

.active {
    background-color: var(--text-color) !important;
    color: rgb(255, 255, 255);
    border-radius: none !important;
}

.name-testimonial {
    font-size: 16px;
    font-family: var(--primary-font-family);
    font-weight: 7000;

}

.company-testimonial {
    font-family: var(--primary-font-family);
    font-weight: 200;
}

.pro-pic {
    width: 82px;
    height: 82px;
}

footer {
    background-color: #4A0E30;
    color: white;
}

.fo-logo h5 {
    font-family: var(--main-heading-font-family);
    font-size: 24px;
}

.fo-logo i {
    font-size: 32px;

}

.fo-logo p {
    font-family: var(--primary-font-family);
    font-size: 14px !important;
}

.fo-logo img {
    width: 210px;

}

.terms-conditions {
    background-color: #360a243e;
    padding: 12px;
    line-height: 24px;
}

.terms-conditions h3 {
    font-family: var(--primary-font-family) !important;
    font-size: 18px !important;
}

.terms-conditions p {
    font-size: 12px;
    text-align: justify;
}

.accordion-header button {
    font-family: var(--primary-font-family) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.accordion-body {
    font-family: var(--primary-font-family);
    font-size: 16px;
}

.testimonial-card {
    min-width: 40px;
    max-width: 440px;
}

@media screen and (max-width:678px) {
    .testimonial-card {
        max-width: 320px;
    }
}

.btn {
    transition: all .3s ease-in;
}

.btn-next:hover {
    background-color: var(--primary-color) !important;
    border: 1px solid white;
}

.fo-bottom {
    background-color: #28071a;
}

.fo-bottom p {
    color: #ffffff51;
    font-family: var(--primary-font-family);
}

.testimonial-container {
    overflow: hidden;
    position: relative;
}



.testimonial-card {
    min-width: 300px;
    /* adjust based on your design */
    flex-shrink: 0;
}


@media screen and (max-width:628px) {
    main {
        margin-top: 120px;
    }

    p {
        font-size: 16px !important;
    }

    .form-conatiner {
        width: 100% !important;
    }

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

    .badge-box i {
        font-size: 24px;
        text-align: center;
    }

    .cout {
        font-size: 18px;
        text-align: center;
    }

    .cout-text {
        font-size: 8px;
        text-align: center;
    }

    .barnd-contant {
        padding: 24px 0px;
    }

    .barnd-contant h2 {
        font-size: 52px;
    }

    .brand-card {
        height: 110px;
        width: 210px !important;
    }

    .btn-container i {
        font-size: 12px;
    }

    .products-group {
        width: 100%;
        /* background-color: #28071a !important; */
    }

    .product-slider {
        min-width: 402px;
        padding: 20px;
        /* background-color: #28071a; */
    }

    .product-card {
        width: 60%;
    }

    .product-card.card-body {
        justify-content: center;
    }

    .btn-container {
        display: none !important;
    }

    /* .service-group {
        display: flex !important;
        flex-direction: column;
    } */
    .faq-img {
        display: none !important;
    }
}

/* =================resposive=============== */
#heroResposive {
    display: none !important;
    padding: 32px 0px !important;
}

@media screen and (max-width: 628px) {
    #heroResposive {
        display: block !important;
    }

    #hero {
        display: none !important;
    }
}

/* ================service============== */
.carousel-wrapper-1 {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.service-group {
    display: flex;
    gap: 20px;
    transition: transform 0.3s linear;
}


.service-card-container {
    min-width: 210px !important;
    max-width: 280px !important;
    flex-shrink: 0;
}

.prev-btn,
.prev-btn-tes,
.next-btn,
.next-btn-tes {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.card-text {
    text-align: justify;
    text-justify: inter-word;
}

/* WhatsApp Floating Button */
.whatsapp-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.whatsapp-float {
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.whatsapp-float i {
    font-size: 35px !important;
    color: white;
    padding: 0;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.whatsapp-text {
    background-color: #333;
    color: white;
    font-family: var(--primary-font-family);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 5px;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.banner-image-slider {
    background-color: rgba(0, 0, 0, 0.70);
}
.brand-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}


/* Industries We Serve Redesign */
.industry-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.industry-card:hover {
    transform: translateY(-10px);
}
.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(100, 10, 30, 0.95), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 25px;
    transition: all 0.4s ease;
}
.industry-card:hover .industry-overlay {
    height: 75%;
    background: linear-gradient(to top, rgba(100, 10, 30, 0.98) 20%, transparent);
}
.industry-overlay .icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.industry-overlay .icon-circle i {
    color: white;
    font-size: 28px !important;
    padding: 0;
}
.industry-overlay h4 {
    color: white;
    font-family: var(--main-heading-font-family);
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    text-align: center;
}
.industry-desc {
    color: white;
    font-family: var(--primary-font-family);
    font-size: 13px;
    text-align: center;
    margin-top: 15px;
    padding: 0 15px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}
.industry-card:hover .industry-desc {
    opacity: 1;
    max-height: 150px;
}

