@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* ---------------------------
   Body
--------------------------- */
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    font-weight: 400;
    color: #fff;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* ---------------------------
   Headings
--------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 0.95rem;
}

/* ---------------------------
   Paragraphs
--------------------------- */
p {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 1em;
}

/* ---------------------------
   Links
--------------------------- */
a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:focus {
    outline: none;
}

/* ---------------------------
   Lists
--------------------------- */
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1em;
}

li {
    line-height: 1.6;
}


/* Header Background */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    background: #ffffff;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 5px 20px 0 #00000008;
}

/* Hidden state */
.main-header.hide-header {
    transform: translateY(-100%);
}

/* Visible sticky state */
/* .main-header.sticky {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
} */

/* Smooth logo resize */
.logo-wrap img {
    max-height: 80px;
    transition: max-height 0.4s ease;
}

.main-header.sticky .logo-wrap img {
    max-height: 60px;
}

/* Sticky State */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 1s ease forwards;
}

/* Optional: reduce padding when sticky */
.main-header.sticky .logo-wrap img {
    max-height: 60px;
    transition: 0.3s ease;
}

/* Smooth Slide Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrap img {
    width: 75%;
}

.main-nav .dropdown-menu-custom li {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu-custom li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger effect */
.nav-dropdown:hover .dropdown-menu-custom li:nth-child(1) {
    transition-delay: 0.05s;
}

.nav-dropdown:hover .dropdown-menu-custom li:nth-child(2) {
    transition-delay: 0.1s;
}

.nav-dropdown:hover .dropdown-menu-custom li:nth-child(3) {
    transition-delay: 0.15s;
}

.nav-dropdown:hover .dropdown-menu-custom li:nth-child(4) {
    transition-delay: 0.2s;
}

.nav-dropdown:hover .dropdown-menu-custom li:nth-child(5) {
    transition-delay: 0.25s;
}

.nav-dropdown:hover .dropdown-menu-custom li:nth-child(6) {
    transition-delay: 0.3s;
}

.main-nav .dropdown-menu-custom {
    position: absolute;
    top: 92px;
    left: 25px;
    padding: 12px;
    border-radius: 0;
    width: max-content;
    z-index: 999;
    background-color: rgb(220 48 46);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #ffffff1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.97);
    transform-origin: top left;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}

.main-nav .dropdown-menu-custom li a:hover {
    color: #bd3c34;
}

.main-nav ul li {
    position: relative;
}

.main-nav .dropdown-menu-custom li a {
    display: block;
    padding: 8px 0px;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: start;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.35s ease;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.innermenuwrap {
    padding: 6px 16px;
    background-color: #ff6a6a;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    border: 1px solid #ffffff1a;
}

/* Navigation */
.main-nav .nav-link {
    font-weight: 500;
    font-size: 25px;
    color: #c62828;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin: 0 7px;
    transition: 0.3s ease;
    padding: 26px 20px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: #000;
}

/* Search Icon */
.search-icon i {
    font-size: 22px;
    color: #c62828;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-icon i:hover {
    color: #000;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    width: 100%;
    height: 93vh;
    min-height: 520px;
    overflow: hidden;
    margin-top: 100px;
}

/* Background image */
.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark gradient overlay — stronger on left for text readability */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 52%);
    z-index: 1;
}


/* Content wrapper pinned to bottom */
.banner-content-wrap {
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    z-index: 2;
}

/* ---- LEFT COLUMN ---- */
.banner-left {
    padding-right: 20px;
}

/* Subtitle */
.banner-subtitle {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    /* letter-spacing: 2.5px; */
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.banner-subtitle span {
    display: inline-block;
}

/* Main heading — 3 stacked lines */
.banner-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 22px;
}

.banner-heading span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    font-family: "Montserrat", sans-serif;
    opacity: 0;
    transform: translateY(60px);
}

/* Colored square dots after each heading line */
.banner-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-style: normal;
}

.banner-dot-red {
    background: #e53935;
}

.banner-dot-yellow {
    background: #f5c518;
}

/* Horizontal divider under heading */
.banner-divider span {
    display: block;
    width: 100%;
    height: 3px;
    background: rgb(255 255 255);
    opacity: 0;
    transform: translateY(60px);
}

/* ---- RIGHT COLUMN ---- */
.banner-right {
    padding-top: 10px;
}

.banner-desc {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Red square bullet */
.banner-desc-bullet {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    font-style: normal;
    flex-shrink: 0;
}

.banner-desc-bullet span {
    display: block;
    width: 20px;
    height: 20px;
    background: #e53935;
    opacity: 0;
    transform: translateY(60px);
}

.banner-desc p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
}

.banner-desc p span {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    text-align: start;
}


.section {
    padding: 100px 0;
    position: relative;
}

/* ===== ABOUT SECTION START ===== */

.about-section {
    background-color: #fff;
}

/* Section Title */
.section-title {
    font-size: 33px;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-block;
    padding: 10px 0;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: #000;
}

.section-title::before {
    top: 0;
}

.section-title::after {
    bottom: 0;
}

/* Image Wrapper */
.about-img-wrapper {
    position: relative;
    /* display: inline-block; */
}

.about-img-wrapper img {
    width: 100%;
}



/* About Text */
.about-content p {
    font-size: 25px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
    max-width: 620px;
}

/* ===== IMAGE BUTTON START ===== */

.image-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all ease;

}

.image-btn img {
    display: block;
    width: 80%;
    max-width: 420px;
    /* adjust based on your design */
    height: auto;
}

/* Text on top of image */
.btn-text {
    position: absolute;
    top: 48%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    pointer-events: none;
}

/* Optional hover effect */
.image-btn:hover {
    transform: scale(1.01);
    transition: 0.3s ease;
}


.about-content {
    padding-left: 12%;
    z-index: 1;
    position: relative;
}


/* ===== WHY CHOOSE US SECTION START ===== */

.why-choose-section {
    background: #fff;
}

/* Section Title */
.section-title {
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding: 10px 0;
}

.section-title::before,
.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #000;
}

.section-title::before {
    top: 0;
}

.section-title::after {
    bottom: 0;
}

/* Content */
.why-content p {
    font-size: 25px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
    max-width: 620px;
}

/* Button */
.custom-read-btn {
    display: inline-block;
    padding: 14px 50px;
    font-size: 20px;
    color: #fff;
    background: #ef2020;
    border-radius: 80px;
    border: 6px solid #2f4f2f;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-read-btn:hover {
    background: #d81818;
    color: #fff;
}

/* Image Wrapper */
.why-img-wrapper {
    position: relative;
    display: inline-block;
}

.why-img-wrapper img {
    width: 100%;
    border-radius: 5px;
}


/* ===== WHY CHOOSE US SECTION END ===== */

/* ===== OUR NUMBERS SECTION ===== */
.our-numbers-section {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.nums-world-map {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 65%;
    pointer-events: none;
    left: 0;
    margin: 0 auto;
}

.nums-world-map img {
    width: 100%;
    height: auto;
    display: block;
}

.nums-main-heading {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

.nums-subtitle {
    font-size: 26px;
    color: #2e7d52;
    /* font-style: italic; */
    font-weight: 500;
    margin-bottom: 26px;
    font-family: "Montserrat", sans-serif;
}

.nums-desc {
    font-size: 20px;
    line-height: 31px;
    color: #000;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    max-width: 580px;
}

/* Stat boxes */
.nums-boxes-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.nums-box {
    width: 50%;
    height: 275px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.nums-box-red {
    background: #d92b24;
}

.nums-box-outline {
    border: 2px solid #ccc;
    background: #fff;
}

.nums-big {
    font-size: 112px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

.nums-label {
    font-size: 26px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

.nums-big-ppe {
    font-size: 112px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

.nums-label-dark {
    font-size: 26px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

/* 40 Years Workwear badge */
.forty-graphic {
    display: flex;
    /* align-items: stretch; */
    line-height: 1;
    justify-content: center;
}

.forty-num {
    font-size: 155px;
    font-weight: 900;
    color: #d92b24;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    display: block;
}

.forty-strip {
    width: 38px;
    background: #1d3d2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 4px -2px;
}

.forty-years {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.forty-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.forty-ribbon {
    background: #1d3d2a;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 10px 36px 10px 28px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 12% 100%, 0% 50%);
    margin-left: 8px;
    align-self: flex-end;
    margin-bottom: 8px;
    min-width: 160px;
}

/* ===== OUR NUMBERS SECTION END ===== */



/* ===== BROWSE BY CATEGORY SECTION START ===== */

.browse-category-section {
    position: relative;
}

/* Small Heading */
.small-title {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 8px 0;
}


.small-title::before {
    top: 0;
}

.small-title::after {
    bottom: 0;
}

/* Main Title */
.main-title {
    font-size: 34px;
    font-family: 'Aguarita Demo';
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

/* Category Card */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    height: 400px;
}

/* Overlay */
.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay.red {
    position: absolute;
    inset: 0;
    background: rgb(255 0 0 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Hover Effect */
.category-card:hover img {
    transform: scale(1.05);
}

/* Decorative Red Block */
.red-block {
    position: absolute;
    top: -30px;
    left: 30px;
    width: 300px;
    height: 70px;
    background: #c73c33;
    border-radius: 10px;
    z-index: -1;
}

.cat_block {
    margin-top: 20px;
}

/* Decorative Green Block */
.green-block {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 390px;
    height: 60px;
    background: #386246;
    border-radius: 10px;
    z-index: -1;
}

/* ===== BROWSE BY CATEGORY SECTION END ===== */


/* ===== CORPORATE VIDEO SECTION START ===== */

.corporate-video-section {
    background: #d92b24;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-image: url(../img/video-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Video Box */
.video-wrapper {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
}

.video-wrapper .video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-wrapper .video-thumb:hover img {
    transform: scale(1.04);
}

.video-wrapper .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.video-wrapper .video-thumb:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

a.certificate-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

/* Video Column Heading */
.video-col-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
}

/* Title */
.video-title {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Aguarita Demo';
    margin-bottom: 20px;
}

/* Text */
.video-text {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 30px;
}

/* Button */
.view-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #ffffff;
    color: #d92b24;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #8b1a15;
    transition: 0.3s ease;
}

.view-more-btn:hover {
    background: #8b1a15;
    color: #fff;
}

.videoContent {
    padding-left: 12%;
}

/* ===== CORPORATE VIDEO SECTION END ===== */

/* ===== OUR PRODUCTS SECTION START ===== */

.our-products-section {
    background: #fff;
}




/* Product Card */
.our-products-section .product-card {
    background: #e53935;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    height: 100%;
}

/* Heart Icon */

.wishlist-icon {
    position: absolute;
    top: 11px;
    right: 14px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    line-height: 1;
}

/* Hover effect */
.wishlist-icon:hover {
    transform: scale(1.15);
}

/* Optional: active state */
.wishlist-icon.active {
    color: #ffcccc;
}


.product-img {
    background: #dee3e6;
    padding: 0px;
    text-align: center;
}

.product-info {
    color: #fff;
    padding: 20px;
    position: relative;
}

.product-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    max-width: 200px;
    margin: 0 auto 15px auto;
}

.product-info ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}

.product-info ul li {
    padding-left: 10px;
    margin-bottom: 10px;
    list-style: disc;
    font-size: 14px;
}

.product-nav {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    gap: 15px;
    position: relative;
}


.read-btn {
    display: flex;
    padding: 6px 20px;
    background: #fff;
    color: #e53935;
    font-size: 16px;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s all ease;
    margin: 0 auto;
    width: max-content;
    font-weight: 600;
}

.swiper.productSwiper .swiper-wrapper {
    margin-bottom: 40px;
}

.read-btn:hover {
    background: #000;
    color: #fff;
}

.swiper.productSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-bottom: 30px;
}

/* Custom Arrows */
.product-prev,
.product-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    background: #0b5d3b;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    font-weight: 400;
}

.product-prev:focus-visible,
.product-next:focus-visible {
    outline: 0;
}

.swiper.certificateSwiper .swiper-wrapper {
    margin-bottom: 40px;
}

.product-next.swiper-button-disabled {
    background: #cdcdcd;
}

.product-prev.swiper-button-disabled {
    background: #cdcdcd;
}


/* ===== OUR PRODUCTS SECTION END ===== */

/* ===== CERTIFICATE SECTION START ===== */

.certificate-section {
    position: relative;
}


/* Certificate Card */
.certificate-card {
    background: #dbdbdb;
    padding: 15px;
    text-align: center;
    transition: 0.4s ease;
    border-radius: 10px;
}

.certificate-card img {
    object-fit: contain;
    width: 100%;
}


/* Custom Arrows */
.certificate-prev,
.certificate-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0b5d3b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
}

.certificate-prev:focus-visible,
.certificate-next:focus-visible {
    outline: 0;
}

.certi-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
    position: relative;
}


.certificate-next.swiper-button-disabled {
    background: #cdcdcd;
}

.certificate-prev.swiper-button-disabled {
    background: #cdcdcd;
}

/* Certificate ISO Label */
.cert-slide-wrap {
    display: flex;
    flex-direction: column;
}

.cert-label {
    background: #d92b24;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    padding: 10px 16px;
    margin-top: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Certificate Page — Slider 1 & 2 Arrows */
.cert-one-prev,
.cert-one-next,
.cert-two-prev,
.cert-two-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0b5d3b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 26px;
    font-weight: 400;
    color: #fff;
}

.cert-one-prev:focus-visible,
.cert-one-next:focus-visible,
.cert-two-prev:focus-visible,
.cert-two-next:focus-visible {
    outline: 0;
}

.cert-one-next.swiper-button-disabled,
.cert-one-prev.swiper-button-disabled,
.cert-two-next.swiper-button-disabled,
.cert-two-prev.swiper-button-disabled {
    background: #cdcdcd;
}

/* ===== CERTIFICATE SECTION END ===== */

/* ===== COMPLIANCE SECTION START ===== */
.compliance-section {
    background: #fff;
    padding-top: 0;
}

/* Title */
.compliance-main-title {
    font-size: 50px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.compliance-sub-title {
    font-size: 50px;
    font-weight: 800;
    color: #d92b24;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.compliance-title-line {
    width: 100px;
    height: 6px;
    background: #d92b24;
    margin: 0 auto;
    border-radius: 42px;
}

/* Card */
.compliance-card {
    background: #fff;
    border-radius: 18px 18px 0px 0px;
    padding: 44px 28px 0px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-shadow: 0 0px 28px rgb(0 0 0 / 14%);
    position: relative;
    transition: box-shadow 0.3s;
}

.compliance-card::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background-color: #d92b24;
    border-radius: 0px 0px 15px 15px;
}


/* Icon Circle */
.compliance-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #d92b24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #d92b24;
    font-size: 52px;
    flex-shrink: 0;
}

/* Short line below icon */
.compliance-card-line {
    width: 40px;
    height: 3px;
    background: #d92b24;
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* Card title */
.compliance-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #d92b24;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Card description */
.compliance-card-desc {
    font-size: 18px;
    color: #000000;
    line-height: 1.75;
    margin-bottom: 28px;
    flex-grow: 1;
    font-weight: 600;
}

/* Number badge */
.compliance-number {
    background: #d92b24;
    width: 90px;
    height: 50px;
    border-radius: 26px 26px 0px 0px;
    margin-top: auto;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.compliance-number p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.compliance-icon-wrap img {
    width: 80px;
    height: 80px;
}

/* Responsive */
@media (max-width: 991px) {

    .compliance-main-title,
    .compliance-sub-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .compliance-icon-wrap {
        width: 100px;
        height: 100px;
        font-size: 42px;
    }
}

@media (max-width: 575px) {

    .compliance-main-title,
    .compliance-sub-title {
        font-size: 28px;
    }

    .compliance-card {
        padding: 32px 22px 0;
    }
}

/* ===== COMPLIANCE SECTION END ===== */

/* ===== DOWNLOAD CATALOGUE SECTION START ===== */

.download-catalogue-section {
    background: url("../img/pdf-bg.jpg") center/cover no-repeat;
    padding: 60px 0;
    position: relative;
    margin: 80px 0;
}

/* Optional overlay darken */
.download-catalogue-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

.download-catalogue-section .section-title::before,
.download-catalogue-section .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #fff;
}

.download-catalogue-section .section-title {
    margin-bottom: 0;
}

.catalogue-wrapper {
    position: relative;
    background: #e53935;
    padding: 45px 30px;
    border-radius: 20px;
    z-index: 2;
}

/* Title */
.catalogue-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.catalogue-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 180px;
    height: 2px;
    background: #fff;
}

.catalogue-btn img {
    width: 35px;
}

/* Buttons */
.catalogue-btn {
    display: flex;
    align-items: center;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    background: #fff;
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
    padding: 8px 24px;
    text-align: center;
    gap: 15px;
    justify-content: center;
}


.catalogue-btn:hover {
    background: #fff;
    color: #e53935;
}

/* ===== DOWNLOAD CATALOGUE SECTION END ===== */


/* ===== CONTACT CTA SECTION START ===== */

.contact-cta-section {
    background: url("../img/cta-bg.jpg") center/cover no-repeat;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


/* Red Content Box */
.cta-wrapper {
    position: relative;
    background: #e53935;
    padding: 45px 60px;
    border-radius: 20px;
    z-index: 2;
    color: #fff;
}

/* Title */
.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Aguarita Demo';
    text-align: start;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Text */
.cta-text {
    font-size: 25px;
    line-height: 40px;
    text-align: start;
    margin-bottom: 0;
}

/* Button */
.cta-btn {
    position: relative;
    display: inline-block;
    padding: 10px 35px;
    background: #fff;
    color: #e53935;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    font-size: 25px;
    /* text-transform: uppercase; */
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}

/* ===== CONTACT CTA SECTION END ===== */



/* ===== FOOTER SECTION START ===== */

.section.main-footer {
    background: #383838;
    color: #ddd;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}


.main-footer h5 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Aguarita Demo';
}

.footer-blck {
    display: flex;
    gap: 20px;
    align-items: end;
}

.main-footer p {
    font-size: 20px;
    line-height: 1.8;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 0px;
}

.space-top {
    margin-top: 0px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-element img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.padding-left {
    padding-left: 40px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    font-size: 20px;
}

.footer-links a:hover {
    color: #e53935;
}

.social-icons {
    display: flex;
}

.social-icons span {
    line-height: 1;
}

/* Social Icons */
.social-icons a {
    display: flex;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #141414;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: 0.3s ease;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: #e53935;
    color: #fff;
}

/* Map */
.map-wrapper iframe {
    border-radius: 5px;
}

.footer-blck {
    position: relative;
    z-index: 2;
}

.footer-blck .footer-logo {
    background-color: #fff;
    padding: 20px 0px;
    border-radius: 10px;
    width: 130px;
    text-align: center;
}

.footer-bottom {
    background: #fff;
    color: #000;
    padding: 23px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Oswald", sans-serif;
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 65px;
}

/* ===== FOOTER SECTION END ===== */

/* ===== HIGHLIGHT FEATURES SECTION START ===== */

.highlight-features-section {
    background: #dc302e;
    padding: 80px 0;
    position: relative;
}

/* Light Red Center Strip */
.highlight-features-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 180px;
    background: #ff6a6a;
    transform: translateY(-50%);
    z-index: 0;
}

/* White Rounded Container */
.features-wrapper {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px 30px;
    z-index: 2;
}

/* Feature Box */
.feature-box {
    transition: 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

/* Icon Container */

.feature-icon i {
    font-size: 20px;
    color: #d92b24;
}

/* Title */
.feature-box h4 {
    color: #dc302e;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    margin-bottom: 0;
}


/* ===== HIGHLIGHT FEATURES SECTION END ===== */

.hamburger-menu i {
    color: #fff;
    font-size: 17px;
    width: 35px;
    height: 35px;
    padding: 10px 16px;
    display: flex;
    border-radius: 2px;
    background-color: #dc302e;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.offcanvas.offcanvas-end.mobile-menu {
    width: 100%;
    background-color: #fff;
    background-clip: unset;
}

.mobile-top li a {
    width: 100%;
    background: none;
    text-decoration: none;
    border: none;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    font-family: "Oswald", sans-serif;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    color: #dc302e;
    line-height: 1;
}

.innermenuwrap li a {
    color: #fff;
}

.offcanvas.offcanvas-end.mobile-menu button.btn-close {
    color: #fff;
    font-size: 17px;
    width: 35px;
    height: 35px;
    padding: initial;
    display: flex;
    border-radius: 2px;
    background-color: #dc302e;
    position: relative;
    overflow: hidden;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    opacity: 1;
    border-radius: 2px;
    margin-right: 0;
}

/* ==============================
   OFFCANVAS STAGGER ENTRY
============================== */

.mobile-menu-list .mobile-top>li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

/* When offcanvas is visible */
.offcanvas.show .mobile-menu-list .mobile-top>li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays (top level items) */
.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(1) {
    transition-delay: 0.05s;
}

.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(2) {
    transition-delay: 0.1s;
}

.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(3) {
    transition-delay: 0.15s;
}

.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(4) {
    transition-delay: 0.2s;
}

.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(5) {
    transition-delay: 0.25s;
}

.offcanvas.show .mobile-menu-list .mobile-top>li:nth-child(6) {
    transition-delay: 0.3s;
}

/* ==============================
   SUBMENU STAGGER
============================== */

.submenu li {
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.35s ease;
}

/* Animate when submenu active */
.has-submenu.active .submenu li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger submenu items */
.has-submenu.active .submenu li:nth-child(1) {
    transition-delay: 0.05s;
}

.has-submenu.active .submenu li:nth-child(2) {
    transition-delay: 0.1s;
}

.has-submenu.active .submenu li:nth-child(3) {
    transition-delay: 0.15s;
}

.has-submenu.active .submenu li:nth-child(4) {
    transition-delay: 0.2s;
}

.has-submenu.active .submenu li:nth-child(5) {
    transition-delay: 0.25s;
}

.has-submenu.active .submenu li:nth-child(6) {
    transition-delay: 0.3s;
}

/* ==============================
   Smooth Expand Animation
============================== */

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.has-submenu.active .submenu {
    background-color: rgb(17 17 17);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.has-submenu.active .submenu li:last-child {
    border-bottom: 0;
}

/* ==============================
   Optional: Slight Button Hover Polish
============================== */

.mobile-top li a:hover,
.submenu-toggle:hover {
    color: #dc302e;
    transition: color 0.3s ease;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f4f4f4;
}

.has-submenu.active .submenu {
    background-color: rgb(220 48 46);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 800px;
    padding: 20px;
}

.submenu-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Oswald", sans-serif;
    cursor: pointer;
    line-height: 1;
    color: #dc302e;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}


.about-element img {
    position: absolute;
    top: 0;
    right: 0;
}


/* ===== PRODUCTS & CAPACITY SECTION START ===== */

.capacity-section {
    overflow: hidden;
}

/* LEFT SIDE WITH BACKGROUND IMAGE */
.capacity-left {
    position: relative;
    min-height: 600px;
    padding: 100px 70px;
    background: url("../img/red-bg.jpg") center/cover no-repeat;
    color: #fff;
}

/* Red Overlay */
/* .capacity-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(217, 43, 36, 0.92);
} */

/* Content above overlay */
.capacity-content {
    position: relative;
    z-index: 2;
}

/* Decorative grid pattern */
.capacity-left::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.08) 2px,
            transparent 2px);
    background-size: 20px 20px;
    opacity: 0.4;
}

/* Quote */
.quote-mark {
    font-size: 0;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 60px;
}

/* Heading */
.capacity-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Paragraph */
.capacity-content p {
    font-size: 25px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 660px;
}

/* Button */
.capacity-btn {
    display: inline-block;
    padding: 16px 35px;
    border: 3px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 40px;
    font-size: 18px;
    line-height: 1;
}

.capacity-btn:hover {
    background: #fff;
    color: #d92b24;
}

/* RIGHT IMAGE */
.capacity-right img {
    height: 100%;
    object-fit: cover;
}

/* ===== PRODUCTS & CAPACITY SECTION END ===== */



/* ===== MANUFACTURING INFO SECTION START ===== */

.manufacturing-section {
    background: url("../img/nothing.jpg") center/cover no-repeat;
    padding: 120px 0;
    position: relative;
}

/* Dark Overlay */
.manufacturing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* Red Content Box */
.manufacturing-wrapper {
    position: relative;
    background: #be201c;
    padding: 60px 50px;
    border-radius: 15px;
    color: #fff;
    z-index: 2;
}



/* Paragraph */
.manufacturing-wrapper p {
    font-size: 22px;
    line-height: 44px;
    margin-bottom: 25px;
}


.imgWrapper img {
    width: 100%;
}

.minus-margin {
    margin-top: -160px;
}

/* ===== MANUFACTURING INFO SECTION END ===== */

.about-content h2 {
    font-family: 'Aguarita Demo';
    color: #000;
    font-size: 40px;
    text-transform: uppercase;
}

.how-left h2 {
    font-family: 'Aguarita Demo';
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
}

/* ===== HOW IT WORKS SECTION START ===== */

.how-it-works-section {
    padding: 100px 0;
    background: #d22f26;
}

/* Left Content Box */
.how-left {
    padding: 60px 50px;
    border-radius: 12px;
    color: #fff;
}

/* Heading */
.how-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Paragraph */
.how-left p {
    font-size: 25px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
    max-width: 530px;
}

/* Button */
.how-btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #0b5d3b;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.how-btn:hover {
    background: #0b5d3b;
    color: #fff;
}

/* Image */
.how-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== HOW IT WORKS SECTION END ===== */


/* ===================================================== */
/* ================= INNER BANNER SECTION ============== */
/* ===================================================== */

.inner-banner {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* ===================================================== */
/* ================= ADDRESS SECTION =================== */
/* ===================================================== */



.address-wrapper {
    background: #e0e4e3;
    border-radius: 10px;
    padding: 50px 35px;
    position: relative;
}


.red-outline-box {
    position: absolute;
    left: 80px;
    bottom: -50px;
    width: 354px;
    height: 354px;
    border: 3px solid #e11d1d;
    z-index: -1;
}

/* ===================================================== */
/* ================= IMAGE STYLING ===================== */
/* ===================================================== */

.building-img img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}





/* ===================================================== */
/* ================= ADDRESS BLOCK ===================== */
/* ===================================================== */

.address-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.address-block .icon img {
    min-width: 30px;
    height: 30px;
    margin-top: 9px;
}

.address-block .icon {
    font-size: 18px;
    margin-right: 10px;
    color: #d40000;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    padding-left: 37px;
}

.other-address p {
    max-width: 410px;
}

.oa-1 {
    margin-top: 50px;
}

.address-block p {
    margin: 0;
    font-size: 22px;
    line-height: 39px;
    color: #000;
}

.content-bx p:not(:last-child) {
    margin-bottom: 11px;
}

/* ===================================================== */
/* ================= CONTACT TEXT ====================== */
/* ===================================================== */

.contact-text {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}


/* ===================================================== */
/* ================= SOCIAL ICONS ====================== */
/* ===================================================== */

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #c92929;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 8px;
    font-size: 21px;
    font-weight: 400;
}

.social-icons a:hover {
    background: #b00000;
}

/* ===== REACH US CONTACT FORM START ===== */

.reach-section {}

.reach-card {
    background: #c92323;
    padding: 50px 60px 60px;
    border-radius: 10px;
}

.reach-title {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 35px;
}

.reach-input {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
}

.reach-input:focus {
    box-shadow: none;
    outline: none;
    background: #ffffff;
}

.reach-textarea {
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 18px;
    height: 180px;
    resize: none;
    font-size: 14px;
}

.reach-textarea:focus {
    box-shadow: none;
    outline: none;
    background: #ffffff;
}

.reach-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reach-btn:hover {
    background: #ffffff;
    color: #c92323;
}

/* ===== REACH US CONTACT FORM END ===== */


/* ===== PRODUCT LISTING SECTION START ===== */

.product-listing {}

/* Category label */
.category-label {
    background: #d92b24;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 25px;
    position: absolute;
    top: 140px;
}

.category-label span {
    background: #fff;
    color: #d92b24;
    padding: 5px 10px;
    margin-left: 5px;
}

.product-grid {
    --bs-gutter-x: 3.5rem;
    --bs-gutter-y: 3.5rem;
}

/* All Products Title */
.all-products-title {
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.all-products-title span {
    padding: 0 15px;
}

.all-products-title::before,
.all-products-title::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #000;
    width: 60px;
    top: 50%;
}

.all-products-title::before {
    left: -70px;
}

.all-products-title::after {
    right: -70px;
}

/* Product Card */
.product-card {
    background: #f2f1f2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* Category badge - red pill top-left */
.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d92b24;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
    text-transform: uppercase;
}

/* Card footer row */
.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

/* Card action buttons */
.card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #d92b24;
    border-radius: 6px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.card-btn-arrow:hover {
    background: #b71c1c;
    color: #fff;
}

.card-btn-eye {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    background: #fff;
    border-radius: 6px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.card-btn-eye:hover {
    color: #d92b24;
}

.product-card img {
    width: 100%;
    padding: 45px;
    height: 410px;
    object-fit: contain;
}



.our-products-section .product-card img {
    height: 300px
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Product Code */
.product-code {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
    max-width: 300px;
}


/* Pagination */
.custom-pagination {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 12px;
    margin-bottom: 0;
}

.contact-footer .footer-element img {
    opacity: 0.3;
}

.custom-pagination li {
    width: 40px;
    height: 40px;
    line-height: 45px;
    border: 1px solid #999;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #000;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-pagination li.active {
    background: #d92b24;
    color: #fff;
    border-color: #d92b24;
}

.custom-pagination li.arrow {
    font-size: 22px;
}

.custom-pagination li:hover {
    background: #d92b24;
    color: #fff;
    border-color: #d92b24;
}



/* ===== PRODUCT LISTING SECTION END ===== */

/* ===== WELDING APPAREL CATEGORY SECTION START ===== */

.welding-category-section {
    background: url('../img/appreal-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.welding-wrapper {
    background: #ca2827;
    padding: 40px;
    border-radius: 10px;
}

.welding-category-label {
    background: #fff;
    padding: 11px 30px;
    display: inline-block;
    position: absolute;
    top: 230px;
    width: 440px;
    text-align: center;
}

.welding-category-label h3 {
    color: #cf2a2a;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-size: 25px;
}

.custmo-number {
    padding: 50px 0 100px 0;
}

.welding-category-label span {
    display: inline-block;
    background: #cf2a2a;
    color: #fff;
    padding: 5px 12px;
    margin-top: 0px;
    line-height: 1;
}

/* Product Card */
.welding-card {
    text-align: center;
}

.welding-card img {
    background: #fff;
    width: 100%;
    border: 8px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.welding-card img:hover {
    transform: translateY(-6px);
}

.welding-card h5 {
    color: #fff;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
}



/* ===== WELDING APPAREL CATEGORY SECTION END ===== */


/* ===== WORKWEAR CATEGORY SLIDER START ===== */

.workwear-section {
    padding: 80px 0 0px 0;
}

/* Label */
.workwear-label {
    background: #d92b24;
    color: #fff;
    display: inline-block;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
}

.workwear-label span {
    background: #fff;
    color: #d92b24;
    padding: 6px 12px;
    margin-left: 8px;
}

/* Card */
.workwear-card {
    background: #f5f5f5;
    box-shadow: 0 10px 25px rgb(0 0 0 / 23%);
    text-align: center;
    transition: 0.3s ease;
}

.workwear-card img {
    width: 100%;
    padding: 20px;
    height: 450px;
    object-fit: contain;
}

.workwearSwiper {
    margin-top: 50px;
    padding: 20px 15px;
}

/* Bottom red strip */
.workwear-code {
    background: #c8271f;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    width: 100%;
}

/* Arrows */
.workwear-prev,
.workwear-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #0e4d1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s ease;
}

.workwear-prev {
    left: -80px;
    color: #fff;
}

.workwear-next {
    right: -80px;
    color: #fff;
}

.workwear-next.swiper-button-disabled {
    right: -80px;
    background: #cfcfcf;
    color: #fff;
}

.workwear-prev.swiper-button-disabled {
    background: #cfcfcf;
    color: #fff;
}

.workwear-prev:hover,
.workwear-next:hover {
    transform: translateY(-50%) scale(1.1);
}


/* ===== WORKWEAR CATEGORY SLIDER END ===== */


/* INNER BANNER */

.inner-banner-abt {
    height: 542px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    padding: 137px 0;
}

/* Background image added from HTML */
.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Content above overlay */
.banner-content,
.banner-right {
    position: relative;
    z-index: 3;
    text-align: center;
}

.banner-content-1,
.banner-right-1 {
    position: relative;
    z-index: 3;
    text-align: left;
}

.banner-content-1 p {
    max-width: 500px;
}

.small-title {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
    padding: 0;
    font-size: 40px;
}

.main-title {
    /* font-size: 78px;
    font-weight: 300; */
    margin-bottom: 0;
    /* color: #fff; */
}

.view-btn {
    background: #fff;
    color: #c00;
    padding: 10px 25px;
    border-radius: 3px;
    font-weight: 600;
}


/* RIGHT SIDE IMAGES */

.banner-right {
    height: 100%;
}

.model {
    position: absolute;
    bottom: 0;
}

.model1 {
    left: 10%;
    height: 350px;
}

.model2 {
    right: 0;
    height: 300px;
}

.featuredBxx {
    padding: 60px 30px 20px 20px;
}

.image-panel {
    padding: 20px;
}


/* PRODUCT INNER BANNER */

.product-banner {
    height: 535px;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    padding: 170px 0;
}



/* CONTENT ABOVE */
.banner-content,
.banner-right {
    position: relative;
    z-index: 4;
}

.banner-content-1,
.banner-right-1 {
    position: relative;
    z-index: 4;
}

.title-light {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 20px;
}

.title-bold {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Aguarita Demo';
    line-height: 1;
}

.product-img {
    max-height: 350px;
}

/* CSR INNER BANNER */

.csr-banner {
    height: 539px;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    padding: 177px 0;
}

/* Background from HTML */
.csr-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Content layer */
.csr-content,
.csr-right {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Typography */

.csr-title-main {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
}

.csr-title-sub {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Aguarita Demo';
    line-height: 1;
}

/* Button */

.csr-btn {
    background: #fff;
    color: #c00;
    padding: 10px 25px;
    display: inline-block;
    margin-top: 0px;
    text-decoration: none;
    font-weight: 600;
}

/* Models positioning */

.csr-model {
    position: absolute;
    bottom: 0;
}

.csr-model-back {
    left: 20%;
    height: 350px;
}

.csr-model-front {
    right: 0;
    height: 320px;
}

/* Left Yellow Sidebar */
.sidebar-yellow {
    background-color: #d92b24;
    width: 90px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

/* Center Image Panel */
.image-panel {
    border-right: 1px solid #e0e0e0;
}

/* Product Image */
.product-img {
    max-height: 360px;
    object-fit: contain;
    width: 100%;
}

/* Product Code */
.product-code-text {
    font-size: 18px;
    font-weight: 700;
    color: #d92b24;
    line-height: 1.2;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 5px 8px 0 #00000040;
    width: max-content;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    background-color: #d92b24;
    /* border-bottom: 3px solid #000; */
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    padding: 4px 18px;
    white-space: nowrap;
    box-shadow: 0px 4px 7px 0px #0000002b;
}

/* Feature List */
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
}

.feature-icon {
    font-size: 1.1rem;
    color: #555;
    margin-top: 3px;
    flex-shrink: 0;
    line-height: 1;
}

/* View Product Button */
.btn-view-product {
    background-color: #d92b24;
    border: 2px solid #d92b24;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.2s;
}

.btn-view-product:hover {
    background-color: #d92b24;
    border-color: #d92b24;
    color: #fff;
}

/* Get Enquiry Button */
.btn-get-enquiry {
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.btn-get-enquiry:hover {
    background-color: #000;
    color: #fff;
}

/* Close Button */
.btn-close-custom {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #d92b24;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-custom:hover {
    background-color: #d92b24;
}


.small-title-1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
}

.main-title-1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Aguarita Demo';
    line-height: 1;
}

/* CONTACT HERO SECTION */

.contact-hero {
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    padding: 209px 0;
}

/* Background Image from HTML */
.contact-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* LEFT WHITE POLYGON */
.contact-white-shape {
    position: absolute;
    width: 55%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, 85% 0, 65% 100%, 0% 100%);
    z-index: 2;
}

/* RIGHT RED SHAPE */
.contact-red-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background: rgba(200, 0, 0, 0.9);
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

/* BOTTOM GREEN SHAPE */
.contact-green-shape {
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 40%;
    height: 120px;
    background: #0c5c3d;
    clip-path: polygon(0 100%, 100% 40%, 100% 100%);
    z-index: 3;
}

/* CONTENT */
.contact-content {
    position: relative;
    z-index: 4;
    padding-left: 40px;
    text-align: center;
}

.contact-title {
    font-size: 60px;
    font-family: 'Aguarita Demo';
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
    color: #d40000;
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    line-height: 26px;
    color: #0f5233;
}

/* Small triangle icons */
.contact-icons {
    margin-top: 25px;
}

.contact-icons span {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #1b3f2f;
    margin-bottom: 10px;
}

/* ===== OLD BANNER CONTENT STYLES REPLACED BY NEW STYLES ABOVE ===== */

/* about.css */
.banner-content .small-title-1,
.banner-content .main-title-1,
.banner-content .cert-banner-title,
.banner-content h1,
.banner-content h2,
.banner-content h3,
.banner-content h4,
.banner-content p,
.banner-content span,
.banner-content .view-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

/* Certificate Banner Title */
.cert-banner-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    position: absolute;
    left: 6px;
    right: 0;
    top: 84px;
}

.inner-certi-abt .cert-banner-title span {
    font-size: 40px;
}

.inner-page-anim {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s ease, transform 0.7s ease !important;
}

/* contact.css */
.contact-content .contact-title,
.contact-content .contact-subtitle {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

.inner-page-anim {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s ease, transform 0.7s ease !important;
}

/* csr.css */
.csr-content .csr-title-main,
.csr-content .csr-title-sub,
.csr-content .csr-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

.inner-page-anim {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s ease, transform 0.7s ease !important;
}

/* product.css */
.banner-content-1 .title-light,
.banner-content-1 .title-bold,
.banner-content-1 p {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

.inner-page-anim {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s ease, transform 0.7s ease !important;
}

/* ===== HOME PRODUCT CATEGORY SLIDERS ===== */

.home-products-section .product-card img {
    height: 421px;
}

.home-product-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.home-gloves-prev,
.home-gloves-next,
.home-welding-prev,
.home-welding-next,
.home-workwear-prev,
.home-workwear-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0b5d3b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}

.home-gloves-prev:hover,
.home-gloves-next:hover,
.home-welding-prev:hover,
.home-welding-next:hover,
.home-workwear-prev:hover,
.home-workwear-next:hover {
    background: #b71c1c;
}

.home-gloves-prev.swiper-button-disabled,
.home-gloves-next.swiper-button-disabled,
.home-welding-prev.swiper-button-disabled,
.home-welding-next.swiper-button-disabled,
.home-workwear-prev.swiper-button-disabled,
.home-workwear-next.swiper-button-disabled {
    background: #cdcdcd;
    cursor: default;
}

.last-home-section {
    padding-bottom: 140px;
}

/* ===== HOME PRODUCT CATEGORY SLIDERS END ===== */


/* ===== HOME ABOUT SECTION ===== */

.home-about-section {
    /* overflow: hidden; */
    padding-top: 250px;
}

.home-about-top {
    background-color: #f4f4f4;
    padding: 80px 0 220px;
    position: relative;
}

.button-only {
    background-color: #ff0000;
    padding: 40px 0;
    margin-top: -138px;
    z-index: 1;
    position: relative;
}

.home-about-img-wrap img {
    width: auto;
    object-fit: cover;
    object-position: top center;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.btn-abt {
    padding-left: 8%;

}

.home-about-content {
    padding-left: 8%;
}

.home-about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 28px;
    line-height: 1.2;
}

.home-about-content p {
    font-size: 25px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0;
    max-width: 540px;

}

/* Red strip with button */


.home-about-btn {
    display: inline-block;
    padding: 13px 24px;
    background: #fff;
    color: #d92b24;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.home-about-btn:hover {
    background: #f0f0f0;
    color: #b71c1c;
}

/* ===== HOME ABOUT SECTION END ===== */

/* ===== GLOVE CATEGORY TABS ===== */
.gloves-tab-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    color: #111;
    text-transform: uppercase;
}

.category-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.6rem 1.6rem;
    background: #f4f4f4;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    text-align: left;
    font-weight: 600;
}

.category-tab-btn .tab-icon {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
    font-weight: 400;
    line-height: 1;
    color: #d92b24;
}

.category-tab-btn:hover {
    background: #e0e0e0;
    transform: translateX(4px);
}

.category-tab-btn:hover .tab-icon {
    transform: translateX(4px);
}

.category-tab-btn.active {
    background: #d92b24;
    color: #fff;
    box-shadow: 0 4px 20px rgba(217, 43, 36, 0.35);
    transform: translateX(0);
}

.category-tab-btn.active .tab-icon {
    color: #fff;
    transform: none;
}

/* Product grid tab-switch animation */
@keyframes gridFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-grid.tab-animating>.col-lg-4 {
    animation: gridFadeIn 0.38s ease both;
}

.product-grid.tab-animating>.col-lg-4:nth-child(1) {
    animation-delay: 0s;
}

.product-grid.tab-animating>.col-lg-4:nth-child(2) {
    animation-delay: 0.07s;
}

.product-grid.tab-animating>.col-lg-4:nth-child(3) {
    animation-delay: 0.14s;
}

/* Empty category state */
.glove-empty-state {
    width: 100%;
    padding: 3rem 1rem;
    text-align: center;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ===== GLOVE CATEGORY TABS END ===== */


/* ===== MISSION VISION SECTION ===== */

.mv-section {
    background: #fff;
}

.mv-img-grid {
    display: flex;
    gap: 13px;
    width: 100%;
}

.mv-img-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
    min-width: 0;
}

/* Left column — 2 equal images: 295 + 10 + 295 = 600px total */
.mv-img-eq {
    width: 100%;
    height: 335px;
    object-fit: cover;
    /* border-radius: 6px; */
    display: block;
}

/* Right column — tall top + short bottom: 370 + 10 + 220 = 600px total */
.mv-img-tall {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.mv-img-short {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.mv-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    transition: 0.3s all ease;
}

.mv-text-group {
    flex: 1;
    min-width: 0;
}

.mv-heading {
    font-size: 33px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
}

.mv-icon-box {
    border-radius: 4px;
    background: #efefef;
    width: 123px;
    height: 123px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    transition: var(--transition);
}

.mv-icon-box i {
    line-height: 1;
    color: #000;
    font-size: 63px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mv-block:hover .mv-icon-box {
    background: #d92b24;
}

.mv-block:hover .mv-icon-box i {
    color: #fff;
}

.mv-text {
    font-size: 20px;
    line-height: 32px;
    color: #000;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

.mv-divider {
    border: none;
    border-top: 2px solid #000000;
    margin: 30px 0;
    color: #000;
    opacity: 1;
}

/* ===== MISSION VISION SECTION END ===== */


/* ===== PAGE SECTION HEADING (red square + title + underline) ===== */

.page-section-heading {
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 14px;
    margin-bottom: 0px;
}

.page-section-heading h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 33px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0;
    line-height: 1;
}

.page-section-heading .heading-square {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #d92b24;
    flex-shrink: 0;
}

/* ===== PAGE SECTION HEADING END ===== */

/* ===== OUR PRODUCTS CARDS SECTION ===== */
.prod-cards-section {
    background: #fff;
    padding-top: 40px;
}

.prod-card {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.prod-badge-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.prod-badge {
    display: inline-block;
    background: #d92b24;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 9px 24px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
}

.prod-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.prod-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Gloves 2x2 grid */
.gloves-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #2c2c2c;
    padding: 18px;
    border-radius: 10px;
}

.gloves-grid-item {
    border-radius: 6px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.gloves-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gloves-yellow {
    border: 2.5px solid #f5c400;
}

.gloves-orange {
    border: 2.5px solid #e07820;
}

.prod-arrow-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 60px;
    background: #fff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d92b24;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    z-index: 2;
}

.prod-arrow-btn:hover {
    background: #d92b24;
    color: #fff;
}

/* Hover effect inside image wrap */
.prod-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    transition: background 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.prod-img-wrap:hover::after {
    background: rgba(0, 0, 0, 0.18);
}

.prod-main-img {
    transition: transform 0.45s ease;
}

.prod-img-wrap:hover .prod-main-img {
    transform: scale(1.06);
}

.gloves-grid {
    transition: transform 0.45s ease;
}

.prod-img-wrap:hover .gloves-grid {
    transform: scale(1.04);
}

.prod-arrow-btn {
    z-index: 2;
}

/* ===== OUR PRODUCTS CARDS SECTION END ===== */

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    background: #fff;
    padding-top: 70px;
}

/* Left column: heading at top, paragraph+button pushed to bottom */
.why-left-col {
    display: flex;
    flex-direction: column;
    min-height: 640px;
}

.why-main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

.why-bottom {
    margin-top: 0;
    padding-top: 0px;
}

.why-desc {
    font-size: 18px;
    color: #000;
    line-height: 28px;
    margin-bottom: 28px;
    font-weight: 500;
}

.why-read-btn {
    display: inline-block;
    background: #d92b24;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    transition: var(--transition);
}

.why-read-btn:hover {
    background: #b01e18;
    color: #fff;
}

/* Circles container */
.why-circles-wrap {
    position: relative;
    width: 100%;
    height: 860px;
}

/* Base circle */
.why-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.why-circle-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
    font-family: "Montserrat", sans-serif;
}

.why-circle-text {
    font-size: 1rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

/* Red circle — large, left-center */
.why-circle-red {
    width: 400px;
    height: 400px;
    background: #d92b24;
    left: 10px;
    top: 115px;
}

/* Green circle — medium, top-right */
.why-circle-green {
    width: 335px;
    height: 335px;
    background: #1d3d2a;
    right: 90px;
    top: 230px;
}

/* Gray circle — medium-large, bottom-center */
.why-circle-gray {
    width: 300px;
    height: 300px;
    background: #e7e7e7;
    left: 230px;
    bottom: 20px;
}

.why-circle-gray .why-circle-title,
.why-circle-gray .why-circle-text {
    color: #333;
}

/* SVG arrows */
.why-arrow {
    position: absolute;
    pointer-events: none;
}

/* Arrow 1: large inverted-U arc between red and green, arrowhead DOWN */
.why-arrow-1 {
    width: auto;
    height: 215px;
    right: 31%;
    top: 0;
}

/* Arrow 2: arc curving right then down-left, arrowhead LEFT to gray */
.why-arrow-2 {
    width: auto;
    height: 206px;
    right: 181px;
    bottom: 8%;
}

/* ===== WHY CHOOSE US SECTION END ===== */

/* ===== WHY CHOOSE US — MOBILE SLIDER (≤767px) ===== */
@media (max-width: 767px) {
    .why-mobile-slider {
        padding-bottom: 40px;
        margin-top: 30px;
    }

    .why-slide-card {
        border-radius: 16px;
        padding: 36px 28px;
        min-height: 240px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .why-slide-red {
        background: #d92b24;
    }

    .why-slide-green {
        background: #1d3d2a;
    }

    .why-slide-gray {
        background: #e5e5e5;
    }

    .why-slide-gray .why-circle-title,
    .why-slide-gray .why-circle-text {
        color: #333;
    }

    .why-mobile-pagination {
        bottom: 0;
    }

    .why-mobile-pagination .swiper-pagination-bullet {
        background: #000000;
        opacity: 0.4;
        width: 10px;
        height: 10px;
    }

    .why-mobile-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #fff;
    }
}

/* ===== WHY CHOOSE US MOBILE SLIDER END ===== */

/* ===== MOBILE ENQUIRE BUTTON ===== */
.mobile-enquire-wrap {
    padding: 24px 0 8px;
}

.mobile-enquire-btn {
    display: block;
    width: 100%;
    background-color: #d92b24;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 14px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.mobile-enquire-btn:hover {
    background-color: #b82220;
    color: #fff;
}

/* ===== MOBILE ENQUIRE BUTTON END ===== */

/* ===== SCROLL REVEAL — H2 ===== */
h2.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    /* No transition here: initial hide is instant so there is no 0.75s
       hide-animation that can be interrupted by the IntersectionObserver. */
}

h2.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    /* Transition lives only on the revealed state so it fires exclusively
       on the reveal (0→1), never on the initial hide. */
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mission / Vision heading scroll reveal */
.mv-heading {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mv-heading.mv-revealed {
    opacity: 1;
    transform: translateX(0);
}

.mv-heading:nth-of-type(2) {
    transition-delay: 0.15s;
}

/* Product card link wrapper */
a.prod-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ===== SCROLL REVEAL END ===== */

/* ===== HEADER ENQUIRY BUTTON ===== */
.header-enquiry-btn {
    display: inline-block;
    background: #d92b24;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

.header-enquiry-btn:hover {
    background: #b01e18;
    color: #fff;
}

/* ===== HEADER ENQUIRY BUTTON END ===== */

.logo-animation img {
    width: 340px;
    height: 340px;
}