@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.forum-regular {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy-Medium';
    src: url('../fonts/Gilroy-Medium.woff');
}

@font-face {
    font-family: 'Gilroy-Regular';
    src: url('../fonts/Gilroy-Regular.woff');
}

:root {
    --primary-font: "Forum", serif;
    --secondary-font: 'Gilroy-Medium', sans-serif;

    --primary-color: #265C8D;
    --secondary-color: #EA8535;
    --light-color: #FFF;
    --dark-color: #2C2B2B;
    --gray-color: #5D5B5B;
    --cards-gray: #626262;
    --book-worm: #EBE3DE;
    --accordian-black: #273B3A;
    --accordian-open-color: #314948;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--secondary-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #191A1A;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #191A1A;
}

body {
    position: relative;
}

body,
html {
    width: 100%;
    /* height: 100%; */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Forum", serif;
}

p,
a,
li,
button,
span,
label {
    font-family: 'Gilroy-Medium';
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex-align-center {
    align-items: center;
}

.d-flex-align-start {
    align-items: start;
}

.d-flex-align-stretch {
    align-items: stretch;
}

.d-flex-align-end {
    align-items: end;
}

.d-flex-justify-center {
    justify-content: center;
}

.d-flex-justify-space {
    justify-content: space-between;
}

.d-flex-column {
    flex-direction: column;
}

.d-flex-row {
    flex-direction: row;
}

.relative {
    position: relative;
}

.wrap {
    flex-wrap: wrap;
}

.hide {
    display: none;
}

.orange-button {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    background-color: var(--secondary-color);
    padding: 22px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    text-transform: uppercase;
}

.orange-button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: top 0.3s ease;
    z-index: -1;
}

.orange-button:hover::before {
    top: 0;
}

.orange-button:hover {
    color: var(--light-color);
    border-color: var(--primary-color);
}

/* ========header======= */
.header-logo {
    position: relative;
    z-index: 9999;
}

.header-logo a {
    width: 148px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#navbar ul li a {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

#navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

#navbar ul li a:hover::after {
    width: 100%;
}

#navbar ul li a:hover {
    color: var(--secondary-color);
}


.header-wrapper.d-flex.d-flex-align-center.d-flex-justify-space {
    padding: 20px 0;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.header-holder.d-flex.d-flex-align-center.d-flex-justify-space {
    gap: 40px;
}

nav#navbar ul {
    gap: 26px;
}

.header-button a {
    gap: 8px;
}

.header-button a img {
    width: 18px;
    height: 18px;
}

/* ====Banner===== */
.banner-swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    /* Adjust based on design */
    width: 100%;
    display: flex;
    /* So inner content can center if needed */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
}

.banner-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-bottom-row-wrap {
    margin: 0 -10px;
}

.banner-bottom-row-wrapper-inner {
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 33.33%;
    padding: 0 10px;
}

.banner-bottom-row-wrapper-inner-holder {
    padding: 26px 21px 41px 21px;
    background-color: #265C8D1A;
    border: 1px solid #0000001A;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.banner-bottom-row-wrapper-inner-holder-img img {
    width: 100%;
    height: 221px;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
}

.banner-bottom-row {
    padding: clamp(40px, 5.556vw, 80px) 0;
}

.banner-bottom-row-wrapper-inner-holder-heading h3 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(20px, 1.806vw, 26px);
    line-height: 100%;
    margin-top: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.banner-bottom-row-wrapper-inner-holder-content p {
    color: var(--dark-color);
    font-size: clamp(14px, 1.111vw, 16px);
    font-weight: 400;
    line-height: 150%;
}

.banner-bottom-row-wrapper-inner-holder {
    padding: 26px 21px 41px 21px;
    background-color: #265C8D1A;
    border: 1px solid #0000001A;
    border-radius: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Default state content */
.card-front {
    transition: opacity 0.3s ease;
}

/* Hover state content (hidden by default) */
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 22px 35px 36px;
    background-color: transparent;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover effect */
.banner-bottom-row-wrapper-inner-holder:hover .card-front {
    opacity: 0;
}

.banner-bottom-row-wrapper-inner-holder:hover .card-back {
    opacity: 1;
    visibility: visible;
}


/* ==========Aboout=========== */
.about {
    padding: clamp(40px, 6.944vw, 100px);
}

.about-img {
    width: 100%;
    max-width: 48%;
}

.about-img img {
    width: 100%;
    max-width: 100%;
    height: 463px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.about-content {
    width: 100%;
    max-width: 52%;
    padding-left: 33px;
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(28px, 3.333vw, 48px);
    line-height: 100%;
    text-transform: uppercase;
}

.about-content p {
    color: var(--gray-color);
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175%;
    margin: 24px 0 50px 0;
}

.about-cards {
    padding: clamp(40px, 5.556vw, 80px) 0;
}

.about-cards-wrap {
    margin: 0 -10px;
}

.about-cards-wrap-inner {
    flex: 0 0 33.33%;
    width: 100%;
    max-width: 33.33%;
    padding: 0 10px;
}

.about-cards-wrap-inner-holder {
    padding: 31px 28px 31px 28px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-cards-wrap-inner-holder-heading {
    margin-bottom: 40px;
    gap: 18px;
}

.about-cards-wrap-inner-holder-heading h3 {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(18px, 1.528vw, 22px);
    line-height: 100%;
    text-transform: uppercase;
}

.about-cards-wrap-inner-holder-heading-img {
    background-color: var(--light-color);
    height: 66px;
    width: 66px;
    border-radius: 5px;
    padding: 12px;
}

.about-cards-wrap-inner-holder-heading-img img {
    width: 100%;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.about-cards-wrap-inner-holder-content p {
    color: var(--light-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 180%;
}

/* ========Achivement=== */
.achivement {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: clamp(40px, 9.722vw, 140px) 0;
    position: relative;
    z-index: 1;
}

.achivement::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
    z-index: -1;
}

.achivement-wrapper {
    padding: 67px 38px;
    background-color: var(--light-color);
    border-radius: 12px;
    margin: -15px -8px;
    width: 100%;
    max-width: 670px;
}

.achivement-wrapper-cards {
    flex: 0 0 50%;
    width: 100%;
    max-width: 50%;
    padding: 15px 8px;
}

.achivement-wrapper-cards-inner {
    background-color: rgb(235, 227, 222, 0.2);
    border-radius: 10px;
    padding: 40px 80px;
    text-align: center;
}

.achivement-wrapper-cards-inner h1 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(26px, 4.028vw, 58px);
    text-transform: uppercase;
    line-height: 100%;
}

.achivement-wrapper-cards-inner p {
    color: var(--cards-gray);
    font-weight: 400;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 140%;
    margin-top: 7px;
}

/* =======offer===== */
.offers {
    padding: clamp(40px, 6.944vw, 100px) 0 clamp(25px, 3.056vw, 44px) 0;
    position: relative;
    z-index: 1;
    background-image: url('../images/about.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.offers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 92, 141, 0.898);
    z-index: -1;
}

.offers-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-bottom: 47px;
}

.offers-header h2 {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(30px, 3.333vw, 48px);
    line-height: 100%;
    text-transform: uppercase;
}

.offers-header p {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 175%;
    max-width: 1015px;
    text-align: center;
}


.offers-cards-inner {
    padding: 33px 56px 29px 86px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offers-cards-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(38, 92, 141, 0.68) 79.44%);
    z-index: -1;
    border-radius: 16px;
}

.offers-cards-inner {
    position: relative;
    width: 100%;
    height: 440px;
    /* adjust as needed */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    color: #fff;
    flex: 0 0 50%;
    max-width: 49%;
}

/* Overlay (hidden by default) */
.offers-cards-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* blue overlay */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(38, 92, 141, 0.68) 79.44%);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

/* Content holder */
.offers-cards-inner-holder {
    position: relative;
    z-index: 2;
    /* position: absolute; */
    /* bottom: 20px; */
    /* right: 0; */
    /* left: 0; */
    /* max-width: 100%; */
    /* text-align: center; */
    /* z-index: 2; */
    /* transition: all 0.3s ease; */
}

/* By default → only heading is visible */
.offers-cards-inner-holder h3 {
    margin: 0;
    font-size: clamp(22px, 2.917vw, 42px);
    font-weight: 400;
    opacity: 1;
    transition: all 0.3s ease;
    line-height: 100%;
    text-transform: uppercase;
}

.offers-cards-inner-holder p,
.offers-cards-inner-holder a {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    margin: 11px 0 21px 0;
}

/* Hover state */
.offers-cards-inner:hover::before {
    /* opacity: 1; */
}

.offers-cards-inner:hover .offers-cards-inner-holder {
    /* bottom: 50%; */
    /* left: 50%; */
    /* right: auto; */
    /* transform: translate(-50%, 50%); */
    /* text-align: center; */
    /* max-width: 90%; */
}

.offers-cards-inner:hover .offers-cards-inner-holder p,
.offers-cards-inner:hover .offers-cards-inner-holder a {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.offers-cards-inner-holder p {
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 160%;
    font-weight: 400;
}

.offers-cards-inner-holder a {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

.offers-cards-inner-holder p {
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 160%;
    font-weight: 400;
}

.offers-cards-inner-holder a {
    background-color: transparent;
    border: 1px solid #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

.offers-cards-inner-holder a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.offers-cards-inner-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* position: absolute; */
    /* bottom: 20px; */
    /* right: 0; */
    /* left: 0; */
    /* max-width: 100%; */
    /* text-align: center; */
    /* z-index: 2; */
    /* transition: all 0.3s 
ease; */
}

.offers-cards-inner-holder-bottom {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    left: 0;
    top: 350px;
    max-width: 100%;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
    margin-top: 340px;
}

.offers-cards-inner:hover offers-cards-inner-holder-bottom {
    bottom: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, 50%);
    text-align: center;
    max-width: 90%;
}

.offers-cards-inner-holder-top h6 {
    color: #E6E6E6;
    font-weight: 400;
    font-family: 'Gilroy-Medium';
    letter-spacing: 2.5px;
}

.offers-cards {
    gap: 20px;
}

.offers-cards-bottom {
    background-color: var(--light-color);
    padding: 48px 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 27px;
    margin-top: 44px;
    border-radius: 20px;
}

.offers-cards-bottom p {
    color: #000000;
    font-size: clamp(16px, 1.667vw, 24px);
    font-weight: 400;
    line-height: 140%;
}

.team-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.team-content {
    width: 100%;
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding-right: 43px;
}

section.team {
    padding: clamp(40px, 5.556vw, 80px) 0;
}

.team-member {
    width: 100%;
    max-width: 33.33%;
    flex: 0 0 33.33%;
    padding-right: 20px;
    position: relative;
}

.team-member-img img {
    width: 100%;
    display: block;
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.team-member:last-child {
    padding-right: 0;
}

.team-member-name {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 28px 25px;
    background-color: #EBE3DE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 0 0 0 10px;
    cursor: pointer;
}

.team-member-name-content h3 {
    color: #5D5B5B;
    font-weight: 400;
    font-size: clamp(18px, 1.389vw, 20px);
    line-height: 140%;
    font-family: 'Gilroy-Medium';
    margin-bottom: 4px;
}

.team-member-name-content p {
    color: #5D5B5B;
    font-size: clamp(14px, 1.111vw, 16px);
    font-weight: 400;
    line-height: 170%;
}

.team-member-name-icon img {
    display: block;
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.team-member-img img {
    border-radius: 10px;
}

.team-content h2 {
    color: #265C8D;
    font-size: clamp(24px, 3.333vw, 48px);
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
}

.team-content p {
    color: #5D5B5B;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 170%;
    margin: 24px 0 44px 0;
}

/* =======Accordian===== */
.accordian {
    background-color: #F7F7F7;
    padding: clamp(40px, 5.556vw, 80px) 25px;
}

.accordian-header h2 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(24px, 3.333vw, 48px);
    line-height: 100%;
    text-align: center;
}

.km-accordion {
    background: transparent;
    border-radius: 6px;
    overflow: hidden;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
}

.km-accordion-item {
    border-bottom: 1px solid #e0e0e0;
    background-color: transparent;
}

.km-accordion-header {
    /* background: #fff; */
    padding: 48px 42px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-weight: 400;
    font-size: 22px;
    color: #273B3A;
    line-height: 100%;
    font-family: 'Gilroy-Medium';
}

.km-accordion-header:hover {
    background: #f4f4f4;
}

/* Arrow */
.km-accordion-header::after {
    content: "";
    background-image: url('../images/accordian-arrow.svg');
    /* font-size: 16px; */
    transition: transform 0.3s;
    height: 20px;
    max-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    opacity: 50%;
    transform: rotate(180deg);
}

/* Rotate arrow + highlight when active */
.km-accordion-header.active {
    background: #FFFFFF;
    /* font-weight: 400; */
    /* font-size: 22px; */
    /* color: #273B3A; */
    padding: 60px 67px 35px 67px;
}

.km-accordion-header.active::after {
    transform: rotate(360deg);
    opacity: 100%;
}

.km-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #FFFFFF;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.km-accordion-content.open {
    padding: 0 67px 60px 67px;
}

.accordian-header {
    margin-bottom: 34px;
}

/* =======locatations==== */
/* .locations{
    padding: clamp(40px, 5.556vw, 80px) 0;
}
.locations-wrapper{
    background-color: #F7F7F7;
    border: 1px solid #00000033;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.locations-cards{
    width: 100%;
    max-width: 45%;
    background-color: #265C8D;
    padding: 50px 33px;
    border-radius: 15px;
}
.locations-map{
    width: 100%;
    max-width: 55%;
}
.locations-heading h3{
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(24px, 3.333vw, 48px);
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.locations-cards-row-inner h4{
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(20px, 2.083vw, 30px);
    line-height: 100%;
    text-transform: uppercase;
}
.locations-cards-row-inner {
    border: 1px solid var(--light-color);
    padding: 28px 25px;
    border-radius: 10px;
}
.locations-cards-row{
    display: flex;
    flex-direction: column;
    gap: 14px;
} */

.locations {
    padding: clamp(40px, 5.556vw, 80px) 0;
}

.locations-wrapper {
    background-color: #f7f7f7;
    border: 1px solid #00000033;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.locations-cards {
    width: 100%;
    max-width: 45%;
    background-color: #265c8d;
    padding: 40px 30px;
    border-radius: 15px;
}

.locations-map {
    width: 100%;
    max-width: 55%;
}

.locations-heading h3 {
    color: #fff;
    font-weight: 400;
    font-size: clamp(24px, 3.333vw, 48px);
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.locations-cards-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.locations-cards-row-inner {
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.locations-cards-row-inner h4 {
    color: #fff;
    font-weight: 400;
    font-size: clamp(20px, 2.083vw, 30px);
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 0;
}

.locations-cards-row-inner .location-details {
    display: none;
    margin-top: 12px;
}

.locations-cards-row-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

.locations-cards-row-inner ul li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--light-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 10%;
}

.locations-cards-row-inner ul li span {
    margin-right: 15px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF1A;
    border-radius: 50%;
    padding: 8px;
}

.locations-cards-row-inner a {
    color: #fff;
    text-decoration: none;
}

.locations-cards-row-inner.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.locations-cards-row-inner.active .location-details {
    display: block;
}

.locations-cards-row-inner ul li span img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.locations-map #map {
    height: 100% !important;
    width: 100% !important;
    max-width: 100%;
}

#map {
    /* width: 100%;
  height: 500px; */
    border-radius: 15px;
}

/* =========Footer======= */
.footer-cards {
    background-color: var(--light-color);
    padding: 42px 85px;
    border-radius: 20px;
}

footer#footer {
    background-color: var(--primary-color);
    padding: 48px 0 35px 0;
}

.footer-cards-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-cards-img img {
    display: block;
    height: auto;
    width: 100%;
    padding: 22px;
}

.footer-cards-heading h3 {
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 100%;
    font-size: clamp(20px, 2.083vw, 30px);
    margin: 31px 0 11px 0;
}

.footer-cards-heading p {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 31px;
}

.footer-cards-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding-right: 133px; */
    /* width: 100%; */
    /* max-width: 33.33%; */
    /* flex: 0 0 33.33%; */
}

.footer-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-cards-inner:nth-child(2) {
    border: 1px solid rgb(38 92 141 / 20%);
    padding: 0 133px;
    border-top: 0;
    border-bottom: 0;
}

.footer-content {
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo a {
    width: 325px;
    height: 134px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo a img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.footer-description p {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: var(--light-color);
    width: 100%;
    max-width: 440px;
    margin-top: 12px;
}

.footer-links h5 {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(16px, 1.389vw, 20px);
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-family: 'Gilroy-regular';
}

.footer-content-right {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 144px;
}

.footer-copy-right {
    padding-top: 34px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    margin-top: 34px;
}

.footer-copy-right p {
    text-align: center;
    color: var(--light-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
}

.footer-copy-right p a {
    text-align: center;
    color: var(--light-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    text-decoration: underline;
}

.km-accordion-content p {
    color: var(--accordian-open-color);
    line-height: 160%;
    font-weight: 400;
    font-size: 18px;
}

.km-accordion-content p a {
    color: var(--accordian-open-color);
    text-decoration: underline;
    font-weight: 400;
    line-height: 160%;
}



.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Box */
.popup-content {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    max-width: 830px;
    width: 100%;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    background-color: var(--primary-color);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: -1px;
    right: 10px;
    font-size: 28px;
    font-weight: bold;
    color: var(--light-color);
    cursor: pointer;
    height: 15px;
    width: 15px;
    font-weight: 400;
}

/* Popup Body */
.popup-body {
    text-align: center;
}

.popup-img {
    max-width: 40%;
    border-radius: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.popup-body-contetn-inner {
    text-align: left;
}

.popup-body-contetn-inner h3 {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(20px, 2.222vw, 32px);
    line-height: 90%;
    margin-bottom: 20px;
    font-family: 'Gilroy-Medium';
}

.popup-body-contetn-inner p {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    max-width: 410px;
}

.popup-about {
    margin-top: 50px;
}

.popup-about ul li {
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 170%;
    color: var(--light-color);
}

.card-back-filled-cards {
    background-color: var(--primary-color);
    padding: 45px 30px;
    border-radius: 10px;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.card-back-heading {
    text-align: center;
    margin-bottom: 40px;
}

.card-back-heading h3 {
    color: var(--primary-color);
    line-height: 100%;
    font-weight: 400;
    font-size: clamp(20px, 1.806vw, 26px);
}

.card-back-heading p {
    margin-top: 15px;
    color: #2C2B2B;
    font-weight: 400;
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 160%;
}

.card-back-filled-cards-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.card-back-filled-cards-inner-img {
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.card-back-filled-cards-inner-img img {
    display: block;
    height: auto;
    width: 100%;
    padding: 16px;
}

.card-back-filled-cards-inner-content p {
    color: var(--light-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
}

.banner {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    /* full screen */
    overflow: hidden;
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(38, 92, 141, 0.5), rgba(38, 92, 141, 0.5)),
        linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 92.53%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: -1;
}

.banner-slide {
    min-height: 100vh;
    /* or 600px for testing */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;

}

.banner-content {
    /* background: rgba(0, 0, 0, 0.4); */
    /* background: linear-gradient(0deg, rgba(38, 92, 141, 0.5), rgba(38, 92, 141, 0.5)),
linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 92.53%),
linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); */
    padding: 20px 40px;
    border-radius: 10px;
}

/* .swiper-slide {
    background: none !important;
} */

.about-cards-wrap-inner-holder:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--light-color);
}

.about-cards-wrap-inner-holder:hover .about-cards-wrap-inner-holder-heading-img img {
    filter: invert(1);
}

.offers-cards-inner:hover .offers-cards-inner-holder h3 {
    margin-top: -190px;
}

.banner-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 200px;
    ;
}

.banner-content {
    max-width: 1020px;
}

.banner-content h1 {
    color: var(--light-color);
    font-size: clamp(36px, 6.528vw, 96px);
    line-height: 110%;
    text-transform: uppercase;
    font-weight: 400;
}

.banner-content h4 {
    color: var(--light-color);
    font-weight: 400;
    font-size: clamp(20px, 2.361vw, 34px);
    margin: 25px 0 20px 0;
}

.banner-content p {
    color: var(--light-color);
    font-size: clamp(14px, 1.111vw, 16px);
    font-weight: 400;
    line-height: 160%;
    max-width: 900px;
    margin-bottom: 76px;
}

header#header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: var(--light-color);
}

header.newClass {
    position: fixed !important;
    background-color: rgb(234 133 53 / 100%);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 12px 30px -2px #0000001f;
}

header.newClass .header-button a {
    border: 2px solid #fff;
}

.newClass ul li a:hover {
    color: var(--primary-color) !important;
}

.newClass ul li a:hover::after {
    background: var(--primary-color) !important;
}

#navbar ul li.active a {
    color: var(--secondary-color);
}

#navbar ul li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.locations-cards-row-inner:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.km-accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.km-accordion-content ul li {
    color: var(--accordian-open-color);
    line-height: 160%;
    font-weight: 400;
    font-size: 18px;
    list-style: disc;
}

.km-accordion-content ul {
    padding-left: 20px;
}