:root {
    --primary-color: #b5403d;
    --primary-dark-color: #881816;
    --primary-bg-color: #f7f3ec;
    --secondary-color: #dcdcdc;
    --secondary-bg-color: #272727;
    --light-color: #ffffff;
    --dark-color: #000000;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    scroll-behavior: smooth;
    color: #000;
    background-color: #fff;
}

.commonBtn {
    background-image: linear-gradient(to right, #b5403d 0%, #881816 100%);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 31px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.commonBtn:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

.manrope {
    font-family: "Manrope", sans-serif;
}

.playfair {
    font-family: "Playfair Display", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

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

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    font-size: 16px;
    margin: 0 auto;
}

/*** header ***/
header {
    background-color: var(--dark-color);
    position: relative;
}

header:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--light-color);
    transform: translateY(-50%);
    opacity: 0;
    transition:
        height 0.5s ease,
        opacity 0.5s ease;
}

header.menuActive:after {
    opacity: 1;
    height: 100%;
}

header .navbar {
    /* position: relative; */
    z-index: 2;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 0 !important;
    margin: 0;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.02em;
}

.navbar-nav {
    gap: 2.2rem;
}

.navbar-nav .nav-item.has-megamenu {
    position: static;
}

.navbar-nav .nav-item.has-megamenu .nav-link-group {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    /* padding-bottom: 22px; */
}

.navbar-nav .nav-item.has-megamenu .nav-link-group:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    height: 3px;
    background: var(--primary-color);
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.navbar-nav .nav-item.has-megamenu .menuToggle {
    background: none;
    border: none;
    padding: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: inherit;
    outline: none;
}

.navbar-nav .nav-item.has-megamenu .menuToggle:focus {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 3px;
}

.navbar-nav .nav-item.has-megamenu .menuIcon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

header .megaMenu {
    position: absolute;
    left: 0;
    right: 0;
    top: 52px;
    background: #f3f3f3;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.megaMenu-inner {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.megaMenu-inner.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.megaMenu-inner.three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.megaMenu-inner.four-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.megaMenu-column {
    gap: 12px;
}

.megaMenu-column h6 {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    font-weight: 700;
}

.megaMenu-column a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.megaMenu-column a:hover {
    color: var(--primary-color);
}

header.menuActive {
    background-color: transparent;
}

header.menuActive .nav-item.has-megamenu.menu-open .nav-link {
    color: var(--primary-color) !important;
}

header.menuActive .nav-item.has-megamenu.menu-open .nav-link-group:after {
    opacity: 1;
    transform: scaleX(1);
}

header.menuActive .nav-item.has-megamenu.menu-open .menuToggle .menuIcon {
    transform: rotate(-135deg);
}

header.menuActive .nav-item.has-megamenu.menu-open .megaMenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menuBtn {
    background-color: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    z-index: 999;
    padding: 0;
}

.menuBtn img {
    width: 35px;
}

.menuBtn img:nth-child(2) {
    display: none;
}

header.menuActive .menuBtn img:nth-child(1) {
    display: none;
}

header.menuActive .menuBtn img:nth-child(2) {
    display: block;
}

.navbar {
    padding: 5px 0;
}

.navbar-brand img {
    width: 85px;
    transition: filter 0.3s ease;
    @media (max-width: 768px) {
        width: 70px;
    }
}

/*** header ***/

/*** heroVideo ***/
.heroVideo {
    position: relative;
    margin-top: 85px;
}
.heroVideo video {
    max-width: 100%;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}
/*** heroVideo ***/

/*** builtForWrapper ***/
.builtForWrapper {
    background: url("../images/bg-texture.png") var(--primary-bg-color)
        no-repeat center center/cover;
}
.builtForTitle h2 {
    color: var(--primary-color);
    font-size: 51px;
    font-weight: 700;
    margin-bottom: 20px;
}

.builtForTitle p {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-style: italic;
    margin-bottom: 20px;
}

.builtForContent p {
    line-height: 1.2;
}

.builtForContent p span {
    overflow: hidden;
}

/*** builtForWrapper ***/

.forgeContentWrapper {
    background: var(--primary-bg-color);
    padding-bottom: 50px;
}
.forgeContentInner {
    padding: 60px 0;
}

.forgeContentInner span {
    font-weight: 700;
}

.linear-wipe {
    text-align: center;
    background: linear-gradient(
        to right,
        #881816 20%,
        #000 40%,
        #000 60%,
        #881816 80%
    );
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-emphasis-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 2s linear infinite;
    animation: shine 2s linear infinite;
}
@-webkit-keyframes shine {
    to {
        background-position: -200% center;
    }
}
@keyframes shine {
    to {
        background-position: -200% center;
    }
}

.forgeContentInner:before,
.forgeContentInner:after {
    content: "";
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.forgeContentInner:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

.forgeContentInner {
    font-size: 36px;
    font-style: italic;
}

/*** builtForWrapper ***/

.forgeContentWrapper {
    background: var(--primary-bg-color);
    padding-bottom: 50px;
}
.forgeContentInner {
    padding: 60px 0;
    font-family: "Playfair Display", serif;
}

.forgeContentInner span {
    font-weight: 700;
    color: var(--primary-color);
}

.forgeContentInner:before,
.forgeContentInner:after {
    content: "";
    width: 150px;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.forgeContentInner:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
}

.forgeContentInner {
    font-size: 36px;
}

/*** footer styles ***/

/*** footer styles ***/
.site-footer {
    background-color: #222; /* dark background */
    color: #d1d1d1;
    position: relative;
}
.site-footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.site-footer li {
    font-size: 14px;
    margin-bottom: 5px;
}
.site-footer a {
    color: #cfcfcf;
}
.site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}
.site-footer .text-secondary {
    color: #bfbfbf !important;
}
.site-footer .footer-bottom .container {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer address {
    font-size: 14px;
}
.footer-bottom p {
    font-size: 12px;
    font-weight: 500;
}

/** newsCard **/

.newsWrapper .section-title.desktop h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.newsWrapper .section-title.desktop h2 span.line {
    height: 60px;
    background-color: var(--primary-color);
    width: 4px;
}

.newsSwiper {
    padding-bottom: 50px;
}

.newsSwiper .swiper-slide {
    height: 430px;
    @media (max-width: 768px) {
        height: auto;
    }
}

.newsSwiper .swiper-pagination-bullet {
    background-color: #b5403d;
    opacity: 0.5;
}
.newsSwiper .swiper-pagination-bullet-active {
    background-color: #b5403d;
    opacity: 1;
}

.newsCard {
    padding: 40px 40px 40px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background-color: #dcdcdc;
    position: relative;
    color: #000;
    transition: all 0.3s ease;
    height: 100%;
}

.newsCard:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.date span {
    font-size: 14px;
}
.category {
    font-size: 16px;
}
.title h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
.arrowBtn {
    width: 40px;
    overflow: hidden;
    height: 40px;
}

.arrowBtn a {
    display: inline-block;
}

.newsCard img {
    transition: opacity 0.3s ease;
}

.newsCard:hover img:nth-child(1) {
    opacity: 1;
}
.newsCard:hover img:nth-child(2) {
    opacity: 0;
}

/** newsCard **/

/** exploreProductWrapper **/
.exploreProductWrapper {
    background: var(--primary-bg-color);
}
.exploreProductCard {
    border-radius: 16px;
    overflow: hidden;
}
.exploreProductCard:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(181, 64, 61, 0.4); */
    background: rgb(53 15 14 / 40%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.exploreProductCard:hover:after {
    opacity: 0;
}

.exploreProductCard .content {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.47);
    z-index: 2;
    color: #fff;
    bottom: 15px;
    width: 95%;
    left: 100%;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    transition:
        transform 0.3s ease,
        left 0.3s ease;
}

.exploreProductCard .content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.exploreProductCard:hover .content {
    transform: translateX(-50%);
    left: 50%;
}
/** exploreProductWrapper **/

/** patchWrapper **/
.patchWrapper .section-title h2 {
    color: #fff;
}
.patchWrapperContent p {
    color: #fff;
}
.patchWrapperContent a {
    color: #a9a9a9;
    text-decoration: none;
    text-transform: uppercase;
}

.swiper-pagination-bullet {
    background-color: #fff;
    width: 22px;
    border-radius: 4px;
    height: 6px;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}

.impactSwiperThumb .slick-dots {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 5px;
}

.impactSwiperThumb .slick-dots button {
    width: 22px;
    height: 6px;
    border-radius: 4px;
    background-color: #b5403d;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    text-indent: -9999px;
    border: 0;
}

.impactSwiperThumb .slick-dots .slick-active button {
    opacity: 1;
}

.impactSwiperThumb .item {
    opacity: 0.5;
    cursor: pointer;
}

.impactSwiperThumb .item.slick-current.slick-active {
    opacity: 1;
}

.slick-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: inline-block;
    cursor: pointer;
    @media (max-width: 767px) {
        width: 30px;
        height: 30px;
    }
}

.slick-arrows.slick-prev {
    left: 0;
    rotate: -140deg;
    transform-origin: top center;
}
.slick-arrows.slick-next {
    right: 0;
    rotate: 45deg;
    transform-origin: top center;
}

/** patchWrapper **/

/** keyFactBoxWrapper **/
.keyFactBoxWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #bdbdbd;
    grid-gap: 1px;
}

.keyFactBox {
    background-color: white;
    display: flex;
    flex-direction: column;
}

.keyFactBox .icon h4 {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 700;
    height: 70px;
}

.keyFactBox .content h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
}

.keyFactBox .content h3 sup {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 24px;
    vertical-align: top;
    line-height: 1;
    top: 0;
}

.keyFactBox {
    padding: 15px 20px 30px;
}

.keyFactBox .content p {
    margin: 0;
    font-size: 14px;
}

/** keyFactBoxWrapper **/

/* middleSectionWrapper */
.middleSectionWrapper {
    background-color: var(--primary-color);
    padding: 50px 0;
}

.middleContent {
    padding: 30px 50px 30px 40px;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: end;
    gap: 15px;
}

.middleContent h3 {
    font-size: 18px;
    font-weight: 700;
}

.middleContentBox {
    height: 100%;
}

.middleContent p {
    display: -webkit-box;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.middleContentRight img {
    width: 40px;
    min-width: 40px;
}

.patchWrapper:after {
    content: "";
    background: linear-gradient(166deg, #00000000 0%, #0000004f 100%) 0% 0%
        no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}
.patchWrapper .container {
    position: relative;
    z-index: 10;
}
/* middleSectionWrapper */

/*** commingSoonModal ***/
#commingSoonModal .modal-body {
    padding: 50px 0;
}
#commingSoonModal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 9;
    background-color: var(--primary-dark-color);
    opacity: 1;
    background-image: none;
    color: #fff;
    transition: all 0.2s linear;
}

#commingSoonModal .btn-close:hover {
    background-color: #000;
    color: #fff;
}
#commingSoonModal h1 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--primary-dark-color);
}
#contactUsModal .btn-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    z-index: 9;
    /* background-color: #fff; */
    opacity: 1;
    background-image: none;
    color: #fff;
    transition: all 0.2s linear;
}

#contactUsModal .modal-header {
    background-color: var(--primary-dark-color);
}

#contactUsModal .modal-header h1 {
    color: #fff;
}

.modalcontactBox a {
    color: #000;
}
/*** commingSoonModal ***/

/* founderImageWrapper */
.founderImageWrapper {
    margin-top: 60px;
}

.founderBannerText {
    top: 28%;
    transform: translateY(-50%);
    left: 6%;
}

.founderBannerText h2 {
    color: #fff;
    font-weight: 700;
    font-size: 46px;
}

.founderContentWrapper {
    position: relative;
    padding: 30px 0 50px;
    /* margin-top: -150px; */
    /* z-index: 2; */
}

.founderContentOuter {
    position: relative;
    z-index: 1;
}

.founderContentOuterWrapper {
    background-color: #f7f3ec;
}

.founderName {
    position: absolute;
    /* z-index: 3; */
    bottom: 16%;
    left: 6%;
}

.founderNameLine {
    width: 140px;
}

.founderContentWrapper:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 100px 0;
    background: #fff;
    background: linear-gradient(180deg, #f7f3ec 0%, #f7f3ec 100%);
    filter: blur(50px);
    height: 100%;
}

.founderContentOuter h3 {
    font-size: 36px;
    color: #b5403d;
    font-weight: 600;
    font-style: italic;
    font-family: "Playfair Display", serif;
    margin-bottom: 50px;
    line-height: 1.4;
}

.founderContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* two equal columns */
    gap: 1.5rem; /* space between columns/rows */
    align-items: start;
    line-height: 1.6;
    font-size: 1rem;
}

.founderContent p {
    margin-bottom: 0;
}

.founderName p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
}

.founderName h2 {
    font-weight: 700;
    font-size: 56px;
    margin-bottom: 10px;
    font-style: italic;
    font-family: "Playfair Display", serif;
}
.founderName h4 {
    font-size: 24px;
}

/* founderImageWrapper */

.pageBanners {
    margin-top: 84px;
}

.pageBanners .content {
    width: 100%;
    left: 0;
    bottom: 15%;
    @media (max-width: 767px) {
        bottom: 10%;
    }
    @media (max-width: 768px) and (max-width: 991px) {
        bottom: 20%;
    }
}

.pageBanners .content h1 {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    @media (max-width: 767px) {
        font-size: 18px;
    }
}

.pageBanners .content h1 span {
    width: 70px;
    height: 2px;
    background-color: #fff;
    @media (max-width: 767px) {
        width: 50px;
    }
}

.marqueeTag {
    margin-top: -10px;
    color: #fff;
    background-color: #202020;
}

marquee span + span {
    margin-left: 50px;
    font-weight: 600;
}
.valuesLeadershipWarpper {
    padding: 50px 0 100px;
    background-color: #f7f3ec;
}

.valuesLeadershipWarpper h2 {
    font-size: 40px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-style: italic;
}

.valuesLeadershipWarpper ul {
    padding-left: 15px;
}

.valuesLeadershipWarpper ul li + li {
    margin-top: 10px;
}

.valuesLeadershipWarpper ul li,
.valuesLeadershipWarpper p {
    font-size: 15px;
}

.groupCompaniesWrapper .col .groupCompanieCard {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    padding: 20px 20px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.groupCompanieContent {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    /* justify-content: space-between; */
    flex: 2;
}

.groupCompanieImg {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 16px;
    @media (min-wdth: 1600px) {
        padding: 50px 20px;
    }
}

.groupCompanieContent a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    margin-top: auto;
}

.groupCompanieContent a span {
    color: #000;
    font-size: 14px;
    opacity: 0.5;
}

.groupCompanieContent svg {
    width: 40px;
}

.groupCompanieCard {
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px 15px;
}

.groupCompanieCard:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-15px);
}

.groupCompanieCard:hover a span {
    opacity: 1;
}

.groupCompanieContent:hover svg > #Ellipse_200,
.groupCompanieContent a span {
    transition: all 0.3s ease;
}

.groupCompanieContent:hover svg > #Ellipse_200 {
    fill: var(--dark-color);
}

.groupCompanieContent h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.groupCompanieContent p {
    font-size: 14px;
    padding: 0 30px;
}

.awardsWrapper {
    background-color: var(--primary-color);
}

.awardsWrapper .section-title h2 {
    color: #fff;
}

.awradsImg img {
    border-radius: 8px;
}

.awradsImg h3 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin: 10px 0 15px;
    font-size: 20px;
    position: relative;
}

.awradsImg h3:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #fff;
}

.awradsImg p {
    font-size: 16px;
    text-align: center;
    color: #fff;
    margin: 0;
}

.swiper-button-next.swiper-button-next-awardsSwiper {
    transform: rotate(45deg);
}
.swiper-button-prev.swiper-button-prev-awardsSwiper {
    transform: rotate(-136deg);
}

.awardsSwiper .swiper-button-next:hover svg > #Ellipse_200,
.awardsSwiper .swiper-button-prev:hover svg > #Ellipse_200 {
    fill: #000;
}

.awardsSwiper .swiper-button-next:hover svg > #arrow-up,
.awardsSwiper .swiper-button-prev:hover svg > #arrow-up {
    fill: var(--primary-color);
}

/* tabswitch */
/* taeb-switch styles */
.tab-switch {
    position: relative;
    display: flex;
}

.tab-switch:after {
    content: "";
    position: absolute;
    width: 50%;
    top: 0;
    transition: left cubic-bezier(0.88, -0.35, 0.565, 1.35) 0.4s;
    border-radius: 27.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    background-color: #b5403d;
    height: 100%;
    z-index: 0;
}

.tab-switch.left:after {
    left: 0;
}

.tab-switch.right:after {
    left: 50%;
}

.tab-switch .tab {
    display: inline-block;
    width: 50%;
    padding: 15px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    user-select: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    opacity: 0.5;
}

.tab-switch .tab.active {
    opacity: 1;
}

.aboutTabsWrapperOuter {
    background-color: #f7f3ec;
}

.aboutTabwrapperGroup {
    background-color: #f7f3ec;
    padding: 0px 0 60px;
}

.aboutTabwrapper {
    border-radius: 36px;
    /* background-color: #f4f4f4; */
    background: transparent linear-gradient(95deg, #b5403d 0%, #881816 100%) 0%
        0% no-repeat padding-box;
    /* padding: 8px; */
    width: 95%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.visionMissionBlockContent {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 80px;
    background-color: #fff;
    @media (max-width: 767px) {
        padding: 50px 30px;
    }
}

.visionMissionBlockContent h3 {
    color: #000;
    font-weight: 700;
    font-size: 30px;
    margin: 10px 0;
    @media (max-width: 767px) {
        font-size: 24px;
    }
}

.visionMissionBlockContent p {
    font-size: 18px;
}

.journeyTimeline {
    margin-top: 50px;
    position: relative;
}

.journeyTimeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--dark-color);
    opacity: 0.5;
    transform: translateX(-50%);
    @media (max-width: 767px) {
        left: 0px;
        transform: translateX(0);
    }
}

.journeyTimeline {
    --line-height: 17%;
}

.journeyTimeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: var(--line-height);
    background-color: var(--primary-color);
    transform: translateX(-50%);
    z-index: 1;
    @media (max-width: 767px) {
        left: 0px;
        transform: translateX(0);
    }
}

.journeyTimelineBox {
    padding: 50px 0;
    opacity: 1;
    transform: translateY(0);
}

.journeyTimelineBox:last-child {
    padding-bottom: 0;
}

.journeyTimelineWrapper {
    padding: 0px 0 100px;
}

.journeyTitle h3 {
    font-weight: 700;
    font-family: "Playfair Display", serif;
    font-size: 50px;
    font-style: italic;
    text-align: center;
}

.journeyTitle h3 span {
    color: var(--primary-color);
}

.journeyTimelineBlockContent {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 16px;
    display: flex;
    margin: 0 15px;
    @media (min-width: 768px) and (max-width: 991px) {
        flex-direction: column-reverse;
    }
}

.journeyTimelineBlockContent .left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 20px 10px 20px;
}

.journeyTimelineBlockContent .left h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.journeyTimelineBlockContent .left h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    font-family: "Manrope", sans-serif;
    margin: 5px 0;
}

.journeyTimelineBlockContent .left p {
    font-size: 14px;
    margin: 0;
}

.journeyTimelineBlockContent .right {
    min-width: 50%;
}

.journeyTimelineBlockTime {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 50px;
}

.journeyTimelineBlockTime h3 {
    font-size: 150px;
    color: #c9ad7d69;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;

    @media (min-width: 768px) and (max-width: 991px) {
        font-size: 90px;
    }
}

.journeyTimelineBox:nth-child(even) .col-md-6:nth-child(1) {
    order: 2;
}

.journeyTimelineBox:nth-child(even) .col-md-6:nth-child(2) {
    order: 1;
}

/* .journeyTimelineBox:nth-child(even)
    .col-md-6:nth-child(1)
    .journeyTimelineBlock {
    justify-content: start;
} */

.journeyTimelineBox:nth-child(even)
    .col-md-6:nth-child(1)
    .journeyTimelineBlockTime {
    justify-content: flex-start;
}

/* .coreValuesBoxOuter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 30px;
} */

.coreValuesBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coreValuesBox img {
    width: 80px;
}

.coreValuesBox h3 {
    color: var(--primary-color);
    font-size: 15px;
    text-align: center;
    margin: 20px 0 10px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.coreValuesBox p {
    font-size: 14px;
    padding: 0 5px;
}

.coreValuesBox a {
    text-decoration: none;
    color: #a9a9a9;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

@media (min-width: 992px) {
    .coreValuesBox:nth-child(1) {
        position: absolute;
        top: 18%;
        left: 6.5%;
        width: 16%;
    }

    .coreValuesBox:nth-child(2) {
        position: absolute;
        top: 30%;
        left: 24%;
        width: 16%;
    }

    .coreValuesBox:nth-child(3) {
        position: absolute;
        top: 18%;
        left: 42%;
        width: 16%;
    }

    .coreValuesBox:nth-child(4) {
        position: absolute;
        top: 30%;
        right: 24%;
        width: 16%;
    }

    .coreValuesBox:nth-child(5) {
        position: absolute;
        top: 18%;
        right: 6.5%;
        width: 16%;
    }
}

@media (max-width: 767px) {
    .coreValuesBox + .coreValuesBox {
        margin-top: 30px;
    }
}
/* tabswitch */

.whyJoinUsWrapper {
    background-color: #f7f3ec;
}

.whyJoinUsBox h3 {
    font-size: 20px;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid #dee2e6;
}

.accordion-item + .accordion-item {
    margin-top: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
}

.careersRequirements + .careersRequirements {
    margin-top: 20px;
}

.careersRequirements h4 {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.accordion-header {
    /* cursor: pointer; */
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px 20px;
}

.accordion-header button {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-weight: 700;
    font-size: 22px;
    padding: 0;
    /* flex: 2; */
    @media (max-width: 767px) {
        font-size: 18px;
    }
}

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

.headerButton a {
    background: linear-gradient(90deg, #d3d3d3 0%, #f2f2f2 100%) 0% 0% no-repeat;
    color: var(--primary-color);
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.5s ease;
    display: inline-block;
    @media (max-width: 767px) {
        padding: 10px 14px;
    }
}

.headerButton a:nth-child(1),
.headerButton a:hover {
    background: linear-gradient(90deg, #b5403d 0%, #881816 100%) 0% 0% no-repeat;
    color: #fff;
}

.headerButton a:nth-child(1):hover {
    background: linear-gradient(90deg, #d3d3d3 0%, #f2f2f2 100%) 0% 0% no-repeat;
    color: var(--primary-color);
}

.accordion-button::after {
    display: none;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
    border-radius: 20px;
}

/* Investor Relations Accordion */
.investorAccordion .accordion-item {
    border: 1px solid #c9c0b3;
    border-radius: 20px !important;
    overflow: hidden;
    background-color: transparent;
}

.investorAccordion .accordion-item + .accordion-item {
    margin-top: 20px;
}

.investorAccordion .accordion-button {
    background-color: transparent;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
    gap: 15px;
}

.investorAccordion .accordion-button:focus {
    box-shadow: none;
}

.investorAccordion .accordion-button .accordion-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.investorAccordion .accordion-button:not(.collapsed) .accordion-title {
    color: var(--primary-color);
}

.investorAccordion .accordion-button::after {
    display: none;
}

.investorAccordion .accordion-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b5403d 0%, #881816 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.investorAccordion .accordion-icon .icon-bar {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: transform 0.3s ease;
}

.investorAccordion .accordion-icon .icon-bar:last-child {
    transform: rotate(90deg);
}

.investorAccordion
    .accordion-button:not(.collapsed)
    .accordion-icon
    .icon-bar:last-child {
    transform: rotate(0deg);
}

.investorAccordion .accordion-collapse {
    border-top: 1px solid #c9c0b3;
}

.investorAccordion .accordion-body {
    padding: 20px 30px 30px;
}

.investor-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investor-doc-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 20px;
}

.investor-doc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background-color: var(--primary-color);
}

.investor-doc-list li + li {
    border-top: none;
}

.investor-doc-list li a {
    color: var(--dark-color);
    text-decoration: underline;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.investor-doc-list li a:hover {
    color: var(--primary-color);
}

.investor-doc-list .pdf-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .investorAccordion .accordion-button {
        padding: 16px 20px;
    }
    .investorAccordion .accordion-button .accordion-title {
        font-size: 16px;
    }
    .investorAccordion .accordion-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .investorAccordion .accordion-icon .icon-bar {
        width: 12px;
    }
    .investorAccordion .accordion-body {
        padding: 15px 20px 20px;
    }
    .investor-doc-list li a {
        font-size: 13px;
    }
}

.leaderShipWrapper {
    background-color: #f7f3ec;
}
.leadershipBlock {
    border-radius: 16px;
    overflow: hidden;
}

.aboutLeader {
    background-color: #fff;
    padding: 38px 50px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0 16px 16px 0;
    @media (min-width: 1600px) {
        justify-content: center;
    }
}

.aboutLeader h2 {
    font-family: "Playfair Display", serif;
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
    font-size: 40px;
}

.aboutLeader p {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 0;
    color: #363334;
}

.aboutLeader p img {
    width: 130px;
}

.aboutContent p {
    font-size: 16px;
    margin: 10px 0;
}

.theCatelyst h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.theCatelyst p {
    font-size: 16px;
}

.aboutLeader .arrowButton {
    margin-top: auto;
    @media (min-width: 1600px) {
        margin-top: 40px;
    }
}

.aboutLeader .arrowButton svg {
    transition: all 0.3s ease;
    width: 40px;
}

.aboutLeader .arrowButton svg .btnCircle {
    transition: all 0.3s ease;
}

.aboutLeader .arrowButton:hover svg .btnCircle {
    fill: #000;
}

.achivmentsWrapper {
    background-color: #f7f3ec;
    padding: 0px 0 50px;
}

.achivementsSlider {
    padding: 0px 0 45px;
}

.achivementsSlider .swiper-pagination-bullet {
    background-color: #8b8884;
}

.boardSlider .swiper-pagination-bullet {
    background-color: #fff;
}

.achivementsSlider .swiper-pagination-bullet-active,
.boardSlider .swiper-pagination-bullet-active {
    background-color: #000;
}

.achivmentsBox {
    padding: 25px 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.achivmentsBox svg {
    width: 50px;
    transition: all 0.3s ease;
}

.achivmentsBox p {
    font-size: 14px;
}

.achivmentsBox:hover {
    background-color: #fff;
}

.achivmentsBox:hover svg {
    fill: var(--primary-color);
}

.boardDirectors {
    background: url("../images/leadership/BODbg.jpg") no-repeat center
        center/cover;
    padding: 100px 0 50px;
}

.execuitveProfiles {
    background: #f7f3ec;
}

.boardSlider {
    padding: 0px 0 45px;
}
.bodShortDisc {
    padding: 20px 5px;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
}

.bodShortDisc .left {
    color: #fff;
}
.bodShortDisc .left h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.bodShortDisc .left p {
    font-size: 16px;
    margin-bottom: 0;
}

.execuitveProfiles .bodShortDisc {
    border: 0;
    padding-bottom: 0;
}

.execuitveProfiles .bodShortDisc .left {
    color: #000;
}

.bodShortDisc .right img {
    width: 40px;
}

.aboutDetailModalWrapper {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    justify-content: flex-end;
    transition: all 0.5s ease;
    opacity: 0;
    right: 0;
    transform: translateX(100%);
}

.aboutDetailModalWrapper.activeModal {
    transform: translateX(0);
    opacity: 1;
}

.aboutDetailModalContent {
    width: 75%;
    background-color: #fff;
    border-radius: 16px 0 0 16px;
    position: relative;
    padding: 20px 25px;
    max-height: 100%;
    /* overflow: hidden; */
}

.closeModalBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: transparent;
    opacity: 1;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    z-index: 10;
}

.closeModalBtn svg {
    width: 40px;
}

.aboutDetailModalBody {
    display: flex;
    gap: 30px;
    padding: 50px 0 50px;
    /* overflow: scroll; */
    position: relative;
    height: 100%;
}

.aboutDetailModalBody .left {
    width: 40%;
    text-align: center;
}

.aboutDetailModalBody .left img {
    width: 100%;
    border-radius: 16px;
}

.aboutDetailModalBody .left h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 20px;
    font-size: 24px;
}

.aboutDetailModalBody .left p {
    font-size: 18px;
}

.aboutDetailModalBody .right {
    width: 60%;
}

.aboutDetailModalBody .right h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.aboutDetailModalBody .right p + p {
    margin-top: 10px;
}

#modalDescription {
    overflow-y: auto;
    height: 100%;
}

.achivementsSlider .swiper-wrapper {
    align-items: stretch;
    height: auto;
}

.achivementsSlider .swiper-slide {
    height: auto !important;
}

.achivementsSlider .swiper-slide .achivmentsBox {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* advisors  */
.advisorCard {
    background: #f9f9f9;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    height: 100%;
}

.advisorImg {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.advisorName {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #000;
}

.advisorDesignation {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}

.divider {
    width: 30px;
    height: 2px;
    background: #000;
    display: block;
    margin: 0 auto 20px;
}

.advisorDesc {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
    font-family: "Manrope", sans-serif;
}

.readMore {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #707070;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
}

.swiper-button-next.swiper-button-next-advisorSwiper {
    right: 0;
    transform: rotate(40deg);
}

.swiper-button-prev.swiper-button-prev-advisorSwiper {
    right: 50px;
    transform: rotate(-138deg);
}

/* commiteeWrapper */
.commiteeWrapper {
    background-color: #f7f3ec;
}

/* commiteeWrapper */

@media (min-width: 768px) {
    .desktopSwiperArrows .swiper-button-next.swiper-button-next-advisorSwiper {
        right: 0;
        transform: rotate(40deg);
    }

    .desktopSwiperArrows .swiper-button-prev.swiper-button-prev-advisorSwiper {
        left: auto;
        right: 50px;
        transform: rotate(-138deg);
    }
}

/* advisors  */

/* about us animation  */

/* Scroll container - creates scrollable area */
.scroll-container {
    position: relative;
    height: 100vh;
}

/* Fixed viewport container */
.viewport-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #fafafa;
    @media (max-width: 767px) {
        height: 100vh;
    }
    @media (min-width: 1440px) {
        height: 100vh;
    }
    @media (min-width: 1536px) {
        height: 100vh;
    }
    @media (min-width: 1600px) {
        height: 100vh;
    }
}

/* Grid layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* Text column */
.text-column {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Text boxes */
.text-box {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 2rem 4rem 2rem 6rem; */
    position: relative;
}

.content-wrapper {
    /* max-width: 380px; */
    padding: 2rem 4rem 2rem 6rem;
    position: absolute;
}

/* Icon wrapper */
.icon-wrapper {
    margin-bottom: 1.5rem;
    @media (max-width: 767px) {
        margin-bottom: 1rem;
    }
}

/* Heading row */
.heading-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.heading {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.02em;
}

.heading-line {
    width: 2.5rem;
    height: 1.5px;
    background-color: #1f2937;
}

/* Body text */
.body-text {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.body-text .highlight {
    font-weight: 600;
    color: #1f2937;
}

/* Image column */
.image-column {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Image boxes */
.image-box {
    position: absolute;
    inset: 0;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csrPatchWrapper {
    margin: 50px 0;
}
.csrPatch {
    background-color: var(--primary-color);
    border-radius: 16px;
    padding: 30px 50px;
}

.csrPatch p {
    color: #fff;
    font-size: 28px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-style: italic;
}

.impactImbBoxContent {
    padding-top: 10px;
    border-top: 2px solid var(--primary-color);
}

.impactImbBoxContent h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.impactImbBoxContent p {
    font-size: 15px;
}

.impactSwiperThumb .slick-slide {
    margin: 0 10px;
}

.impactSwiperThumb .slick-list {
    margin: 0 -10px;
}

.impactSectionWrapper {
    background-color: #f7f3ec;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    /* .text-box {
        padding: 2rem;
    } */

    .text-column {
        order: 1;
    }

    .image-column {
        order: 2;
    }
}

@media (max-width: 768px) {
    /* .text-box {
        padding: 1.5rem;
    } */

    .heading {
        font-size: 2rem;
    }

    .body-text {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 2rem 1rem 0rem;
        max-width: 100%;
    }
}

/* about us animation  */

/* contat us page */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
}

.contact-card h2 span,
.form-wrapper h2 span {
    color: var(--primary-color);
}

.form-wrapper {
    padding: 20px 10px;
}

.custom-input {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #d3d3d3;
    font-size: 14px;
    resize: none;
}

.custom-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    padding: 10px 35px;
    border: none;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.locate-link {
    color: var(--primary-color);
    font-weight: 600;
}

.locate-link i {
    margin-right: 6px;
    text-decoration: none;
}

.contact-section .row {
    justify-content: space-between;
}

.contact-section .form-wrapper .form-control,
.contact-section .form-wrapper .form-select {
    background-color: transparent;
}

.contactCard {
    padding: 30px 25px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.2s linear;
}

.contactCard:hover {
    transform: translateY(-10px);
}

.contactCard h3 {
    font-size: 16px;
}

.contactCard p,
.contactCard p a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.processingSwiper .swiper-wrapper {
    padding: 30px 0;
}

.processingSwiper .swiper-pagination {
    bottom: 0;
}

.processingSwiper .swiper-pagination .swiper-pagination-bullet {
    padding: 0 10px;
    background-color: black;
    width: 6px;
}

.subscribe-form .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.subscribe-form input {
    padding: 10px 100px 10px 20px;
    border-radius: 30px;
    position: relative;
    font-size: 14px;
    /* z-index: 1; */
}

.subscribe-form input:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.subscribe-form .input-group .btn {
    border-radius: 27px !important;
    padding: 8px 25px;
    /* transform: translateX(-12px); */
    background: linear-gradient(180deg, #b5403d 0%, #881816 100%) 0% 0%;
    color: #fff;
    transition: all 0.4s linear;
    position: absolute;
    z-index: 9;
    right: 0;
}

.subscribe-form .input-group .btn:hover {
    background: linear-gradient(180deg, #881816 0%, #b5403d 100%) 0% 0%;
    color: #fff;
}

.social-icon img {
    width: 50px;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination .page-item {
    border-radius: 50%;
}

.pagination .page-item a {
    width: 40px;
    height: 40px;
    /* background-color: #000000; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #bdbdbd;
    color: #000;
}

.pagination .page-item a.arrows {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.pagination .page-item a.arrows.next {
    transform: rotate(180deg);
}

.pagination .page-item.active a {
    background-color: #363334;
    color: #fff;
}

.pagination .page-item.disabled a {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

#careerModal .custom-input {
    border-radius: 50px;
    padding: 12px 18px;
    border: 1px solid #cfcfcf;
    font-size: 14px;
}

#careerModal .custom-input:focus {
    box-shadow: none;
    border-color: #a12b2b;
}

#careerModal .custom-file-upload {
    border: 1px solid #cfcfcf;
    border-radius: 50px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

#careerModal .custom-file-upload i {
    font-size: 18px;
}

#careerModal .btn-submit {
    background: linear-gradient(90deg, #b12b2b, #8e1f1f);
    color: #fff;
    border-radius: 50px;
    padding: 12px 40px;
    border: none;
    transition: all 0.3s ease;
}

#careerModal .btn-submit:hover {
    background: #8e1f1f;
}

#careerModal .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal .btn-close {
    background: none;
    opacity: 1;
    width: 30px;
    height: 30px;
    z-index: 9;
}

/* contat us page */

/* sustainability */

.sustainabilityBoxWrapperOuter {
    padding: 100px 0;
}
.sustainabilityTopSection {
    padding: 60px 0 0;
    background-color: #f7f3ec;
}

.sustainabilityTopSection h2 {
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.sustainabilityBoxImg {
    border-radius: 16px;
    overflow: hidden;
}

.sustainabilityBoxRight button {
    background-color: transparent;
    border: 0;
    outline: 0;
}

.sustainabilityDots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sustainabilityCat {
    margin: 5px 0;
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.sustainabilityCat button {
    text-transform: capitalize;
}

.sustainabilityDotContent {
    position: absolute;
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 8px;
    max-width: 350px;
    width: 250px;
    z-index: 2;
}

.sustainabilityBoxLeft h2 {
    letter-spacing: 3px;
    font-size: 34px;
    font-weight: 400;
    text-transform: capitalize;
}

.sustainabilityBoxLeft h2 span {
    font-weight: 700;
    margin-right: 5px;
    font-size: 59px;
}

.sustainabilityBoxLeft h3 {
    color: #b5403d;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}

.sustainabilityDots button,
.sustainabilityDots button span {
    width: 30px;
    height: 30px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    color: #b5403d;
}

.sustainabilityDots button span {
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.sustainabilityDots button .ripple {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(3);
    opacity: 0.3;
}

.sustainabilityDotContent h4 {
    font-size: 14px;
    font-weight: 700;
}

.sustainabilityDotContent p {
    margin: 0;
    font-size: 14px;
    display: none;
}

.sustainabilityDotsOne {
    top: 25%;
    left: 10%;
}
.sustainabilityDotstwo {
    top: 30%;
    right: 10%;
}

.sustainabilityDotsThree {
    bottom: 15%;
    left: 30%;
}

.sustainabilityDotContentOne {
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
}
.sustainabilityDotContentTwo {
    top: 50%;
    right: 45px;
    transform: translateY(-50%);
}
.sustainabilityDotContentThree {
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
}

.sustainabilityCat button {
    color: #000;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.sustainabilityCat button.active {
    opacity: 1;
}

.sustainabilityDotContentOne:after,
.sustainabilityDotContentThree:after {
    content: "";
    position: absolute;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    top: 50%;
    transform: translateY(-50%);
}

.sustainabilityDotContentTwo:after {
    content: "";
    position: absolute;
    right: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffffff;
    top: 50%;
    transform: translateY(-50%);
}

.sustainAnimateText {
    padding-left: 20px;
    margin: 15px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 2px solid #b5403d;
}

.sustainAnimateText p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 800;
}

.sustainabilityBottomSection {
    padding: 80px 0;
    background-color: #f7f3ec;
    background-image: url("../images/sustainability/together-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sustainabilityBottomContent {
    max-width: 800px;
    margin: 0 auto;
}

.sustainabilityBottomContent h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.sustainabilityBottomContent h2 span {
    color: var(--primary-color);
}

.sustainabilityBottomContent p {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.sustainabilityBottomContent h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.sustainabilityReportBtn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.sustainabilityReportBtn:hover {
    background-color: var(--primary-dark-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .sustainabilityBottomContent h2 {
        font-size: 36px;
    }

    .sustainabilityBottomContent p {
        font-size: 16px;
    }

    .sustainabilityBottomContent h3 {
        font-size: 18px;
    }

    .sustainabilityBottomSection {
        padding: 50px 0;
    }
}
/* sustainability */

/* News & Media Page */
.newsMediaSection {
    padding: 80px 0;
}

.newsMediaTopContent {
    margin-bottom: 50px;
}

.newsMediaTopContent h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.newsMediaTopContent p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.newsCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.newsCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.newsCardImg {
    height: 200px;
    overflow: hidden;
}

.newsCardImg img {
    width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.newsCard:hover .newsCardImg img {
    transform: scale(1.05);
}

.newsCardContent {
    padding: 25px;
}

.newsDate {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsCardContent h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 12px 0;
    line-height: 1.4;
}

.newsCardContent p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.readMoreBtn {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.readMoreBtn:hover {
    color: var(--primary-dark-color);
}

.readMoreBtn::after {
    content: "\2192";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.readMoreBtn:hover::after {
    transform: translateX(5px);
}

/* Media Gallery Section */
.mediaGallerySection {
    padding: 80px 0;
    background: #fff;
}

.mediaGallerySection h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.mediaGallerySection > .container > p {
    font-size: 16px;
    color: #666;
}

.mediaCard {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.mediaCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mediaCard:hover img {
    transform: scale(1.1);
}

.mediaOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(181, 64, 61, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mediaCard:hover .mediaOverlay {
    opacity: 1;
}

.mediaOverlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Press Releases Section */
.pressReleasesSection {
    padding: 80px 0;
    background: #f7f3ec;
}

.pressReleasesSection h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.pressReleasesSection > .container > p {
    font-size: 16px;
    color: #666;
}

.pressReleaseItem {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pressReleaseItem:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pressDate {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.pressReleaseItem h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.pressReleaseItem p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.downloadBtn {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.downloadBtn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 767px) {
    .newsMediaSection {
        padding: 50px 0;
    }

    .newsMediaTopContent h2 {
        font-size: 28px;
    }

    .newsMediaTopContent p {
        font-size: 16px;
    }

    .mediaGallerySection,
    .pressReleasesSection {
        padding: 50px 0;
    }

    .mediaGallerySection h2,
    .pressReleasesSection h2 {
        font-size: 28px;
    }

    .pressReleaseItem {
        padding: 20px;
    }

    .pressReleaseItem h4 {
        font-size: 16px;
        margin-top: 10px;
    }

    .downloadBtn {
        margin-top: 15px;
    }
}

/* News & Media Tabs */
.newsMediaWrapperOuter {
    background-color: #f7f3ec;
}

.newsMediaTabsWrapper {
    margin-top: 30px;
}

.newsMediaTabsNav {
    margin-bottom: 50px;
}

.newsMediaTabWrapper {
    border-radius: 36px;
    background: transparent linear-gradient(95deg, #b5403d 0%, #881816 100%) 0%
        0% no-repeat padding-box;
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    @media (max-width: 767px) {
        max-width: 100%;
    }
    @media (min-width: 1536px) {
        max-width: 70%;
    }
}

.tab-switch-news {
    position: relative;
    display: flex;
}

.tab-switch-news:after {
    content: "";
    position: absolute;
    width: 33.33%;
    top: 0;
    transition: left cubic-bezier(0.88, -0.35, 0.565, 1.35) 0.4s;
    border-radius: 53.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    background-color: #b5403d;
    height: 100%;
    z-index: 0;
}

.tab-switch-news.tab-0:after {
    left: 0;
}

.tab-switch-news.tab-1:after {
    left: 33.33%;
}

.tab-switch-news.tab-2:after {
    left: 40%;
}

.tab-switch-news.tab-3:after {
    left: 66.66%;
}

.tab-switch-news.tab-4:after {
    left: 75%;
}

.tab-switch-news .tab {
    display: inline-flex;
    width: 33.33%;
    padding: 20px 10px;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    user-select: none;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
}

.tab-switch-news .tab.active {
    opacity: 1;
}

.newsMediaTabContent .tab-content {
    display: none;
}

.newsMediaTabContent .tab-content.active {
    display: block;
    animation: fadeInNews 0.4s ease;
}

@keyframes fadeInNews {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsMediaCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.newsMediaCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.newsMediaCardBody {
    padding: 25px;
}

.newsMediaCardBody h4 {
    font-size: 16px;
    font-weight: 600;
    color: #b5403d;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsMediaCardBody p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsCardImg {
    border-radius: 10px;
    overflow: hidden;
}

.newsMediaCardBody .date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 400;
}

.newsMediaCardBodyFooter img {
    width: 30px;
}

.sustainabilityBigHeading h2 {
    font-size: 60px;
    text-transform: uppercase;
    opacity: 0.06;
    font-weight: 800;
    @media (max-width: 767px) {
        font-size: 40px;
    }
    @media (min-width: 1536px) {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .newsMediaTabWrapper {
        max-width: 100%;
    }

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

@media (max-width: 767px) {
    .newsMediaTabWrapper {
        border-radius: 10px;
    }

    .tab-switch-news {
        flex-wrap: wrap;
    }

    .tab-switch-news:after {
        display: none;
    }

    .tab-switch-news .tab {
        width: 50%;
        padding: 12px 10px;
        font-size: 13px;
        opacity: 0.6;
    }

    .tab-switch-news .tab.active {
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 10px;
    }

    .newsMediaTabsNav {
        margin-bottom: 30px;
    }

    .newsMediaCardBody {
        padding: 20px;
    }

    .newsMediaCardBody h4 {
        font-size: 16px;
    }
}

/* Products Tabs */
.tab-switch-products {
    position: relative;
    display: flex;
}

.tab-switch-products:after {
    content: "";
    position: absolute;
    width: 33.333%;
    top: 0;
    transition: left cubic-bezier(0.88, -0.35, 0.565, 1.35) 0.4s;
    border-radius: 53.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    background-color: #b5403d;
    height: 100%;
    z-index: 0;
}

.tab-switch-products.tab-0:after {
    left: 0;
}

.tab-switch-products.tab-1:after {
    left: 33.333%;
}

.tab-switch-products.tab-2:after {
    left: 66.666%;
}

.tab-switch-products .tab {
    display: inline-flex;
    width: 33.333%;
    padding: 20px 10px;
    z-index: 1;
    position: relative;
    cursor: pointer;
    transition: color 200ms;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.28px;
    color: #fff;
    opacity: 0.6;
    border: 0;
    background-color: transparent;
    justify-content: center;
    align-items: center;
}

.tab-switch-products .tab.active {
    opacity: 1;
    color: #fff;
}

.productsTabContent .tab-content {
    display: none;
}

.productsTabContent .tab-content.active {
    display: block;
    animation: fadeInProducts 0.4s ease;
}

@keyframes fadeInProducts {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.productsTabsNav {
    margin-bottom: 40px;
}

.productsTabWrapper {
    border-radius: 53.5px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    background: transparent linear-gradient(95deg, #b5403d 0%, #881816 100%) 0%
        0% no-repeat padding-box;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Cards */
.productCard {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.productCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.productCardBody {
    padding: 24px;
}

.productCardImg {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

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

.productCardBody h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.productCardBody p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.productCardBody a {
    display: inline-flex;
    align-items: center;
    color: #b5403d;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.productCardBody a:hover {
    transform: translateX(5px);
}

.productCardBody a .arrow {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .tab-switch-products .tab {
        padding: 15px 8px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .productsTabWrapper {
        border-radius: 10px;
    }

    .tab-switch-products {
        flex-wrap: wrap;
    }

    .tab-switch-products:after {
        display: none;
    }

    .tab-switch-products .tab {
        width: 31%;
        padding: 12px 10px;
        font-size: 13px;
        opacity: 0.6;
    }

    .tab-switch-products .tab:nth-child(3) {
        width: 33.33%;
        /* margin-top: 10px; */
    }

    .tab-switch-products .tab.active {
        opacity: 1;
        background-color: rgba(181, 64, 61, 0.1);
        border-radius: 10px;
    }

    .productsTabsNav {
        margin-bottom: 30px;
    }

    .productCardBody {
        padding: 20px;
    }

    .productCardBody h4 {
        font-size: 16px;
    }

    .productCardImg {
        height: 180px;
    }
}

/* Product Category Slider */
.productCategorySliderWrapper {
    margin-top: 40px;
    position: relative;
}

.productCategoryContent {
    padding: 0 0 30px;
}

.productCategoryContent .categoryIcon {
    width: 60px;
    height: 60px;
}

.productCategoryContent h3 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.productCategoryContent p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.productImageSliderWrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.productImageSwiper {
    border-radius: 12px;
}

.productImageSwiper .swiper-slide img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    border-radius: 12px;
}

.productImageSwiper .swiper-pagination {
    bottom: 20px;
}

.productImageSwiper .swiper-pagination-bullet {
    width: 20px;
    height: 6px;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
}

.productImageSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #b5403d;
}

/* Category Navigation */
.categoryNavigation {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
    gap: 0px;
    position: absolute;
    bottom: 35px;
    z-index: 2;
}

.categoryNavPrev,
.categoryNavNext {
    cursor: pointer;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.categoryNavPrev:hover svg #Ellipse_200,
.categoryNavNext:hover svg #Ellipse_200 {
    fill: #000;
}

.categoryNavNext {
    transform: rotate(178deg);
}

.categoryNavigation svg {
    width: 50px;
    height: 50px;
}

.categoryNavLabels {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;

    @media (min-width: 991px) {
        margin-left: 15px;
    }
}

.categoryNavLabel {
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.categoryNavLabel:hover {
    background-color: #f7f3ec;
    border-color: #b5403d;
    color: #b5403d;
}

.categoryNavLabel.active {
    /* background-color: #b5403d; */
    /* border-color: #b5403d; */
    color: #000;
    font-weight: 700;
}

.productCategorySwiper > .swiper-pagination {
    top: 0;
    left: 0;
    width: auto;
    bottom: auto;
}

/* Responsive for Product Category Slider */
@media (max-width: 991px) {
    .productCategoryContent {
        padding: 30px 20px;
    }

    .productCategoryContent h3 {
        font-size: 26px;
    }

    .productCategoryContent p {
        font-size: 15px;
    }

    .categoryNavigation {
        margin-top: 40px;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .productCategoryContent {
        padding: 20px 0 10px;
        margin-bottom: 0;
        margin-top: 20px;
    }

    .productCategoryContent h3 {
        font-size: 22px;
    }

    .productCategoryContent p {
        font-size: 14px;
    }

    .categoryNavigation {
        flex-direction: column;
        margin-top: 0px;
        gap: 5px;
        position: relative;
    }

    .categoryNavPrev,
    .categoryNavNext {
        display: none;
    }

    .categoryNavLabels {
        gap: 5px;
        margin-top: 0;
    }

    .categoryNavLabel {
        padding: 0px 5px;
        font-size: 13px;
    }
}

/* News & Media Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f7f3ec;
    border-bottom: 1px solid #e5e0d8;
    margin-bottom: 20px;
    border-radius: 8px;
}

.filter-bar .display-count {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

.filter-bar .display-count .range,
.filter-bar .display-count .total {
    font-weight: 500;
}

.filter-bar .sort-dropdown {
    position: relative;
}

.filter-bar .sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 1px solid #333;
    border-radius: 25px;
    padding: 10px 40px 10px 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.filter-bar .sort-select:focus {
    outline: none;
    border-color: #8b7355;
}

.filter-bar .sort-select option {
    background: #fff;
    color: #333;
}

@media (max-width: 575px) {
    .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .filter-bar .sort-select {
        width: 100%;
    }
}

/* 404 Error Page */
.error-page-wrapper {
    padding: 0;
    background-color: var(--primary-bg-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-page-content {
    padding: 60px 40px;
}

.error-code {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    background-image: linear-gradient(to right, #b5403d 0%, #881816 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.error-message {
    font-size: 16px;
    color: #555;
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .error-page-wrapper {
        padding: 140px 0 60px;
    }

    .error-code {
        font-size: 100px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-page-content {
        padding: 40px 20px;
    }
}

/* News & Media Tabs */
