:root {
    --primary-red: #A31E22;
    --accent-yellow: #F7D047;
    --dark-red: #7f171a;
    --text-dark: #101010;
    --page-bg: #F5F5F5;
    --text-light: #666666;
    --text-dark-light: #333333;
    --background-white: #FFFFFF;
    --border-color: #C9C9C9;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Onest', sans-serif;

    --h1: 64px;
    --h2: 40px;
    --h3: 32px;
    --h4: 24px;
    --h5: 22px;

    --h1-weight: 700;
    --h2-weight: 700;
    --h3-weight: 700;
    --h4-weight: 700;
    --h5-weight: 700;

    --h1-line: 70px;
    --h2-line: 48px;
    --h3-line: 38px;
    --h4-line: 28px;
    --h5-line: 32px;

    /* Buttons (Onest) */
    --btn-size: 16px;
    --btn-weight: 700;
    --btn-line: 24px;

    /* Footer Form Button (Onest) */
    --footer-form-btn-size: 13px;
    --footer-form-btn-weight: 700;
    --footer-form-btn-line: 19px;

    /* ========== OPEN SANS (DESKTOP) ========== */
    --subheading-size: 22px;
    --subheading-weight: 400;
    --subheading-line: 30px;

    --bullet-size: 22px;
    --bullet-weight: 600;
    --bullet-line: 30px;

    --navbar-item-size: 16px;
    --navbar-item-weight: 600;
    --navbar-item-line: 24px;

    --p1-size: 16px;
    --p1-weight: 400;
    --p1-line: 26px;

    --p2-size: 16px;
    --p2-weight: 600;
    --p2-line: 27px;

    --p-italic-size: 16px;
    --p-italic-weight: 400;
    --p-italic-style: italic;
    --p-italic-line: 24px;

    --footer-placeholder-size: 13px;
    --footer-placeholder-weight: 400;
    --footer-placeholder-line: 19px;

    /* ========== ONEST (MOBILE) ========== */
    --h1-mobile: 36px;
    --h2-mobile: 32px;
    --h3-mobile: 28px;
    --h4-mobile: 24px;
    --h5-mobile: 20px;

    --h1-mobile-weight: 700;
    --h2-mobile-weight: 700;
    --h3-mobile-weight: 700;
    --h4-mobile-weight: 700;
    --h5-mobile-weight: 700;

    --h1-mobile-line: 44px;
    --h2-mobile-line: 40px;
    --h3-mobile-line: 32px;
    --h4-mobile-line: 28px;
    --h5-mobile-line: 24px;

    /* Buttons (Mobile) */
    --btn-mobile-size: 16px;
    --btn-mobile-weight: 700;
    --btn-mobile-line: 24px;

    /* ========== OPEN SANS (MOBILE) ========== */
    --p1-mobile-size: 16px;
    --p1-mobile-weight: 400;
    --p1-mobile-line: 27px;

    --p2-mobile-size: 16px;
    --p2-mobile-weight: 400;
    --p2-mobile-line: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--background-white);

}


.custom-container {
    margin: 0 60px;
}

.custom-container-blog {
    margin: 0 60px;
}

.custom-container-slider {
    margin: 0 30px;
}

h1 {
    font-family: var(--font-secondary);
    font-size: var(--h1);
    font-weight: var(--h1-weight);
    line-height: var(--h1-line);
}

h2 {
    font-family: var(--font-secondary);
    font-size: var(--h2);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line);
}

h3 {
    font-family: var(--font-secondary);
    font-size: var(--h3);
    font-weight: var(--h3-weight);
    line-height: var(--h3-line);
}

h4 {
    font-family: var(--font-secondary);
    font-size: var(--h4);
    font-weight: var(--h4-weight);
    line-height: var(--h4-line);
}

h5 {
    font-family: var(--font-secondary);
    font-size: var(--h5);
    font-weight: var(--h5-weight);
    line-height: var(--h5-line);
}

button,
.btn {
    font-family: var(--font-secondary);
    font-size: var(--btn-size);
    font-weight: var(--btn-weight);
    line-height: var(--btn-line);
}

.footer-form-btn {
    font-family: var(--font-secondary);
    font-size: var(--footer-form-btn-size);
    font-weight: var(--footer-form-btn-weight);
    line-height: var(--footer-form-btn-line);
}

/* Open Sans text styles */
.subheading {
    font-family: var(--font-primary);
    font-size: var(--subheading-size);
    font-weight: var(--subheading-weight);
    line-height: var(--subheading-line);
    color: var(--text-dark);
}

.bullet {
    font-family: var(--font-primary);
    font-size: var(--bullet-size);
    font-weight: var(--bullet-weight);
    line-height: var(--bullet-line);
}

.navbar-item {
    font-family: var(--font-primary);
    font-size: var(--navbar-item-size);
    font-weight: var(--navbar-item-weight);
    line-height: var(--navbar-item-line);
}

p,
.paragraph-1 {
    font-family: var(--font-primary);
    font-size: var(--p1-size);
    font-weight: var(--p1-weight);
    line-height: var(--p1-line);
    color: var(--text-dark);

}

.paragraph-2 {
    font-family: var(--font-primary);
    font-size: var(--p2-size);
    font-weight: var(--p2-weight);
    line-height: var(--p2-line);
    line-height: var(--p1-line);
    color: var(--text-dark-light);
}

.paragraph-italic {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: var(--p-italic-size);
    line-height: var(--p-italic-line);
}

.footer-placeholder {
    font-family: var(--font-primary);
    font-size: var(--footer-placeholder-size);
    font-weight: var(--footer-placeholder-weight);
    line-height: var(--footer-placeholder-line);
}

.first-slider .testimonial-card {
    flex: 0 0 calc(100% / 4);
}

.mb__28 {
    margin-bottom: 28px;
}

.modal-body {

    padding: 0 15px 15px !important;
}

.abt-b {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.why-choice li .fa-check-circle {
    color: var(--primary-red) !important;
}

.machine-card-wrapper .machine-card{
    height: 430px !important;
}

.machine-footer-link{
    color: var(--primary-red);
    font-weight: 600;
}
.machine-footer-link:hover{
    color: var(--accent-yellow);
    font-weight: 600;
}

/* ========== MOBILE STYLES ========== */
@media (max-width: 768px) {
    .d-flex-retro{
    display: flex;
    flex-direction: column-reverse;
}
    .blog-post {

        height: 100%;
    }

    .subheading {
        font-family: var(--font-primary);
        font-size: 18px;
        font-weight: var(--subheading-weight);
        line-height: 27px;
        color: var(--text-light);
    }

    .contact-card {

        height: 100% !important;
    }

    .first-slider .testimonial-card {
        flex: 0 0 calc(100% / 1);
    }

    h1 {
        font-size: var(--h1-mobile);
        font-weight: var(--h1-mobile-weight);
        line-height: var(--h1-mobile-line);
    }

    h2 {
        font-size: var(--h2-mobile);
        font-weight: var(--h2-mobile-weight);
        line-height: var(--h2-mobile-line);
    }

    h3 {
        font-size: var(--h3-mobile);
        font-weight: var(--h3-mobile-weight);
        line-height: var(--h3-mobile-line);
    }

    h4 {
        font-size: var(--h4-mobile);
        font-weight: var(--h4-mobile-weight);
        line-height: var(--h4-mobile-line);
    }

    h5 {
        font-size: var(--h5-mobile);
        font-weight: var(--h5-mobile-weight);
        line-height: var(--h5-mobile-line);
    }

    p,
    .paragraph-1 {
        font-size: var(--p1-mobile-size);
        font-weight: var(--p1-mobile-weight);
        line-height: var(--p1-mobile-line);
    }

    .paragraph-2 {
        font-size: var(--p2-mobile-size);
        font-weight: var(--p2-mobile-weight);
        line-height: var(--p2-mobile-line);
    }

    button,
    .btn {
        font-size: var(--btn-mobile-size);
        font-weight: var(--btn-mobile-weight);
        line-height: var(--btn-mobile-line);
    }
}













.section-padding {
    padding: 60px 0;
}

.bg-gray {
    background-color: var(--background-gray);
}



.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 8px;
}



a {
    text-decoration: none;
    color: var(--primary-red);
}

/* ============================================= */
/* BUTTON STYLES                                 */
/* ============================================= */
.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--primary-red);
    color: var(--background-white);
    border: 2px solid var(--primary-red);
}

.btn--primary:hover {
    background-color: var(--background-white);
    border: 2px solid var(--primary-red);
    box-shadow: 4px 4px 0px 0px #A31E22;
    color: var(--text-dark);

}

.yellow--primary {
    background-color: var(--accent-yellow);
    color: #101010;
    border: 2px solid var(--accent-yellow);
}

.yellow--primary:hover {
    background-color: var(--accent-yellow);
    border: 2px solid #000000;

    color: #101010;
    box-shadow: 4px 4px 0px 0px #000000B2;


}

.btn-learn {
    background-color: var(--background-white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-learn:hover {
    background-color: var(--background-white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    box-shadow: 4px 4px 0px 0px #A31E22;

}

.btn--white {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    color: #A31E22;


}

.btn--white:hover {
    border: 2px solid #FFFFFF;
    background: #A31E22;
    color: #FFFFFF;
    box-shadow: 4px 4px 0px 0px #FFFFFF;

}



.btn--secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn--secondary:hover {
    background-color: var(--primary-red);
    color: var(--background-white);
}



ul {
    margin-bottom: 0;
}


/* ============================================= */
/* HEADER (Desktop) */
/* ============================================= */

/* ============================================= */
/* HEADER                                        */
/* ============================================= */

.header {
    background: var(--background-white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header .custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 54px;
}

/* Desktop Nav */
.header__nav {
    display: flex;
    align-items: left;
}

.header__nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.header__nav .dropdown-menu {
    gap: 0px !important;
}

.header__nav a {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #101010;
    position: relative;
    display: inline-block;
}

/* hover underline */
.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.header__nav .dropdown__tag::after {
    content: '';
    position: absolute;
    bottom: 0px !important;
    left: 0;
    width: 0;
    height: 2px;
    background-color: none !important;
    transition: width 0.3s ease;
}

.header__nav a:hover {
    color: var(--primary-red);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__nav .dropdown__tag:hover::after {
    width: 0%;
}

/* Hamburger button hide on desktop */
.header__menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-red);
}



/* DROPDOWN BASE */
.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;

}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    min-width: 320px;
    padding: 10px 10px 15px !important;

    border-radius: 0px;
    display: none;
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    border-radius: 8px;
    border: none;



}

.dropdown-menu li {
    padding: 0px 5px;
}

.dropdown-menu a {
    font-size: 16px;
    color: #333;
}

.dropdown:hover>.dropdown-menu {

    opacity: 1;
    visibility: visible;
}



.sub-dropdown__menu {
    left: 219px;
    top: 3px;
}









/* ============================================= */
/* MOBILE STYLES                                 */
/* ============================================= */

@media (max-width: 991px) {
    .dropdown-menu a {
        font-size: 16px;
        color: var(--text-dark) !important;
    }

    .header__nav a:hover {
        color: var(--accent-yellow);
    }

    .header__nav a {
        color: #fff;
    }

    .dropdown-menu li {
        padding: 6px 5px;
    }

    .dropdown-menu {
        position: absolute;
        top: 35px;
        left: -18px;
        min-width: 231px;
    }

    .header__menu-toggle .fa-times {
        border: 1px solid #A31E22;
        /* padding: 5px; */
        height: 41px;
        width: 41px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .dropdown__tag {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide main button */
    .btn.btn--primary {
        display: none;
    }

    /* Show menu icon */
    .header__menu-toggle {
        display: block;
    }

    /* Mobile Nav Hidden by default */
    .header__nav {
        position: absolute;
        top: 0px;
        height: 100vh;
        left: 0px;
        background: var(--primary-red);
        width: 250px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        z-index: 999;
    }

    .header__nav ul {
        flex-direction: column;
        gap: 15px !important;
    }


    /* Show class on click */
    .header__nav.show {
        display: flex;
    }


    .dropdown-menu {
        display: none !important;
        height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
    }

    .dropdown-menu {
        display: none !important;
    }

    /* hide by default */
    .dropdown.open .dropdown-menu {
        display: block !important;
        height: auto;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }


}


/* ============================================= */
/* HERO SECTION                                  */
/* ============================================= */
.hero {
    /* background: linear-gradient(90deg, hsla(355, 87%, 36%, 1) 0%, hsla(0, 0%, 0%, 1) 100%); */

    /* background-image: linear-gradient(rgba(14, 14, 14, 0.1), rgba(0,0,0,0.10)); */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
}

.hero__content {
    max-width: 800px;
}

.hero__title {
    color: var(--background-white);
    margin-bottom: 20px;
}

.hero__tagline {
    margin-bottom: 16px;
}




/* Your existing CSS (no change here needed based on your original block) */
@media (max-width: 768px) {
    .testimonial-slider__btn {
        display: none !important;
        /* Hides Prev/Next buttons */
    }

    .testimonial-dots {
        display: flex;
        /* Shows indicator dots */
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
    }

    .testimonial-dot.active {
        background: #A31E22;
    }
}


.testimonial-slider-container {
    overflow: hidden;

}


.testimonial-slider {
    display: flex;

}

.testimonial-card {
    min-width: calc(100% / var(--slides-per-view, 3));
    box-sizing: border-box;
}

.testimonial-slider-wrapper.first-slider .testimonial-card {
    min-width: calc(100% / 4);
}


@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* ============================================= */
/* FEATURES SECTION                              */
/* ============================================= */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--background-white);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* ============================================= */
/* MACHINE SELECTOR SECTION                      */
/* ============================================= */


.selector-card {
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: all 0.3s ease;
}

.selector-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.3s ease;
}



.selector-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}




.selector-card:hover .selector-card__image img {
    transform: scale(1.1);
}


.selector-card__content {
    padding: 30px;
    position: relative;
    flex-grow: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.selector-card h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    margin-top: 20px;
}

.about__p {
    color: var(--text-dark-light);
}

.alter__bg {
    background-color: var(--page-bg);
    padding: 60px 0;
}

.sec-margin {
    margin: 60px 0;
}

.selector-card p {
    color: #333333;
    font-size: var(--p2-size);
    font-weight: var(--p2-weight);
    line-height: var(--p2-line);
    padding-right: 0px;
    text-align: left !important;
    /* Space for the arrow button */
}

.arrow-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.arrow-btn:hover {
    background-color: var(--dark-red);
}

.selector-card__image {
    width: 100%;
    height: 250px;
}

.selector-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Industry Slider Styles */
.industry-slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.industry-slider {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    transition: transform 0.5s ease-in-out;
}

.industry-slide {
    flex: 0 0 100px;
    /* Each slide is 100px wide and doesn't shrink */
    text-align: center;
}

.industry-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    margin-bottom: 10px;
}

.industry-slide span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark-light);
}






/* --- Dot Styling (For Mobile View) --- */

/* Ensures the wrapper correctly hides the buttons and shows dots on mobile */
@media (max-width: 768px) {
    .sectors-slider__btn {
        display: none !important;
        /* Hides Prev/Next buttons on mobile */
    }

    /* Show and center the dots */
    .sectors-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .sectors-dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
    }

    .sectors-dot.active {
        background: #A31E22;
    }


    .sectors-slider-wrapper .sector-card {
        min-width: 100%;
    }
}



.sectors-slider {
    display: flex;
}


@media (min-width: 769px) and (max-width: 992px) {
    .sectors-slider-wrapper .sector-card {
        min-width: calc(100% / 2);
        flex-shrink: 0;
        box-sizing: border-box;
    }
}


@media (min-width: 993px) {
    .sectors-slider-wrapper .sector-card {
        min-width: calc(100% / 3);
        flex-shrink: 0;
        box-sizing: border-box;
    }
}


.nav-pills .nav-link {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #7a0c0c;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: #a11c1c;
    color: #fff;
    border-color: #a11c1c;
}

.nav-pills .nav-link i {
    font-size: 20px;
}

.tab-content img {
    transition: transform 0.5s ease;
}

.tab-content img:hover {
    transform: scale(1.05);
}

.h3__title {
    color: var(--primary-red);
}


/* tab */
.industries-section {
    padding: 60px 44px;
    text-align: center;
}

.industries-section h2 {
    margin-bottom: 8px;
}

.industries-section p {
    max-width: 700px;
    margin: 0 auto 40px;

}

/* ===== Tabs Slider ===== */
.sl-sliderTab {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 0 60px;
}

.sl-sliderTab .swiper-slide {
    width: auto;
}

.sl-tab-btn {
    font-family: var(--font-secondary);
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 31px;
    font-size: 24px;
    line-height: 34px;
    color: #A31E22 !important;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
    text-align: center;
    min-width: 200px;
    transition: 0.3s;
    box-shadow: 0px 2px 4px 0px #0000000D;
    height: 192px;

}

.sl-tab-btn:hover {
    background-color: #A31E22;
    color: #fff !important;

}

.industry-slide.active .sl-tab-btn {
    background-color: #A31E22;
    color: #fff !important;
}

.industry-slide.active i {
    color: #F7D047;
}


.sl-tab-btn:hover i {

    color: #F7D047;
}

.fa-chevron-left,
.fa-chevron-right {
    /* color: #A31E22; */
}

.sl-tab-btn i {
    display: block;
    font-size: 35px;
    margin-bottom: 15px;
    color: #A31E22;
}

.sl-sliderTab .swiper-slide.active .sl-tab-btn {
    background: var(--primary-red);
    color: #fff !important;
    border-color: var(--primary-red);
}

.sl-sliderTab .swiper-slide.active .sl-tab-btn i {
    color: #fff;
}

/* Arrows */
.sl-sliderTab__prev,
.sl-sliderTab__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #E0E0E0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}

.sl-sliderTab__prev:hover,
.sl-sliderTab__next:hover {
    background: #FFFFFF;
    border-color: #E0E0E0;
    color: #fff;
}

.sl-sliderTab__prev {
    left: 10px;
}

.sl-sliderTab__next {
    right: 10px;
}

/* ===== Content Section ===== */
.sl-content-wrap {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sl-content-wrap img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    transition: transform 0.6s ease;
}

.sl-content-text {
    flex: 1;
    animation: slideInRight 0.6s ease;
}

.sl-content-text h3 {


    margin-bottom: 16px;
    color: #A31E22;
}


.sl-content-text p {}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .testimonial-card {

        padding: 0 0px !important;

    }

    .slider__btn {
        display: none !important;
    }

    .custom-container {
        margin: 0 20px !important;
    }

    .custom-container-blog {
        margin: 0 20px !important;
    }

    .hero__content {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center !important;
        text-align: center;
    }

    .sl-content-wrap {
        flex-direction: column;
        text-align: center;
    }

    .sl-content-text {
        animation: fadeIn 0.6s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

/* tab */



/* ============================================= */
/* STATS SECTION                                 */
/* ============================================= */
.stats {
    background-color: var(--primary-red);
    color: white;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.stat-card__number {
    display: block;
    font-size: var(--h2);
    line-height: var(--h2-line);
    font-weight: var(--h2-weight);
    font-family: var(--font-secondary);
}

.stat-card__label {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #FFFFFFE5;
}



/* popup */

.modal-content {
    border-radius: 15px;
    padding: 10px;
}

.btn-close {
    font-size: 20px;
}

.flex__comp{
       display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 9px;
}


/* popup */

/* ============================================= */
/* WHY CHOOSE US SECTION                         */
/* ============================================= */
.why-choose-us__grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.why-choose-us__grid .info-box h4 {
    color: var(--primary-red);
}

.why-choose-us__grid .info-box p {

    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-align: center;



}

.sector-card p {
    color: #fff;
    text-align: center;
}







.result__dark {
 
    font-weight: 600 !important;
      font-size: 20px !important;
}
.result__dark strong{
    color: var(--primary-red) !important;
    font-weight: 600;
    font-size: 22px;
}


.info-box-h4 h4{
    font-size: 18px !important;
    line-height: 24px !important;
    margin-bottom: 0px !important;
    color: var(--background-white);
    background-color: var(--primary-red);
    padding: 10px;
    height: 65px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}


.info-box {
    box-shadow: 2px 4px 4px 0px #0000000D;
    /* border: 1px solid #C9C9C9; */
    background: var(--background-white);
    
    border-radius: 8px;
    transition: all 0.4s ease;
    text-align: center;
  

}

.info-box p{
padding: 18px 18px 12px;
  

}

.info-box:hover {
    background: #F7D047;
    ;

}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.info-box h3 {
    margin-bottom: 10px;
}




.gl-gallery {
    text-align: center;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}





/* ====== Swiper Layout ====== */
.gl-swiper {
    width: 100%;
    padding-bottom: 60px;
}

.gl-slide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gl-slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gl-overlay {
    position: absolute;
    inset: 0;
    background: #A31E22C2;

    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gl-slide:hover .gl-overlay {
    opacity: 1;
}

.gl-overlay h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #fff !important;
    margin-bottom: 8px;
    text-align: left;
    margin-bottom: 0px;
}

.gl-overlay p {
    text-align: left;
    font-size: 18px;
    color: #fff !important;
    line-height: 26px;
    margin: 0;
}

/* ====== Navigation Buttons ====== */
.gl-prev,
.gl-next {
    color: #8b1d1d;
    background: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gl-prev::after,
.gl-next::after {
    font-size: 14px;
    font-weight: 700;
}

.gl-prev {
    left: 0;
}

.gl-next {
    right: 0;
}



/* top header */
.contact__flex{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.top__flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.top-contact {
    font-size: 16px;
    font-weight: 400;
    background-color: var(--primary-red);
    padding: 10px 0;
}

.top-contact a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}

.top-contact i {
    color: var(--background-white);
    margin-right: 6px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
  
}

.cert__img img{
    height: 40px;
    width: 80px;
}


.lang__flex{
    display: flex;
    align-items: center;
    gap: 10px;
}


.contact-item .duns{
     height: 40px;
     background-color: #fff;
    color: #000;
   display: flex;
   justify-content: center;
   align-items: center;
    line-height: 16px;
    font-size: 12px;
    padding: 10px;
    font-weight: 600;
}



/* we are expert */

.margin__66 {
    margin-bottom: 30px !important;
}

.company-stats p {

    font-family: var(--font-primary);
    font-size: 18px !important;
    font-weight: 500;
    line-height: 36px;
    color: var(--text-dark-light);

}




.company-stats p .stat-highlight {
    color: var(--primary-red);
    font-weight: 800;

    font-family: var(--font-primary) !important;
    font-size: 22px !important;

    line-height: 38px;

}

.company-stats strong {

    font-family: var(--font-primary) !important;
    font-size: 18px ;
    font-weight: 500 !important;
    line-height: 36px;
    color: var(--text-dark-light);
    text-align: justify;
}


.margin__39 {
    padding: 40px 0 !important;
}


/* ============================================= */
/* CTA SECTION                                   */
/* ============================================= */
.dwn__bro{
    margin: 30px 0;
    text-align: center;
}
.cta {
    background-color: #A31E22;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 8px;
}

.cta p {
    margin-bottom: 30px;
    color: #fff;
}

/* ============================================= */
/* CLIENTS SECTION                               */
/* ============================================= */
.clients__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.clients__grid img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients__grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================= */
/* TESTIMONIALS SECTION                          */
/* ============================================= */
.testimonial-slider-wrapper {
    position: relative;
    /* Positioning context for buttons */
    margin: 0 auto;

}




.testimonial-slider-container {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
}

.testimonial-card {
    flex: 0 0 33.333%;
    /* Default for 3 slides */
    box-sizing: border-box;
    padding: 0 15px;
}

.testimonial-card>p {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-yellow);
    font-style: italic;
    margin-bottom: 20px;
    height: 190px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 15px;
}

.testimonial-card__author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author h4 {
    color: var(--primary-red);
    margin: 0;
}

.testimonial-card__author span {
    font-size: 0.9rem;
    color: var(--text-dark-light);
}



.testimonial-slider__btn:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Positioning with space */
.testimonial-slider__btn--left {
    left: -45px;
}

.testimonial-slider__btn--right {
    right: -45px;
}




/* table */

.retro-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
}

.retro-table thead th {
    background: var(--primary-red);
    /* dark red header */
    color: #fff;
    font-weight: 600;
    padding: 14px;
    font-size: 20px;
    line-height: 30px;
    border: 1px solid var(--primary-red);
}

.retro-table tbody td {
    height: 50px;
    border: 1px solid var(--primary-red);
    padding: 15px;
    vertical-align: middle;
}

/* Remove default bootstrap border */
.retro-table> :not(caption)>*>* {
    box-shadow: none;
}



/* team */
.team-title {
    color: #b11212;
    font-weight: 700;
}

.team-subtitle {
    max-width: 850px;
    margin: 0 auto;
    color: #555;
    font-size: 14px;
}

.team-card {
    text-align: center;

}


.team-card img {
    /* border: 2px solid #b11212; */
    border-radius: 6px;
    /* padding: 6px; */
    max-width: 90%;
}


.team-card h5 {
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 600;
    color: #b11212;
}

.team-card span {
    font-size: 13px;
    color: #666666;
}

.team-card p {
    font-size: 16px;
    color: var(--text-dark-light);
    margin-top: 8px;
    text-align: justify;
}

.founder__pra {
    text-align: justify !important;
}



/* Wrapper */
.lang-switcher {
    list-style: none;
    display: flex;
    align-items: center;
}

/* Dropdown Box */
.translate-box {
    padding: 2px 1px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Google Translate Base */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
}

/* Select Dropdown */
#google_translate_element select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 8px center;
    background-size: 10px;
    border: none !important;
    padding: 2px 5px 2px 5px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    min-width: 110px;
}

/* Hover Effect */
.translate-box:hover {
    border-color: #999;
}

/* Remove Google Branding */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}













/* new lang
*/


/* 1. RESET & WRAPPER STYLES */
.lang-switcher {
    position: relative;
    list-style: none;
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.lang-dropdown {
    cursor: pointer;
    position: relative;
}

/* 2. MAIN VISIBLE ELEMENT */
.lang-current {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #eee;
    /* Light border for definition */
}

.lang-current img,
.lang-list img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* 3. DROPDOWN LIST (HIDDEN BY DEFAULT) */
.lang-list {
    list-style: none;
    position: absolute;
    top: 84%;
    left: 0;
    display: none;
    /* Initially hidden */
    margin: 5px 0 0 0;
    padding: 5px 0;
    width: 150px;
    background: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 99999;
}

.lang-list li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    transition: background 0.3s ease;
}

.lang-list li:hover {
    background: #f8f9fa;
}

/* 4. HOVER LOGIC: Yahi wo code hai jo dropdown ko open karega */
.lang-dropdown:hover .lang-list {
    display: block;
}

/* 5. HIDE GOOGLE TRANSLATE ELEMENTS (FULL CLEANUP) */

/* Top bar ko hide karne ke liye */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner {
    display: none !important;
    visibility: hidden !important;
}

/* Page ko top se niche sarakne se rokne ke liye */
body {
    top: 0 !important;
    position: static !important;
}

/* Google Translate ke widgets aur suggestions ko hide karne ke liye */
#google_translate_element,
.goog-te-gadget,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

/* Text highlighting hatane ke liye (jab translate ho) */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* Mobile par extra space na aaye */
body>.skiptranslate {
    display: none !important;
}

.card-body .height-title
{
    height: 80px !important;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600 !important;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .team-card img {
        max-width: 180px;
    }
}

/* Mobile text alignment */
@media (max-width: 767px) {
    .retro-table thead th {
        font-size: 14px;
    }

    .retro-table tbody td {
        font-size: 13px;
        height: auto;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .testimonial-slider__btn--left {
        left: 10px;
    }

    .testimonial-slider__btn--right {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 50%;
        /* 2 cards on tablets */
    }
}

@media (max-width: 768px) {
    .cert__img img {
    height: 25px;
    width: 43px;
}

.contact-item .duns {
    height: 25px;
    line-height: 10px;
    font-size: 8px;
    padding: 9px;
}
.top-contact a {
    color: #fff;
    font-size: 10px;
    text-decoration: none;
    font-weight: 500;
}
.top-contact i {
    color: var(--background-white);
    margin-right: 6px;
    font-size: 10px;
}
    .testimonial-card {
        flex: 0 0 100%;
        /* 1 card on mobile */
    }

    .testimonial-card>p {
        height: auto;
    }

    .testimonial-slider__btn {
        top: 30%;
    }
}

.abt-b {
    padding: 0 !important;
}

.abt-b img {
    width: 80%;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover;
    border: none !important;
    margin-bottom: 10px;
}

/* ============================================= */
/* SECTORS SECTION                               */
/* ============================================= */

.industry-grid {
    /* Using Flexbox for the layout */
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    justify-content: center;
    /* Centers the items horizontally */
    gap: 25px;
    /* Space between cards */
}

.industry-card {
    /* Defines a fixed square size */
    width: 200px;
    height: 200px;

    /* Styles for appearance */
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;

    /* Transition for hover effects */
    transition: all 0.3s ease-out;

    /* Flexbox to center the content within the card */
    display: flex;
    justify-content: center;
    align-items: center;
}

.industry-card__content {
    text-align: center;
}

.industry-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-red);
    transition: color 0.3s ease-out;
}

.industry-card span {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease-out;
}

/* Hover Effect */
.industry-card:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.03);
    /* Lift and slightly grow */
}

.industry-card:hover i {
    color: var(--accent-yellow);
}

.industry-card:hover span {
    color: var(--background-white);
}

/* ============================================= */
/* BLOG SECTION                                  */
/* ============================================= */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-post {
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-post a {
    display: block;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.blog-post:hover a {
    transform: translateY(-5px);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post__content {
    padding: 25px;
}

.blog-post__content span {
    font-size: 0.9rem;
    color: var(--text-dark-light);
    margin-bottom: 10px;
    display: block;
}

.blog-post__content h3 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post__content p {
    color: var(--primary-red);
    font-weight: 700;
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.footer__logopra {
    margin-bottom: 13px !important;
}


.footer {
    background: #A31E22;
    padding-top: 45px;
}

.footer__h4 {
    color: #F7D047;
}

.fl-footer-grid {
    padding-bottom: 40px;
}

.fl-footer-left p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;

}

.fl-footer-right p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.mb__40 {
    margin-bottom: 40px !important;
}

.invalid-feedback {

    color: var(--accent-yellow);
}

.fl-links ul {
    padding-left: 0 !important;
}

.fl-links ul li {
    margin-bottom: 10px;
    text-decoration: none;
    list-style: none;
    padding: 0;
}

.fl-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    position: relative;
    padding-bottom: 2px;
    transition: 0.3s ease;
}

/* arrow icon */
.fl-icon {
    font-size: 20px;
    color: #fff;
    transition: 0.3s ease;

}

.fl-footer-right .form-control::placeholder {
    color: #FFFFFFB2;
    font-size: 13px;
    font-weight: 400;
    /* Safari/Firefox ke liye */
}


/* hover underline effect */
.fl-links ul li a::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #F7D047;
    transition: 0.3s ease;
}

/* Hover styles */
.fl-links ul li a:hover {
    color: #F7D047;
}

/* icon color change on hover */
.fl-links ul li a:hover .fl-icon {
    color: #F7D047;
}

/* underline expands */
.fl-links ul li a:hover::after {
    width: 60%;
}


.fl-reach p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.5;
}

.fl-footer-right .form-control {
    background: #FFFFFF1A;

    border: 1px solid #FFFFFF4D;
    color: #fff;
    border-radius: 5px;
}

.fl-btn {
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.fl-send {
    background-color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    color: #333333;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
}

.fl-send:hover {
    background-color: #F7D047;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000B2;


}

.fl-download {
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    background: transparent;
}

.fl-download:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-red);
}

.footer__bottom-line {

    border-top: 1px solid #FFFFFF33
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;

}

.footer__bottom p {
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 5px 0;
}

/* Responsive */
@media(max-width:768px) {
    .fl-footer-middle {
        margin-top: 20px;
    }

    .fl-reach {
        margin-top: 0px;
    }
}



/* ============================================= */
/* RESPONSIVE DESIGN                             */
/* ============================================= */
@media (max-width: 992px) {

    .header .btn,
    .header__nav {
        display: none;
    }

    .header__menu-toggle {
        display: block;
    }

    .features__grid,
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid,
    .footer__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* sab columns ek ke niche ek */
    .fl-footer-grid>div {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* middle column ke andar ke 4 & 8 ko bhi full width karna */
    .fl-footer-middle .col-4,
    .fl-footer-middle .col-8 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* spacing add for clean layout */
    .fl-footer-left,
    .fl-links,
    .fl-reach,
    .fl-footer-right {
        margin-bottom: 0px;
    }

    .fl-footer-grid {
        padding-bottom: 0px;
    }

    .footer__bottom {
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        font-size: 12px;
    }

    .footer__bottom p {
        font-size: 16px;
        line-height: 26px;
        color: #FFFFFF;
        margin: 0px 0;
    }

    /* social icons alignment center on mobile */
    .footer__socials {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .who-we-are p {

        text-align: justify;
    }

    .content {
        text-align: center;
    }

    .hero__tagline {
        text-align: center;
    }

    .who-we-are ul {

        text-align: left;
    }

    section.who-we-are {
        padding: 35px 0 !important;
    }



    .industries-section {
        padding: 35px 0px;
        text-align: center;
    }


    .section-padding {
        padding: 35px 0;
    }

    .features__grid,
    .testimonials__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        margin-bottom: 8px !important;
        text-align: center;
    }
}

/* ============================================= */
/* BHEL-STYLE HERO SLIDER                        */
/* ============================================= */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* This prevents any white flash during slide changes */
    background-color: #000;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    opacity: 0;
    visibility: hidden;

    transform: translateZ(0);
    transition: opacity 1.2s ease-in-out, visibility 0s linear 1.2s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}

/* Smooth overlay fade also */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active::after {
    opacity: 1;
}


.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 1200px;
    padding: 0 90px;
}

.hero__title {
    color: var(--background-white);
    max-width: 700px;
    margin-bottom: 16px;
}



/* Slider Navigation Arrows */
.slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.first-slider {
    margin-bottom: 40px !important;
}



.hero__tagline {
    color: #fff;
}

.slider__btn:hover {
    background-color: var(--primary-red);
}

.slider__btn--left {
    left: 2rem;
}

.slider__btn--right {
    right: 2rem;
}

/* Slider Navigation Dots */
.dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dots__dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.dots__dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dots__dot--active {
    background-color: var(--background-white);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.slide .hero__title,
.slide .hero__tagline,
.slide .btn {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.slide.active .hero__title,
.slide.active .hero__tagline,
.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}


.slide.active .hero__title {
    transition-delay: 0.6s;
}

.slide.active .hero__tagline {
    transition-delay: 0.8s;
}

.slide.active .btn {
    transition-delay: 1s;
}







/* ============================================= */
/* ABOUT US PAGE STYLES                          */
/* ============================================= */

/* Page Hero (for About page and future pages) */

.about__title,
.about__pra {


    position: relative;
    z-index: 99;
    text-align: center;
    color: #FFFFFF;

}

.about__box {
    color: #A31E22;
}

.page-hero {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--background-white);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
}

.page-hero .custom-container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    /* font-size: 3rem; */
    color: var(--background-white);
}

.page-hero p {
    /* font-size: 1.2rem; */
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #F7D047;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline__item {
    padding: 10px 40px;
    position: relative;
    width: 60%;
}

.timeline__item:nth-child(odd) {
    right: 10%;
    padding-right: 70px;
    text-align: right;
}

.timeline__item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}

.timeline__item::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    right: -13px;
    background-color: #A31E22;
    border: 4px solid var(--primary-red);
    top: -4px;
    border-radius: 50%;
    z-index: 1;
}

.timeline__item:nth-child(even)::after {
    left: -14px;
}

.timeline__content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.timeline__content h5 {
    color: var(--primary-red);
    margin-bottom: 10px;
}

.timeline__content p {
    font-weight: 600;
    font-size: 16px;

    line-height: 27px;


    color: #333333;
    margin-bottom: 10px;
}

/* Global Presence Section */
.global-presence__map {
    text-align: center;

}

.global-presence__map img {
    max-width: 100%;
    height: 500px;
}






section.who-we-are {
    padding: 60px 0;
}

.who-we-are .image-wrapper img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.second__title {
    /* max-width: 750px; */
    color: var(--primary-red);
    margin-bottom: 16px;
    /* margin: 0 auto; */
}

.margin__8 {
    margin-bottom: 8px !important;
}

.who-we-are .section-title {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark-light);
    margin-bottom: 16px;
}


.who-we-are p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 26px;
    color: var(--text-dark-light);
    margin-bottom: 20px;
    text-align: justify !important;
}

.who-we-are ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.who-we-are ul li {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    position: relative;

}

.who-we-are ul li img {

    padding-right: 10px;
}





/* Responsive */
@media (max-width: 991px) {
    .testimonial-slider-wrapper.first-slider .testimonial-card {
        min-width: calc(100% / 3);
    }

    .who-we-are {
        padding: 40px 15px;
    }

    .who-we-are h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .who-we-are p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .who-we-are h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .who-we-are ul li {
        font-size: 15px;
    }

    .who-we-are .btn-learn {
        font-size: 15px;
        padding: 8px 22px;
    }
}











/* Responsive adjustments for new sections */
@media (max-width: 768px) {

    .top__flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.company-stats p {

    font-size: 16px !important;
    font-weight: 500;
    line-height: 30px;

}

.flex-direction{
    display: flex;
    flex-direction: column-reverse !important;
}

.company-stats p .stat-highlight {

    font-size: 18px !important;
    line-height: 30px;
}


.footer__legal{
    margin-top: 12px;
}

.company-stats strong {

    font-size: 16px !important;
    line-height: 30px;

}
.contact-item {

    margin-left: 0px;
}
.margin__66 {
    margin-bottom: 16px !important;
}
.margin__39 {
    padding: 24px 0 !important;
}
    .abt-b img {
        width: 100%;

    }

    .cta {

        padding: 35px 0;
    }

    .mission-vision__grid {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline__item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0px;
        text-align: left !important;
    }

    .timeline__item:nth-child(even)::after {
        left: 5px;
        top: 42px;
    }

    .timeline__item:nth-child(even) {
        left: 0;
    }

    .timeline__item::after {
        left: 6px;
        top: 42px;
    }

    .global-presence__map img {
        max-width: 100%;
        height: 100%;
    }

    .timeline__item:nth-child(even) {

        padding-left: 50px;

    }

    .timeline__item:nth-child(odd) {
        right: 0;
        padding-right: 0px;

    }
}

/* ============================================= */
/* TESTIMONIALS SECTION                          */
/* ============================================= */
.testimonial-slider-wrapper {
    position: relative;
    /* New positioning context for buttons */
    margin: 0 auto;


}

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

.testimonial-slider {
    display: flex;
    /* Transition is now handled by JS for the loop */
}

.testimonial-card {
    flex: 0 0 33.333%;
    box-sizing: border-box;
    padding: 0 15px;
    background: transparent;
    box-shadow: none;
}

.testimonial-card>p {
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-yellow);
    font-style: italic;
    margin-bottom: 20px;
    height: 190px;
    font-size: 16px;
    line-height: 26px;

}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 0px;
}

.testimonial-card__author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;


    color: var(--primary-red);
    margin: 0;
}

.testimonial-card__author span {
    font-size: 16px;
    color: var(--text-dark-light);
}

/* Slider Navigation Buttons */

.testimonial-slider__btn {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-slider__btn:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Slider Navigation Buttons */
.testimonial-slider__btn--left {
    left: -45px;
    /* CHANGE THIS: Increased from -25px to add more space */
}

.testimonial-slider__btn--right {
    right: -45px;
    /* CHANGE THIS: Increased from -25px to add more space */
}

.header__nav a {
    text-transform: capitalize;
}





.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.733);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* OUTER RING */
.custom-loader {
    width: 80px;
    height: 80px;
    border: 10px solid var(--accent-yellow);
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    position: relative;
}

/* inner red circle */
.custom-loader .inner-red {
    width: 32px;
    height: 32px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}






.thankyou-card {
    border: 1px solid #C9C9C9;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 2px 4px 4px 0px #0000000D;

}

.tick-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(247, 208, 71, 0.5);

    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;


}

.tick-box i {
    font-size: 64px;
    color: #A31E22;
}

.thank-title {
    font-size: 64px;
    font-weight: 700;
    color: #A31E22;
    margin-top: 25px;
}

.thank-desc {
    color: #A31E22;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
}






/* Responsive Adjustments */
@media (max-width: 1200px) {
    .testimonial-slider__btn--left {
        left: 10px;
    }

    .testimonial-slider__btn--right {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .serv-section {
        padding: 0px 0px !important;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-card>p {
        height: auto;
    }

    .testimonial-slider__btn {
        top: 50%;
    }
}

/* ============================================= */
/* INDUSTRIES WE SERVE SECTION                   */
/* ============================================= */
.sectors-slider-wrapper {
    position: relative;
    margin: 0 auto;

}

.sectors-slider-container {
    overflow: hidden;
}

.sectors-slider {
    display: flex;
    margin: 0 0px;
}

.sector-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 33.333%;
    padding: 0 10px;
}

.sector-card img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sector-card__overlay {
    position: absolute;
    inset: 0;
    background: #A31E22C2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
}

.sector-card__overlay i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.sector-card__overlay h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: var(--background-white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.sector-card:hover .sector-card__overlay {
    opacity: 1;
    visibility: visible;
}

.sector-card:hover img {
    transform: scale(1.1);
    object-fit: cover;
}

/* Slider Navigation Buttons */
.sectors-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sectors-slider__btn:hover {
    background-color: var(--primary-red);
    color: white;
}

.sectors-slider__btn--left {
    left: -55px;
}

.sectors-slider__btn--right {
    right: -55px;
}

.dropdown-sub-menu {
    left: 300px;
    top: 11px;
}


/* ---------- Main li layout ---------- */
.dropdown-menu>li.dropdown>a {
    display: flex;
    justify-content: space-between;
    /* name | icon */
    align-items: center;
    padding: 12px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-menu>li>a {

    padding: 10px 12px 0px 0;

}

/* Hover text color */



.header__nav .dropdown a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: none;
    transition: width 0.3s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: #A31E221A;

    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}

.dropdown-menu li a.active {
    background-color: #A31E221A;
    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}






/* ---------- Dropdown Arrow Icon ---------- */
.dropdown-menu>li.dropdown>a i {
    transition: transform 0.3s ease;
    margin-left: 10px;
    font-size: 12px;
}

/* Hover par arrow rotate */
.dropdown-menu>li.dropdown:hover>a i {
    transform: rotate(-90deg);
}

/* ---------- Submenu Style ---------- */
.dropdown-sub-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

/* Parent hover → child open */
.dropdown:hover .dropdown-sub-menu {
    display: block;
}




/* Submenu hover color */
.dropdown-sub-menu li a {
    display: block;
    padding: 12px;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-sub-menu li a:hover {
    background-color: #A31E221A;
    color: var(--primary-red) !important;
}

.dropdown-sub-menu li a.active {
    background-color: #A31E221A !important;
    color: var(--primary-red) !important;
    border-left: 3px solid var(--primary-red) !important;
}

/* ---------- Mobile Click Support (Optional) ---------- */
.dropdown-menu li.dropdown>a {
    cursor: pointer;
}

.dropdown-menu li.dropdown.open>a i {
    transform: rotate(180deg);
}


@media (max-width: 991px) {

    /* Mobile par hover ki wajah se sub menu open hota tha → remove */
    .dropdown:hover .dropdown-menu,
    .dropdown:hover .dropdown-sub-menu {
        display: none !important;
    }

    /* Ab sirf .open par hi dropdown dikhega */
    .dropdown.open>.dropdown-menu,
    .dropdown.open>.dropdown-sub-menu {
        display: block !important;
    }

    .dropdown-sub-menu {
        display: none;
        position: absolute;
        left: -5%;
        top: 65px;
        background: #fff;
        min-width: 231px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;

    }
}









.blog-container {
    max-width: 1200px;
    /* Max width for content */
    padding-left: 15px;
    padding-right: 15px;
}

/* --- Typography and Headings --- */
.article-title {
    max-width: 750px;
    margin: 0 auto;
    color: #A31E22;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 16px;

}

.blog__meta__icon {
    color: #A31E22;
    margin-right: 6px;
}

.article-meta {

    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #666666;
}

.section-heading {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}




/* --- Featured Image --- */
.featured-image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.span-blog {
    margin: 16px 0;
    display: block;
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 27px;
    vertical-align: middle;

}

/* --- Blockquote Style (For the quote box) --- */
.custom-blockquote {
    border-left: 4px solid #F7D047;
    padding-left: 15px;
    margin-left: 0;
    margin-right: 0;
    background-color: rgba(233, 245, 255, 0.523);
    padding: 15px;
    font-style: italic;
    color: #101010;
    /* border-radius: 4px; */
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.custom-blockquote p {

    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* --- Sidebar Widgets --- */
.sidebar-col {
    padding-left: 30px;
    /* Add some spacing from main content */
}

.sidebar-title {


    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 5px;
    color: var(--primary-red);
    text-align: left;
}

.author-bio {
    color: var(--text-light);
}

.author-card,
.toc-card,
.newsletter-card {
    border: none;
    padding: 9px;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.pragraph_sub {
    color: var(--text-light);
    font-size: 15px;
}

.author-card,
.toc-card {
    background-color: #fff;
}

.author-avatar {
    border: 2px solid #007bff;
}

.toc-list li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: #495057;
    cursor: pointer;
}

/* Newsletter Widget Specific Style */
.newsletter-card {
    background-color: var(--primary-red);
    /* Red/Maroon Color */
    border-radius: 8px;

}

.de__pra {
    font-style: 16px;
    color: #fff;
    text-align: left;
}

.sidebar-col {
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 576px) {
    .social-share a {
        padding: 6px 10px !important;
        /* small button */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social-share a span,
    .social-share a {
        font-size: 0;
        /* text hide */
    }

    .social-share a i {
        font-size: 18px;
        /* icon visible */
        margin: 0 !important;

    }
}

.newsletter-card .form-control {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);

}

.newsletter-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.newsletter-card .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    font-weight: bold;
    border-radius: 0;
}

.blog-heading4 {
    margin: 25px 0 20px;
    color: var(--primary-red);
}

/* Social Share Button Icons */
.social-share a i {
    margin-right: 5px;
}

.article-body {
    padding: 0 30px;
}

.main-content-col {
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px #00000008;
    border-radius: 8px;
    padding: 0 0 40px 0;

}

/* --- Responsive Adjustments (Optional but good practice) --- */
@media (max-width: 991.98px) {

    /* On tablets and smaller devices, put a horizontal rule between main content and sidebar */
    .main-content-col {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .sidebar-col {
        padding-left: 15px;
        /* Reset padding for smaller screens */
        padding-right: 15px;
    }


}








/*  */
.dropdown>a i {
    margin-left: 8px;
    /* space between text & icon */
    transition: transform 0.3s ease;
}

.dropdown:hover>a i {
    transform: rotate(-90deg);
    /* rotate icon on hover */
}

/* map */


.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}





/* Responsive Adjustments */
@media (max-width: 1200px) {
    .sectors-slider__btn--left {
        left: 10px;
    }

    .sectors-slider__btn--right {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .sector-card {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .sector-card {
        width: 100%;
    }
}







/* ============================================= */
/* MACHINERY PAGE STYLES                         */
/* ============================================= */
.machinery-layout .custom-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    /* Main content is 3x wider than sidebar */
    gap: 20px;
    align-items: start;
    /* Aligns items to the top of the grid cell */
}



.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.machine-card {
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #C9C9C9;
    box-shadow: 0px 2px 4px 0px #0000000D;
    transition: all 0.3s ease;
    padding: 0;
}


#machinery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* left-right + top-bottom dono gap */
}

/* Card width maintain */
#machinery-grid .machine-card {
    width: calc(50% - 10px);
}



.machine-card:hover {
    transform: translateY(-5px);

}

.machine-card img {
    width: 100%;
    object-fit: cover;
}

.machine-card__content {
    padding: 25px;

}

.machine-card__content h5 {
    text-transform: capitalize;
}

.machine-card__content h5 {
    color: #A31E22;
    margin-bottom: 8px;
}

.machine-card__content p {
    color: #333333;
    margin-bottom: 1.5rem;

}

.machine-card__content a {
    font-weight: 700;
    font-family: var(--font-primary);
}

.machine-card__content a:hover {
    font-weight: 700;
    color: var(--accent-yellow);
}

.machine-card__content a i {
    margin-left: 8px;
}

/* Sidebar Styles */
.machinery-sidebar {
    position: sticky;
    top: 120px;
    background: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.machinery-sidebar h3 {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-yellow);
}

.machinery-sidebar ul {
    list-style: none;
}

.machinery-sidebar ul li a {
    font-family: var(--font-secondary);
    display: block;
    padding: 12px 15px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(193, 193, 193, 1);

}



.machinery-sidebar ul li a:hover {
    background-color: var(--background-gray);
    color: var(--primary-red);
}

.machinery-sidebar ul li a.active {
    background-color: var(--background-gray);
    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}

/* Responsive adjustments for machinery layout */




/* --- New CSS for Mobile Slider Dots --- */
.machinery-mobile-dots {
    display: none;
    /* Default: Hide on Desktop/Tablet */
    margin-top: 20px;
    justify-content: center;
    gap: 10px;
}

.machinery-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.machinery-dot.active {
    background: #A31E22;
    /* Use your primary red color */
}

/* ------------------------------------------------ */
/* Mobile View Specific Layout Changes (<= 992px) */
/* ------------------------------------------------ */

/*
** 768px के अंदर मोबाइल स्लाइडर के लिए CSS **
*/

@media (max-width: 768px) {
    .machinery-layout .custom-container {
        display: block;
        grid-template-columns: 3fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .machinery-grid {

        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }


    .machinery-grid::-webkit-scrollbar {
        display: none;
    }


    .machine-card {
        min-width: 100%;
        scroll-snap-align: start;
        margin-right: 0;
    }




    .machinery-mobile-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 19px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .machinery-dot {
        width: 10px;
        height: 10px;
        background-color: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
    }

    .machinery-dot.active {
        background-color: #007bff;
        transform: scale(1.2);
    }
}

/* ------------------------------------------------ */
/* Desktop/Tablet Layouts (Ensure NO CHANGE) */
/* ------------------------------------------------ */

/* Desktop Layout (> 992px) */
/* Yeh existing code hai, jo 3fr 1fr grid aur machinery-grid ko maintain karega */
@media (min-width: 993px) {
    .machinery-layout .custom-container {
        grid-template-columns: 3fr 1fr;
        gap: 40px;
    }

    .machinery-grid {
        /* Desktop par original grid layout wapas */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .machinery-sidebar {
        position: sticky;
    }
}



/* ============================================= */
/* MACHINERY DETAIL PAGE STYLES                  */
/* ============================================= */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.product-image-gallery .main-product-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.product-info .product-title {

    margin-bottom: 16px;
    color: #A31E22;
}

.product-intro {
    text-align: justify;
}

.product-info .product-intro {

    color: var(--text-dark-light);

}

.product-info h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}



/* Section Background */
.cap-section-wrapper {
    padding: 60px 0;
    background-color: #f8f9fa; 
}

/* Title Styling */


.cap-title-line {
    width: 100px;
    height: 3px;
    background: var(--primary-red); 
    margin: 15px auto;
}

/* Card Styling */
.cap-custom-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft Shadow */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Effect */
.cap-custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

/* Card Text */
.cap-card-text {
    font-size: 18px;

    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0;
    text-transform: capitalize;
}

.mission-vision__grid .about__box {

    padding: 21px !important;
}


.cap-icon-box {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}










.sl-tab-btn,
.sl-tab-btn i {
    pointer-events: none;
}

.industry-slide {
    pointer-events: auto !important;
    cursor: pointer !important;
}



.quick-specs-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
    margin-bottom: 2rem;
}

.quick-specs-table td {
    padding: 12px 15PX;
    border: 1px solid var(--border-color);
}

.td-bold {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--text-dark-light) !important;
}

.wrapper-top {
    margin-top: 60px;
}

/* Tabbed Section */
.product-tabs-container {}

.product-tabs-nav {
    display: flex;
    gap: 10px;

    margin-bottom: 16px;
}

.tab-link {
    margin: 0px 35px 10px 0;
    padding-bottom: 5px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-link.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.tab-link:hover {
    color: var(--primary-red);

}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content h3 {
    margin-bottom: 1rem;
}

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.tab-content ul li i {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ============================================= */
/* TOOLING PAGE STYLES                           */
/* ============================================= */

.tooling__bottom {
    margin: 10px 0;
    text-align: center;

}

.cdr__card {
    margin-bottom: 20px;
}

.tooling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick_line {
    color: #A31E22;
    border-bottom: 2px solid #F7D047;
    display: inline-block;
    padding-bottom: 5px;
}

.fa-circle-check {
    font-size: 18px !important;
    padding-right: 2px;
    color: var(--primary-red) !important;
}

.tooling__list {
    margin-top: 20px;
}

.tooling-check-icon {
    margin-bottom: 0 !important;
}



.retrofit-card {
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);

}

.retrofit-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.retrofit-card .card-title {
    color: #FFF;
    padding: 10px 0;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
        background-color: var(--primary-red);
}

.retrofit-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 15px;
}

.retrofit-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-size: 18px;
}

.result-text {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}



.tooling__list li {
    color: var(--text-dark-light);
    margin-bottom: 10px;
    font-size: 16px;
}

.tooling__list .list__toolingitem {
    color: var(--text-dark-light);
    margin-bottom: 10px;
}

.border__line {
    color: #A31E22;
    padding-bottom: 5px;
}

.tooling-card {
    background: var(--background-white);
    border-radius: 1px;
    overflow: hidden;

    text-align: center;
    transition: all 0.3s ease;
}

.tooling-cdr {
    background: var(--background-white);
    border-radius: 1px;
    overflow: hidden;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.tooling-card:hover {
    transform: translateY(-5px);

}

.tooling-card img {
    width: 100%;
    height: 240px;
    border: 1px solid #A31E22;
}

.tooling-card__content {
    padding: 20px;
    background-color: var(--primary-red);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tooling-card__content h3 {
    font-size: 1.2rem;
    color: var(--background-white);
    margin: 0;
}

/* ============================================= */
/* INDUSTRIES INTERACTIVE SECTION STYLES         */
/* ============================================= */
.industry-slider-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for the navigation buttons */
    margin-bottom: 50px;
}

.industry-slider-container {
    overflow: hidden;
    /* Hides the parts of the grid that are off-screen */
}

.industry-nav-grid {
    display: flex;
    /* Changed from grid to flex for a single row */
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    /* For smooth sliding */
}

.industry-nav-box {
    margin-left: 25px;
    flex: 0 0 220px;
    /* Each box has a fixed width and won't shrink */
    background: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-nav-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.industry-nav-box h3 {
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.industry-nav-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

.industry-nav-box.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.industry-nav-box.active i {
    color: var(--accent-yellow);
}

.industry-nav-box.active h3 {
    color: var(--background-white);
}

/* Slider Buttons */
.industry-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-red);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.industry-slider-btn:hover {
    background-color: var(--primary-red);
    color: white;
}

.industry-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.industry-slider-btn.prev {
    left: 0;
}

.industry-slider-btn.next {
    right: 0;
}

/* Content Panels */
/* .industry-tabs-content { margin-top: 30px; } */
.industry-tab-content {
    display: none;
}

.industry-tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: top;
    animation: fadeIn 0.5s ease-in-out;
}

.industry-tab-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.industry-content-text h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.industry-content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark-light);
}

.sales-card{
        border: 1px solid #E5E5E5;
    box-shadow: 4px 4px 4px 0px #0000001A;
        padding: 24px;
}
.sales-card:hover{
background-color: var(--primary-red);
}


.sales-card:hover .sales__icon{
background-color: #fff;
}
.sales-card:hover .sales__icon img{

    filter: brightness(0) saturate(100%);



}
.sales-card:hover .sales-title{
    color: #fff;


}
.sales-card:hover .sales__pra{
    color: #fff;


}



.tab-link {
    margin: 0px 15px 5px 0;
    padding: 9px 15px;
    border: none;
    background: #f7d047;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    color: #101010c7;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.tab-link.active
 {
    color: #fff;
    border-bottom: 2px solid var(--primary-red);
    background: #a31e22;
}



/* Mobile view horizontal scroll for tabs */
@media (max-width: 767px) {
    .product-tabs-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; 
        gap: 10px;
        padding-bottom: 8px;
    }

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

    .tab-link {
        flex: 0 0 auto; 
        white-space: nowrap; 
        font-size: 16px; 
        margin: 0;
    }
}




/* industry manufactring */





        /* Card Container */
        .ind-card-wrapper {
            padding-bottom: 60px;
        }

        /* Card Styling */
        .ind-custom-card {
            background: #fff;
            border: none;
            border-radius: 12px;
            padding: 20px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary-red);
        }

        .ind-custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .ind-card-title {
            font-weight: 700;
            font-size: 20px;
            line-height: 26px;
            color: var(--primary-red);
            min-height: 50px;
            display: flex;
            align-items: center;
        }

        /* List Styling */
        .ind-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
            text-align: left; 
        }

        .ind-list-item {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-dark);
        }

        .ind-list-item::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--ind-primary);
            font-weight: bold;
        }

        .ind-card-footer-text {
            font-size: 14px;
            color: #666;
            border-top: 1px solid #e0dddd;
            padding-top: 15px;
            margin-top: auto;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ind-main-title { font-size: 2rem; }
        }


/*  */


/* Common Card Styles */
        .tol-card {
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            height: 100%;
        }

        /* Color Variations */
        .tol-bg-white { background-color: #ffffff; color: #333; border: 2px solid var(--accent-yellow) !important; }
        .tol-bg-red { background-color: var(--primary-red); color: #ffffff; }
        .tol-bg-yellow { background-color: var(--accent-yellow); color: #222; }

        /* Typography */
        .tol-title {
            font-weight: 800;
            font-size: 26px;
            line-height: 30px;
            margin-bottom: 15px;
        }
        .tol-bg-white .tol-title { color: #101010; }

        .tol-red {
         color: #101010 !important;
        }
        .tol-text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    color: #fff;
}




        .tol-sub-title {
            font-weight: 700;
               font-size: 16px;
    line-height: 26px;
            margin-bottom: 15px;
        }

        /* List Styling */
        .tol-list { list-style: none; padding: 0; }
        .tol-list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
               font-size: 16px;
    line-height: 26px;
        }
        .tol-list-item i {
            width: 25px;
            margin-right: 10px;
            margin-top: 3px;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Icon Colors */
        .tol-bg-red i { color: #f6d352; }
        .tol-bg-yellow i { color: #a51d1d; }
        .tol-bg-white i { color: #a51d1d; }

       
        .tol-flex-col { display: flex; flex-direction: column; height: 100%; }
        
        @media (max-width: 768px) {
            .tol-card { height: auto; }
        }
        /*  */


/* ===== Technical Specs Table Styling ===== */
.quick-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.quick-specs-table th {
    background: var(--primary-red);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px;
    border: 1px solid  #fff;
}

.quick-specs-table td {
    padding: 12px;
    font-size: 15px;
    color: #333;
    vertical-align: middle;
}

.quick-specs-table tr:nth-child(even) {
    background: #f9f9f9;
}

.quick-specs-table td:first-child {
    /* font-weight: 600;
    color: #000; */
}

/* ===== Section spacing ===== */
.mission-vision {
    background: #fafafa;
}

/* ===== MOBILE RESPONSIVE TABLE ===== */
@media (max-width: 768px) {

    .quick-specs-table thead {
        display: none;
    }

    .quick-specs-table,
    .quick-specs-table tbody,
    .quick-specs-table tr {
        display: block;
        width: 100%;
    }

    .quick-specs-table tr {
        border: 1px solid #ddd;
        border-radius: 6px;
        margin-bottom: 18px;
        background: #fff;
        overflow: hidden;
    }

    /* CATEGORY – sirf rowspan wale td ke liye */
    .quick-specs-table td[rowspan] {
        display: block;
        width: 100%;
        background: var(--primary-red);
        font-weight: 700;
        font-size: 15px;
        padding: 10px 12px;
        border-bottom: 1px solid #ddd;
        color: #fff;
    }

    /* Item & Specification */
    .quick-specs-table td:not([rowspan]) {
        display: block;
        padding: 8px 12px;
        font-size: 14px;
    }

    /* Item label */
    .quick-specs-table td[data-label="Item"] {
        font-weight: 600;
        color: #555;
        border-top: 1px solid #eee;
    }

    /* Specification value */
    .quick-specs-table td[data-label="Specification"] {
        color: #000;
        padding-top: 0;
    }
}









.sales-second-card .card-body{
    padding: 0 !important;
}

.sales-second-card .retrofit-list{
    padding: 0px 24px 24px;
}
.sales-second-card .card-title{
   background-color: var(--primary-red);
   padding: 20px  !important;
   color: #fff;
}

.sales__icon{
    background-color: var(--primary-red);
    height: 85px;
    width: 85px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 24px;


}


.sales__icon img{
    height: 40px;
}


.sales-title{
    color: var(--primary-red);
font-weight: 700;
font-size: 24px;
line-height: 34px;


}

.sales__pra{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text-color);
}






@media (max-width: 992px) {
    .industry-tab-content.active {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* ============================================= */
/* BLOG PAGE STYLES                              */
/* ============================================= */
.blog-page-layout .custom-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    /* Main content is 3x wider than sidebar */
    gap: 40px;
    align-items: start;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Reusing the .blog-post style from the homepage for consistency */
.blog-post {
    background: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0px #0000000D;
    border: 1px solid var(--border-color);
    height: 380px;
}

.blog-post a {
    display: block;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post__content {
    padding: 25px;
}

.serv-section {
    padding: 0 60px;
}

.blog-post__content span {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.blog-post__content h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.blog-post__content p {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.blog-post__content p:hover {
    border-bottom-color: var(--primary-red);
}


/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 120px;
    /* Adjust based on header height */
    background: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.blog-sidebar h4 {
    color: #A31E22;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-yellow);
}

.blog-sidebar ul {
    list-style: none;
}

.blog-sidebar ul li a {
    display: block;
    padding: 12px 15px;
    color: var(--text-light);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.blog-sidebar ul li a:hover {
    background-color: var(--background-gray);
    color: var(--primary-red);

}

.blog-sidebar ul li a.active {
    background-color: var(--background-gray);
    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}


.men-details li a {
    display: block;
    padding: 6px 15px;
    color: var(--text-light);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.men-details li a:hover {
    background-color: #F5F5F5;
    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}

.men-details li a.active {
    background-color: #F5F5F5;
    color: var(--primary-red);
    border-left: 3px solid var(--primary-red);
}






/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-page-layout .custom-container {
        grid-template-columns: 1fr;
        /* Stack sidebar on top */
    }

    .blog-sidebar {
        position: static;
        /* Remove sticky positioning */
        margin-bottom: 40px;
        grid-row: 0;
        /* Move sidebar to the top on smaller screens */
    }
}










.social__icon {
    color: #A31E22;
    background-color: #EDD2D3;
    padding: 3px 8px;
    border-radius: 3px;
}

.social__icon:hover {

    background-color: #fff;

}


.gl-blog-slider {
    position: relative;
    padding: 10px 0 0px;
}

.gl-blog-prev,
.gl-blog-next {
    color: #a32222;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gl-blog-prev::after,
.gl-blog-next::after {
    font-size: 14px;
    font-weight: bold;
}

.gl-blog-prev:hover,
.gl-blog-next:hover {
    background: #a32222;
    color: #fff;
}

/* Optional — maintain same spacing */
.blog__grid {
    display: flex;
    gap: 0px;
    margin: 0 60px;
}

.swiper-slide {
    height: auto;
}

.blog-post img {
    width: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.blog-post__content {
    padding: 10px 25px 25px;
}



/* ============================================= */
/* CONTACT US PAGE STYLES                        */
/* ============================================= */



.get-in-touch-heading {
    color: #A31E22;

}


.contact-page-form .form-control {
    border-radius: 5px;
    padding: 12px 12px;
    box-shadow: none;
    border: 1px solid #333333;
}


.btn-send-message {
    background-color: #fdd85d;
    color: #333;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-send-message:hover {
    background-color: #fbc02d;
    color: #333;
}


.contact-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 25px !important;
    height: 290px;
    border: 1px solid #C9C9C9;
    box-shadow: 0px 2px 4px 0px #0000000D;

}


.icon-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px !important;

}

.con__pra {
    margin-bottom: 0;
    color: #333333;

    font-weight: 600;
    font-size: 16px;
    line-height: 27px;


}

.icon-placeholder {
    font-size: 24px;
    color: #a0a0a0;
}


.card-title {
    color: #A31E22;
}

.sector__span {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.read-more {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.read-more:hover {
    border-bottom-color: var(--primary-red);
}



.foot-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-size: 15px;
    margin-bottom: 8px;
}

.foot-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.foot-contact-item i {
    color: #fff;
    font-size: 16px;
}

.foot-contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-contact-item .fa-phone-alt {
    transform: rotate(90deg);
}


.foot-contact-item a:hover {
    color: #fff;
    text-decoration: none;
}






.card-title-heading {
    color: var(--primary-red);

    margin-bottom: 0.5rem;
}

.component-post {
    height: 440px !important;
}



.component__pra {

    font-weight: 600 !important;

    font-size: 16px !important;
    line-height: 27px !important;
    color: #333333 !important;

}

.component__pra:hover {
    border: none;
}

.location-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

#message {
    height: 100px;
}




.icn__img {
    width: 80%;
}

.contact__sub {
    font-family: var(--font-primary);
    font-weight: 400;

    font-size: 22px;
    line-height: 30px;
    color: var(--text-light);
    text-align: center;

}




/* logo */

.logo-marquee {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 22s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.logo-item img {
    /* height: 55px; */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Hover pause */
.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}




/* faq */

.faq-title {
    font-weight: 700;
    color: #a30000;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
}

.faq-accordion .accordion-button {
    font-family: var(--font-secondary);
    background: #F5F5F5;
    border-radius: 8px;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;

}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-red);
}

.faq-accordion .accordion-body {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 27px;
    color: #101010;
}

/* REMOVE BOOTSTRAP ARROW */
.accordion-button::after {
    display: none !important;
}

/* PLUS / MINUS */
.faq-icon {
    font-size: 22px;
    font-weight: 700;
    margin-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .component-post {
        height: 100% !important;
    }

    .product-detail-layout {

        gap: 20px;

    }

    .wrapper-top {
        margin-top: 0px;
    }

    .tab-link {
        margin: 0px 16px 10px 0;
    }

    .product-tabs-nav {

        gap: 0px;

    }

    .contact-layout {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
    }

    .contact-map-container {
        /* On smaller screens, the map might come first */
        grid-row: 1;
        margin-bottom: 40px;
    }
}


.tab-content h5 {
    color: var(--primary-red);
}