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

.navbarMenu {
    /* position: relative; */
}

.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-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-link {
    /* color: var(--dark-color) !important; */
}

header.menuActive .nav-item.has-megamenu .nav-link-group:after {
    /* opacity: 0.2; */
    /* transform: scaleX(0.2); */
}

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

.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.menuActive .navbar-brand img {
    /* filter: invert(1); */
    /* width: 130px; */
}

/*** 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-fill-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);
    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;
}
/** 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: 1;
    -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: 35%;
    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 {
    margin-top: -290px;
}

.founderName {
    position: relative;
    z-index: 3;
}

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

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

.groupCompanieImg img {
    /* width: 150px; */
    /* @media (min-wdth: 1600px) {
        width: 200px;
    } */
}

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

.accordion-header button {
    background-color: transparent;
    border: 0;
    outline: 0;
    font-weight: 700;
    font-size: 22px;
    padding: 0;
    @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;
}

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

.leadershipBlock .leaderImg {
}

.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; */
    /* object-position: right center; */
}

/* Initial positions */
.mission-text {
    /* transform: translateY(100%); */
}

.vision-text {
    /* transform: translateY(100%); */
}

.mission-image {
    /* transform: translateY(-100%); */
}

.vision-image {
    /* transform: translateY(-100%); */
}

/* 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  */
