@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);
    color: #ffffff !important;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--primary-font-family);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    color: #ffffff !important;
}

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

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: #ffffff !important;
}

.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: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/kluber-hero-bg.png') no-repeat center center/cover;
    min-height: 90vh;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

#heroResposive {
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/kluber-hero-bg.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);
}

.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 {
    max-width: 210px;
    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);
}

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

.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 Cards Premium Design ======================== */
.service-card-container {
    background-color: white;
    color: var(--text-color);
    width: 100%;
    height: 310px;
    position: relative;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Industrial Background Images */
.service-cement {
    background-image: url('../images/industry-cement.png');
}

.service-food {
    background-image: url('../images/industry-food.png');
}

.service-oil {
    background-image: url('../images/industry-oil.png');
}

.service-chemical {
    background-image: url('../images/industry-chemical.png');
}

/* Gradient Overlay for Text Readability */
.card-front-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.card-front-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.card-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(211, 61, 80, 0.3);
}

.card-badge i {
    font-size: 18px;
    color: #ffffff;
}

.card-front-title {
    font-family: var(--primary-font-family) !important;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

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

.service-back p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #333333;
    margin: 0;
    text-align: justify;
}

.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);
}

/* Floating Call & WhatsApp Buttons */
.float-contact-btns {
    position: fixed;
    bottom: 28px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn i {
    font-size: 20px;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.float-call {
    background-color: #1a73e8;
}

.float-whatsapp {
    background-color: #25D366;
}

.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;
}

/* =========== Kluber Products Table =========== */
.kluber-table {
    font-family: var(--primary-font-family);
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.kluber-table thead tr {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.kluber-table tbody tr:nth-child(odd) {
    background-color: #f9f0f3;
}

.kluber-table tbody tr:hover {
    background-color: #f5d5dc;
}

.kluber-table td,
.kluber-table th {
    padding: 10px 20px;
    vertical-align: middle;
}

.kluber-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--secondary-color);
}

.kluber-table td:last-child {
    font-weight: 400;
    color: var(--text-color);
}

/* =========== CTA Section =========== */
#cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6b1545 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

#cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-heading {
    font-family: var(--main-heading-font-family) !important;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.cta-heading .sp {
    color: #ffd6dc;
}

.cta-text {
    font-family: var(--primary-font-family) !important;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    font-size: 17px;
    letter-spacing: 0.5px;
    background-color: #ffffff !important;
    color: var(--secondary-color) !important;
    border-color: #ffffff !important;
    font-family: var(--primary-font-family) !important;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--text-color) !important;
    color: #ffffff !important;
    border-color: var(--text-color) !important;
}

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

    .cta-text {
        font-size: 15px;
    }
}

/* ===================================== Kluber Benefits Section ===================================== */
#kluber-benefits {
    background-color: #ffffff;
    font-family: var(--primary-font-family);
}

.benefits-heading {
    font-family: var(--main-heading-font-family) !important;
    color: var(--text-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
    font-size: 2.8rem;
}

.benefits-heading .sp {
    color: var(--primary-color) !important;
}

.red-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 20px;
}

.benefits-text {
    font-family: var(--primary-font-family);
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: justify;
}

.benefits-row {
    margin-top: 30px;
}

.benefit-col {
    position: relative;
    padding: 0 10px;
}

.benefit-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e0e0e0;
}

.benefit-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: rgba(211, 61, 80, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-col:hover .benefit-icon-wrapper {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.benefit-col:hover .benefit-icon-wrapper i {
    color: #ffffff;
}

.benefit-icon-wrapper i {
    font-size: 22px;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-title {
    font-family: var(--primary-font-family);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
    margin-top: 10px;
}

.benefit-img {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

@media screen and (max-width: 991px) {
    .benefit-col:not(:last-child)::after {
        display: none;
    }

    .benefit-col {
        margin-bottom: 25px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .benefits-row {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .benefit-col {
        max-width: 100%;
    }

    .benefits-heading {
        font-size: 2.2rem;
    }
}

.banner-background-style {
    background-color: rgba(0, 0, 0, 0.60);
}

@media screen and (max-width: 628px) {
    .banner-content {
        color: #fff;
    }
}