/* ====var.css==== */
:root {
    /* ====Colors==== */
    --primary: #750019;
    --black: #000;
    --white: #fff;
    --pera: #454545;
    --btnBg: #750019;

    /* ====Fonts==== */
    --font-regular: "Montreal";
    --font-medium: "Montreal-Medium";
    --font-bold: "Montreal-Bold";
}

@font-face {
    font-family: 'Montreal-Bold';
    src: url('../fonts/MontrealBold-Bold.woff2') format('woff2'),
        url('../fonts/MontrealBold-Bold.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montreal-Medium';
    src: url('../fonts/MontrealMedium.woff2') format('woff2'),
        url('../fonts/MontrealMedium.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montreal';
    src: url('../fonts/Montreal.woff2') format('woff2'),
        url('../fonts/Montreal.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 62.5%;
    font-family: var(--font-regular);
}

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

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


.primary-btn {
    font-family: var(--font-regular);
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    border: 0.1rem solid var(--white);

    color: var(--white);
    text-decoration: none;

    font-size: clamp(1.6rem, 2vw, 2.6rem);
    font-weight: 400;

    transition: var(--transition);

    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(4rem);

    transition:
        transform 1s ease 0.8s,
        opacity 1s ease 0.8s,
        background 0.4s ease;
    line-height: normal;
}

.swiper-slide-active .primary-btn {
    opacity: 1;
    transform: translateY(0);
}

.primary-btn::before {
    content: "";

    position: absolute;
    inset: 0;

    width: 0%;
    background: var(--white);

    transition: 0.4s ease;

    z-index: -1;
}

.primary-btn:hover::before {
    width: 100%;
}

.primary-btn:hover {
    color: var(--black);
}

.p-100 {
    padding: 120px 0px;
}

.section-title {
    font-family: var(--font-regular);
    font-size: clamp(3.2rem, 2rem + 2.5vw, 5.6rem);
    line-height: normal;
    text-transform: uppercase;
    color: var(--primary);
}




.secondary-btn {
    font-family: var(--font-regular);
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    border: 0.1rem solid var(--primary);

    color: var(--white);
    text-decoration: none;

    font-size: clamp(1.6rem, 2vw, 2.6rem);
    font-weight: 400;

    transition: var(--transition);

    position: relative;
    overflow: hidden;

    transition:
        transform 1s ease 0.8s,
        opacity 1s ease 0.8s,
        background 0.4s ease;
    background: var(--primary);
    line-height: normal;
}


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


@media only screen and (max-width: 991px) {
    .p-100 {
        padding: 80px 0px;
    }
}

@media only screen and (max-width: 575px) {
    .p-100 {
        padding: 50px 0px;
    }
}


/* ====Header.css==== */
/* =========================================
       HEADER
    ========================================== */

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}

.header-wrapper.scrolled {
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.header-wrapper.scrolled .menu-toggle span {
    background: #000;
}

.header-wrapper.scrolled .nav-link {
    color: var(--black);
}

.header-wrapper.scrolled .nav-link.active {
    color: var(--primary);
}

.custom-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1640px;
    margin: 0px auto;
    position: relative;
    padding: 20px 20px;
}

/* =========================================
       LOGO
    ========================================== */

.logo img {
    width: clamp(7rem, 9vw, 10.5rem);
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
       NAVIGATION
    ========================================== */

.navbar {
    display: flex;
    align-items: center;
    gap: clamp(4rem, 6vw, 10rem);
}

.nav-link {
    font-family: var(--font-regular);
    text-decoration: none;
    color: var(--white);
    font-size: clamp(1.6rem, 1.2vw, 2rem);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link.active {
    color: var(--primary);
}


/* Hover Underline Animation */

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -0.6rem;

    width: 0%;
    height: 0.2rem;

    background: var(--primary);

    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

/* =========================================
       HAMBURGER
    ========================================== */

.menu-toggle {
    width: 4.5rem;
    height: 4.5rem;

    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;

    cursor: pointer;

    z-index: 999;
}

.menu-toggle span {
    width: 100%;
    height: 0.3rem;

    background: var(--white);

    border-radius: 10rem;

    transition: var(--transition);
}

/* Toggle Animation */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(0.9rem) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-45deg);
}

/* =========================================
       MOBILE MENU
    ========================================== */

@media (max-width: 991px) {

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #fff;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 2rem;

        padding: 2rem 2rem;

        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;

        transition: 0.45s ease;

        border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    }

    .nav-link {
        color: var(--black);
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 2rem;
    }
}

/* =========================================
       SMALL DEVICES
    ========================================== */

@media (max-width: 576px) {


    .logo img {
        width: 7rem;
    }

    .menu-toggle {
        width: 4rem;
        height: 4rem;
    }
}


/* ====home.css===== */
/* =========================================
       BANNER SECTION
    ========================================== */

.banner-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-section .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* =========================================
       SLIDE IMAGE
    ========================================== */

.slide-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transition: 7s ease;
}

/* Zoom Animation Active Slide */

.banner-section .swiper-slide-active .slide-bg img {
    transform: scale(1.08);
}

/* =========================================
       OVERLAY
    ========================================== */

.banner-overlay {
    position: absolute;
    inset: 0;
    top: auto;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.90));

    z-index: 1;
    height: 460px;
    bottom: 0;
}

/* =========================================
       CONTENT
    ========================================== */

.banner-content {
    position: relative;
    z-index: 5;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;

    padding-bottom: clamp(3rem, 4vw, 4.5rem);
}

.banner-text {
    /* max-width: 75rem; */

    opacity: 0;
    transform: translateY(8rem);

    transition: 1s ease;
}

/* Active Slide Text Animation */

.banner-section .swiper-slide-active .banner-text {
    opacity: 1;
    transform: translateY(0);
}

.banner-subtitle {
    color: #fff;

    font-size: clamp(1.6rem, 1.5vw, 2rem);
    font-weight: 400;

    margin-bottom: 1.5rem;

    letter-spacing: 0.08rem;

    opacity: 0;
    transform: translateY(4rem);

    transition: 1s ease 0.4s;
}

.banner-section .swiper-slide-active .banner-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.banner-title {
    font-family: var(--font-regular);
    color: var(--white);
    font-size: clamp(3.2rem, 4.5vw, 6.4rem);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(5rem);
    transition: 1s ease 0.2s;
    -webkit-transform: translateY(5rem);
    -moz-transform: translateY(5rem);
    -ms-transform: translateY(5rem);
    -o-transform: translateY(5rem);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.banner-section .swiper-slide-active .banner-title {
    opacity: 1;
    transform: translateY(0);
}

.banner-desc {
    font-family: var(--font-regular);
    color: var(--white);
    font-size: clamp(1.6rem, 2vw, 3rem);
    line-height: normal;
    padding-bottom: 2.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(4rem);
    transition: 1s ease 0.6s;
    -webkit-transform: translateY(4rem);
    -moz-transform: translateY(4rem);
    -ms-transform: translateY(4rem);
    -o-transform: translateY(4rem);
    font-weight: 400;
    border-bottom: 1px solid #707070;
}

.banner-section .swiper-slide-active .banner-desc {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
       BUTTON
    ========================================== */
.banner-section .swiper-slide-active .primary-btn {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
       SWIPER PAGINATION
    ========================================== */

.banner-section .swiper-pagination {
    bottom: 4rem !important;
}

.banner-section .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;

    background: #fff;
    opacity: 0.5;
}

.banner-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 3.5rem;
    border-radius: 5rem;
}

/* =========================================
       SWIPER NAVIGATION
    ========================================== */

.banner-section .swiper-button-next,
.banner-section .swiper-button-prev {
    width: 6rem;
    height: 6rem;

    border: 0.1rem solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    backdrop-filter: blur(0.6rem);

    transition: 0.4s ease;
}

.banner-section .swiper-button-next:hover,
.banner-section .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.15);
}

.banner-section .swiper-button-next::after,
.banner-section .swiper-button-prev::after {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}


.about-section {
    position: relative;
}

.year-box {
    text-align: center;
}

.year-number {
    width: 100%;
    max-width: 350px;

}

.year-number img {
    width: 100%;
}

.year-text h3 {
    font-family: var(--font-regular);
    font-size: clamp(3.6rem, 4vw, 5rem) !important;
    line-height: clamp(4.2rem, 5.8vw, 6rem) !important;
    color: var(--primary);
    text-align: left;
    max-width: 350px;
}

.year-text h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.year-text p {
    font-size: 28px;
    margin-top: 15px;
    line-height: 1.3;
}

.content-area p {
    font-family: var(--font-regular);
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    line-height: clamp(2.8rem, 2.5vw, 3rem);
    color: #454545;
    margin-bottom: 3rem;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.stats-item:last-child {
    margin-bottom: 0px;
}

.stats-number {
    font-family: var(--font-regular);
    font-size: clamp(4rem, 2.8rem + 2.5vw, 6rem);
    line-height: normal;
    color: var(--primary);
    min-width: clamp(14rem, 10rem + 8vw, 20rem);
}

.stats-text {
    font-family: var(--font-regular);
    font-size: clamp(2rem, 1.5rem + 1vw, 2.4rem);
    line-height: normal;
    color: var(--black);
}

.deity-img {
    text-align: center;
}

.deity-img img {
    max-width: 100%;
    height: auto;
}

.about-section .row {
    row-gap: 30px;
}

.highlight-section {
    overflow: hidden;
}

.highlight-video {
    position: relative;
}

.highlight-video button {
    border: none;
    background: none;
    font-family: var(--font-regular);
    color: var(--white);
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-transform: uppercase;
    z-index: 2;
}

.highlight-video-wrp h3 {
    font-family: var(--font-regular);
    font-size: clamp(2.4rem, 1.6rem + 1.2vw, 3rem);
    line-height: normal;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: clamp(2rem, 1.5rem + 1vw, 3rem);
}

.highlight-video-wrp video {
    width: 100%;
    height: 100%;
    aspect-ratio: 642/457;
    max-width: 642px;
    max-height: 457px;
    object-fit: fill;
}

.highlight-video::before {
    content: "";
    position: absolute;
    inset: 0;
    top: auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.90));
    z-index: 1;
    height: 200px;
    bottom: 0;
}

.highlight-section .row {
    row-gap: 30px;
}


.landlisting-section {
    padding-left: clamp(1rem, 5vw, 10rem);
    padding-right: clamp(1rem, 5vw, 10rem);
}

.landlisting-section h2 {
    margin-bottom: clamp(3rem, 4vw, 8rem);
}

.filter-section {
    margin-bottom: clamp(4rem, 3vw, 8rem);
}

.filter-section .form-label {
    font-size: 1.6rem;
    font-family: var(--font-regular);
    color: #333;
    margin-bottom: 1rem;
}

.filter-section .form-select {
    font-family: var(--font-regular);
    font-size: 20px;
    color: var(--black);
    border: none;
    border-bottom: 2px solid #707070;
    border-radius: 0;
    padding: 2rem 0px;
    background-position: right 0 center;
    background-size: 16px;
    box-shadow: none;
}

.filter-section .form-select:focus {
    border-color: #000;
    box-shadow: none;
}


/* SECTION */
.project-section {
    padding: 6rem 2rem;
}

/* CARD */
.project-card {
    position: relative;
    overflow: hidden;
    /* border-radius: 12px; */
}

.project-card .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    top: auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.90));
    z-index: 2;
    height: 200px;
    bottom: 0;
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 542 / 469;
    max-height: 469px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
    position: relative;
}


/* TEXT OVERLAY */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.card-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* SWIPER DOTS */
.projectSwiper {
    position: relative;
}

.projectSwiper .swiper-pagination {
    bottom: 12px !important;
    text-align: right;
    padding-right: 12px;
}

.projectSwiper .swiper-pagination-bullet {
    width: 16px;
    height: 3px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px !important;
    transition: 0.3s ease;
}

.projectSwiper .swiper-pagination-bullet-active {
    width: 28px;
    background: #fff;
}

.project-card h4 {
    font-family: var(--font-regular);
    font-size: 18px;
    line-height: normal;
    color: var(--white);
    margin-bottom: 6px;
}

.project-card p {
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: normal;
    color: #9F9F9F;
    margin-bottom: 0px;
}

.project-card-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 1;
    width: 100%;
    max-width: calc(100% - 100px);
    z-index: 4;
}



.our-director-section {
    background-image: url(../img/ourdirectorbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 13rem 0;
    position: relative;
    background-position: center center;
}

.our-director-content p {
    font-family: var(--font-regular);
    font-size: clamp(2rem, 1.5vw, 3.2rem);
    line-height: clamp(3.6rem, 2.8vw, 5.8rem);
    color: var(--white);
    max-width: 650px;
    margin-bottom: 5rem;
}

.our-director-content h5 {
    font-family: var(--font-bold);
    font-size: clamp(2rem, 1.2vw, 3rem);
    line-height: normal;
    color: var(--white);
}

.our-director-content h6 {
    font-family: var(--font-regular);
    font-size: clamp(2rem, 1.2vw, 3rem);
    line-height: normal;
    color: var(--white);
    margin-bottom: 0;
}

.directorimg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    /* height: 100%; */
    max-width: 730px;
}




.testimonial-section {
    background: #fff;
}

/* TITLE */
.testimonial-title {
    font-size: 5rem;
    font-weight: 400;
    color: #7a0015;
    text-transform: uppercase;
    line-height: 1.1;
}

.testimonial-subtitle {
    font-family: var(--font-regular);
    font-size: clamp(1.6rem, 1.2vw, 2rem);
    line-height: clamp(2.8rem, 2vw, 3.6rem);
    color: #454545;
    max-width: clamp(30rem, 40vw, 50rem);
    margin-left: auto;
}

/* CARD */
.testimonial-card {
    background: #F4F4F4;
    padding: 3rem;
    border-radius: 0px;
    height: 100%;
    position: relative;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    display: flex;
    flex-direction: column;
}

/* QUOTE */
.testimonial-card .quote {
    /* font-size: 6rem;
      color: #7a0015;
      line-height: 1; */
    margin-bottom: 2.7rem;
}

/* TEXT */
.testimonial-card p {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #454545;
    margin-bottom: 5rem;
    flex: 1;
}

/* CLIENT */
.client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.client h6 {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #454545;
    margin-bottom: 0px;

}

.client span {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: 2rem;
    color: #454545;
    margin-bottom: 0px;
}

/* SWIPER */
.testimonialSwiper .swiper-pagination {
    margin-top: 3rem;
    position: relative;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 18px;
    height: 4px;
    border-radius: 10px;
    background: #ccc;
    opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #7a0015;
    width: 28px;
}

.testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}



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

.bg-light-custom {
    background-color: #F4F4F4;
}

/* Fluid typography using clamp() */
.inquiry-section .main-heading {
    font-family: var(--font-regular);
    font-size: clamp(3.6rem, 5vw, 6rem);
    line-height: clamp(3.8rem, 4.8vw, 5.8rem);
    color: var(--white);
}

.inquiry-section ul {
    max-width: clamp(30rem, 40vw, 45rem);
    margin-bottom: clamp(2.5rem, 3vw, 4rem) !important;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.2vw, 1.5rem);
}

.feature-item {
    font-family: var(--font-regular);
    font-size: clamp(2rem, 2.5vw, 3rem);
    line-height: normal;
    color: #343434;
    margin: 0;
}

.bg-light-custom {
    padding: clamp(3rem, 5vw, 6.6rem) clamp(2rem, 8vw, 10rem);
}

.bg-maroon h2 {
    max-width: clamp(25rem, 30vw, 35rem);
}

.bg-maroon {
    padding: clamp(3rem, 4vw, 5rem) clamp(2rem, 5vw, 6rem);
}

/* .inquiry-section .secondary-btn {
      width: ;
  } */


#formPopup .popup-content h2 {
    font-family: var(--font-medium);
    font-size: 2rem;
    line-height: normal;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}


/* =========================================
       RESPONSIVE
    ========================================== */

@media only screen and (max-width: 1599px) {
    .directorimg {
        max-width: 600px;
    }
}

@media only screen and (max-width: 1399px) {
    .directorimg {
        max-width: 550px;
    }
}

@media only screen and (max-width: 1300px) {
    .directorimg {
        max-width: 500px;
    }
}

@media only screen and (max-width: 1199px) {
    .our-director-content p {
        max-width: 600px;
    }
}


@media only screen and (max-width: 991px) {
    .our-director-content p {
        max-width: 600px;
    }

    .banner-section .swiper-button-next,
    .banner-section .swiper-button-prev {
        display: none;
    }

    .directorimg {
        position: relative;
        margin-left: auto;
        margin-top: -50px;
    }

    .our-director-section {
        padding: 10rem 0rem;
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0px;
    }
}


@media only screen and (max-width: 767px) {

    .banner-section {
        height: 80dvh;
    }

    .directorimg {
        position: relative;
        margin-left: auto;
        margin-top: -50px;
        max-width: 400px;
    }

    .our-director-section {
        padding: 7rem 0rem;
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-text {
        padding: 0px 5px;
    }

    .custom-header {
        padding: 20px 10px;
    }

    .directorimg {
        position: relative;
        margin-left: auto;
        margin-top: 30px;
        max-width: 300px;
    }

    .our-director-section {
        padding: 5rem 0rem;
        padding-bottom: 0px;
    }

    .section-title {
        text-align: center;
    }

    .testimonial-subtitle {
        text-align: center;
        margin: 0px auto;
    }
}

/* ======footer.css====== */
footer {
    background-color: var(--black);
    padding: 5rem 0rem 2rem 0rem;
}

/* Fluid Typography using clamp() for text readability across screens */
.footer-text {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: normal;
    color: var(--white);
}

.footer-link-item {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: normal;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-link-item:hover {
    color: var(--primary);
}

.footer-title {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    line-height: normal;
    color: var(--white);
    margin-bottom: 4rem;
}

.footer-bottom-text {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: normal;
    color: #9A9A9A;
}

/* Logo Image Sizing */
.footer-logo {
    width: 100%;
    max-width: 20rem;
    height: auto;
    margin-bottom: 3rem;
    position: relative;
    left: 30px;
}

/* Social Icons Styling */
.social-icon {
    width: 100%;
    max-width: 36px;
    min-width: 36px;
    height: 36px;
    background: #121214;
    font-size: 1.8rem;
    color: #ffffff;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Separation Line customization */
.footer-divider {
    border-top: 1px solid var(--primary);
    opacity: 1;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.footer-section ul {
    gap: 20px !important;
}






