:root {
    --theme-color: #6600CC;
    --btn-color: #07BE0E;
    --text-muted: #545454;
    --white-color: #ffffff;
    --heading-font: "Cabin", sans-serif;
    --body-font: "Inter", sans-serif;
}

@media (min-width: 1300px) {

    .container,
    .container-lg,
    .container-md,
    .container-xl,
    .container-xxl {
        max-width: 1280px !important;
    }
}

@media (min-width: 992px) and (max-width:1300px ) {

    .container,
    .container-lg,
    .container-md,
    .container-xl,
    .container-xxl {
        max-width: 1100px !important;
    }
}

@media (min-width: 991px) {
    .container-2 {
        max-width: 1200px !important;
    }
}



body, html {
  overflow-x: hidden;
}


*,
::before,
::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font);
}



h1 {
    font-family: var(--heading-font);
    font-style: normal;
    font-size: 50px;
    font-weight: 600;
    line-height: 51px;
    letter-spacing: 0;
}

h2 {
    font-family: var(--heading-font);
    font-style: normal;
    font-size: 32px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0;
    color: var(--text-muted);
}

h3 {
    font-family: var(--heading-font);
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    color: var(--text-muted);
}

a,
p {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--text-muted);
}

a {
    color: var(--white-color);
}

@media (min-width: 992px) and (max-width:1300px ) {
    h2 {
        font-size: 28px;
    }
    a, p{
        font-size: 12px;
    }
}


.form-control,
.form-select,
button {
    transition: 0.3s ease-in-out;
    background: none;
    box-shadow: none;
    outline: 0px;
}

.form-control:focus,
.form-select:focus,
button:focus {
    border: 0px;
}

::-webkit-scrollbar {
    width: 0.35rem;
}

::-webkit-scrollbar-track {
    background: var(--theme-color);
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

::selection {
    color: rgb(255, 255, 255);
    background-color: rgb(62, 100, 175);
}


.section-spacing {
    padding-top: 45px;
    padding-bottom: 45px;
}

.container-fluid {
    padding: 0px;
    margin: 0px;
    overflow: clip;
}

picture {
    display: block;
}

.zoom-hover picture {
    overflow: hidden;
}

.zoom-hover picture img {
    transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.zoom-hover:hover picture img {
    transform: scale(1.1);
}

.loader {
    position: fixed;
    inset: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: url("../images/ferovium-logo.svg") center center no-repeat rgb(255, 255, 255);
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background-color: var(--theme-color);
    opacity: 1;
    margin: 0 20px !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--btn-color);
}

/*------------------------
    Back To Top Button
------------------------*/

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(47.25deg, #6600CC 0.4%, #07BE0E 115.18%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top img {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 767px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 46px;
        height: 46px;
    }

    .back-to-top img {
        width: 20px;
        height: 20px;
    }
}


/*=====================================
    Header Styles
=====================================*/

.navbar {
    max-width: 3000px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px #525252ac;
}

@media (min-width: 1300px) {
    .navbar {
        padding: 20px 80px;
    }
}

.socials-logos-mobile {
    display: none;
}


#navigation_bar .navbar-brand picture {
    display: inline-block;
    margin-right: auto;
    flex-shrink: 1;
}

#navigation_bar .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.navbar-nav .nav-link,
.navbar-nav .nav-item {
  white-space: nowrap;
}

#navigation_bar .main-cta {
    padding: 7px 12px;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
}

.navbar-expand-xl .navbar-nav .nav-link  {
    display: inline-block;
    color: var(--text-muted);
    padding: 7px 20px;
    background-color: transparent;
    width: 100%;
}

.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-item.active > .nav-link {
    color: var(--theme-color);
    background-color: #EFEEFF;
    border-radius: 5px;
}

.navbar-toggler {
  border: none;
  padding: 0;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.custom-toggler-icon {
  width: 32px;
  height: 32px;
  display: block;
}
/* Header Media Dropdown - Desktop */

#navigation_bar .nav-dropdown {
    position: relative;
}

#navigation_bar .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

#navigation_bar .nav-dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#navigation_bar .nav-dropdown-arrow img {
    width: 10px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

/* Desktop dropdown styled like mobile navbar */
#navigation_bar .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);

    min-width: 220px;
    width: max-content;

    margin: 0;
    padding: 8px 18px;

    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

    list-style: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}

#navigation_bar .nav-dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #dddddd;
}

#navigation_bar .nav-dropdown-menu li:last-child {
    border-bottom: none;
}

#navigation_bar .nav-dropdown-menu li a {
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 13px 0;

    color: var(--text-muted);
    background: transparent;
    border-radius: 5px;
    padding: 10px 6px;

    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;

    text-align: left;
    white-space: nowrap;

    transition: color 0.25s ease;
}

#navigation_bar .nav-dropdown-menu li a:hover {
    color: var(--theme-color);
    background: #EFEEFF;
}

/* Desktop hover open */
@media (min-width: 1200px) {
    #navigation_bar .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    #navigation_bar .nav-dropdown:hover .nav-dropdown-arrow img {
        transform: rotate(180deg);
    }
}
/*------------------------
    Header Scroll Behaviour
------------------------*/

#navigation_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white-color);
    transition: transform 0.35s ease;
}

/* Visible / default state */
#navigation_bar.nav-down {
    transform: translateY(0);
}

/* Hidden — slide up out of view */
#navigation_bar.nav-up {
    transform: translateY(-100%);
}


.main-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: var(--btn-color);
    border-radius: 5px;
    transition: all ease 0.5s;
}

.main-cta:hover {
    background-color: var(--theme-color);
}

.main-cta.alt-cta {
    background-color: var(--theme-color);
}


.btn-transparent {
    background-color: transparent;
}

.btn-transparent span {
    color: var(--text-muted);
}

.btn-transparent:hover span {
    color: var(--white-color);
}

.action-arrow {
    padding-left: 5px;
}

#main-page-wrapper {
    padding-top: 80px; /* match your navbar height */
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}




/*==========================================
    Home Page Styles
==========================================*/


/*-----------------------------
    Home | Section 1 Styles
-----------------------------*/

#banner h1 {
    color: var(--white-color);
    font-size: 50px;
}

/* Banner paragraph and link text should be white on the dark background */
#banner p,
#banner a {
    color: var(--white-color);
}

#banner .banner-background {
    position: relative;
}

#banner .banner-content {
    position: absolute;
    top: 17%;
    left: 7%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



.swiper-navigations {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    bottom: 15%;
    left: 7%;
    z-index: 2;
}

#banner .swiper-navigations .arrow-prev,
#banner .swiper-navigations .arrow-next {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* overflow:visible was letting swiper slides bleed past the viewport edge,
   contributing to the white-sliver bug. Hidden clips them cleanly. */
.banner-swiper {
    overflow: hidden;
}

#banner .below-banner-content p {
    color: var(--text-muted);
}

.below-banner-content-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


/*-----------------------------
    Home | Section 2 Styles
-----------------------------*/

.right-partner-card {
    position: relative;
    display: inline-block;
    width: 100%;
}

.card-front,
.card-back {
    transition: opacity 0.7s ease;
}

.card-front {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.card-back {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 3;
}

.right-partner-card:hover .card-front {
    opacity: 0;
}

.right-partner-card:hover .card-back {
    opacity: 1;
}

.card-front h2 {
    color: var(--white-color);
    position: absolute;
    bottom: 65px;
    left: 40px;
}

.card-back-content {
    position: absolute;
    bottom: 65px;
    left: 40px;
}

.card-back-content p {
    color: var(--white-color);
}

.card-back-content h2 {
    margin-bottom: 1rem;
    color: var(--white-color);
}

.logo-faded {
    position: absolute;
    top: 25%;
    left: 40px;
}

.right-partner-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 1rem;
}

.right-partner-swiper .swiper-wrapper {
    margin-bottom: 3rem;
}

.right-partner-pagination {
    text-align: center;
}


/*-----------------------------
    Home | Section 3 Styles
-----------------------------*/

.FV-card {
    position: relative;
    overflow: hidden;
    background-color: #EFEEFF;
    padding: 45px 50px 55px 50px;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
}

/* Gradient overlay */
.FV-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(47.25deg, #6600CC 0.4%, #07BE0E 115.18%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

/* Fade gradient in */
.FV-card:hover::before {
    opacity: 1;
}

.FV-card:hover {
    box-shadow: 0px 30px 34px 0px #0000002E;
}

/* Keep content above gradient */
.FV-card > * {
    position: relative;
    z-index: 1;
}

.FV-card h2,
.FV-card p {
    transition: color 0.3s ease;
}

.FV-card:hover h2,
.FV-card:hover p {
    color: var(--white-color);
}

.FV-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 75px;
}

.FV-card .main-cta {
    position: absolute;
    bottom: 55px;
    left: 50px;
    z-index: 20;
}

.FV-card p {
    color: var(--text-muted);
}


/*-----------------------------
    Home | Section 4 Styles
-----------------------------*/

.gc-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: linear-gradient(327.74deg, #6400CA 9.46%, rgba(6, 188, 14, 0.7) 106.46%);
    min-height: 420px;
}

.gc-card-outer {
    position: relative;
    transition: all ease 0.7s;
}

.green-tilt {
    position: absolute;
    top: -10px;
    left: -6px;
    width: 103%;
    height: 105%;
    opacity: 0;
    z-index: -1;
}

.gc-card-outer:hover img.green-tilt {
    opacity: 1;
}


.gc-card h3 {
    font-weight: 600;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 45px;
    margin: 0;
    text-align: center;
    color: var(--white-color);
    z-index: 5;
}

.gc-card-front,
.gc-card-back {
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
    transition: opacity 0.7s ease;
}

.gc-card-front {
    position: relative;
    opacity: 1;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.gc-card-back {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 3;
}

/* full hover image */
.gc-card-back picture,
.gc-card-back img {
    display: block;
    width: 100%;
    height: 100%;
}

.gc-card-back img {
    object-fit: cover;
    border-radius: 20px;
}

/* gradient OVERLAY */
.gc-card-back::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        360deg,
        #6400CA -2.97%,
        rgba(102, 0, 204, 0) 68.22%
    );
    z-index: 4;
}

/* default circular image */
.gc-card-front img {
    width: 194px;
    height: 194px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 50px;
    display: block;
}

.gc-card:hover .gc-card-front {
    opacity: 0;
}

.gc-card:hover .gc-card-back {
    opacity: 1;
}

@media (min-width: 992px) {
    .gc-card-outer .pull-down {
        margin-top: 3rem;
    }
}

.gc-cards-swiper {
    width: 100%;
    overflow: visible;
}
.gc-pagination {
    text-align: center;
    padding-top: 50px;
}


/*-----------------------------
    Home | Section 5 Styles
-----------------------------*/

#quality-certified .section-header {
    padding-bottom: 30px;
}

.qc-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 30px 10px 20px 10px;
    background-color: #EFEEFF;
    border-radius: 20px;
}

.qc-card p {
    color: var(--text-muted);
    text-align: center;
}

.qc-swiper {
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
}

.qc-pagination {
    text-align: center;
    margin-top: 1.5rem;
}

.qc-pagination .swiper-pagination-bullet {
    margin: 0 20px !important;
}


/*-----------------------------
    Home | Section 6 Styles
-----------------------------*/

#custom-solutions {
    background-color: #EFEEFF;
    border-radius: 20px;
}

.custom-solutions-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.custom-solutions-image picture img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.custom-solutions-right .section-header {
    margin-bottom: 1.5rem;
}

/* ── Accordion reset (override Bootstrap defaults) ── */

.cs-accordion .accordion-item {
    border: none;
    border-radius: 0 !important;
    background: transparent;
    padding: 0 20px;
}

.cs-accordion .accordion-item:last-child {
    border-bottom: none;
}

.cs-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
    padding-left: 2rem;          /* space for the icon */
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    position: relative;
    gap: 0;
}

/* Hide Bootstrap's default chevron arrow */
.cs-accordion .accordion-button::after {
    display: none;
}

/* ── Custom icon via ::before ── */
.cs-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* Default (collapsed): show plus */
    background-image: url("../images/plus.svg");
}

/* Open state: swap to minus */
.cs-accordion .accordion-button:not(.collapsed)::before {
    background-image: url("../images/minus.svg");
    width: 13px;
    height: 4px;
}

/* Active label color */
.cs-accordion .accordion-button:not(.collapsed) {
    color: var(--btn-color);
}

.cs-accordion .accordion-body {
    padding: 0 0 18px 2rem;
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 23px;
    color: var(--text-muted);
}

/* Active item subtle background */
.cs-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: var(--white-color);
    border-radius: 20px !important;
    border-bottom: none;
    padding: 0 20px;
    margin-bottom: 4px;
}

#custom-solutions .action-buttons {
    margin-top: 1.5rem;
}


/*------------------------------
    Home | Section 7 Styles Desktop
------------------------------*/

#sustainability-wheel {
    position: relative;
}

@media (min-width: 991px) and (max-width: 1300px) {
    #sustainability-wheel .container {
        max-width: 1300px !important;
    }
}

.swheel-layout {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swheel-center-wrap {
    position: relative;
    width: 760px;
    height: 760px;
    flex-shrink: 0;
}

.swheel-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 630px;
    height: 630px;
    transform: translate(-50%, -50%);
    border: 3px solid #DCC6F3;
    border-radius: 50%;
    z-index: 1;
}

.swheel-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.swheel-center-image picture,
.swheel-center-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.swheel-center-image img {
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

/* Image fade transition */
.swheel-image.fade-out {
    opacity: 0;
}

.swheel-dot {
    position: absolute;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--theme-color);
    transform: translate(-50%, -50%);
    z-index: 4;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.45s ease, height 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
    cursor: pointer;
}

.swheel-dot-icon {
    width: 48px;
    height: 48px;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.35s ease, transform 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swheel-dot-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.swheel-dot.active {
    width: 122px;
    height: 122px;
    box-shadow: 0px 20px 34px rgba(102, 0, 204, 0.24);
}

.swheel-dot.active .swheel-dot-icon {
    opacity: 1;
    transform: scale(1);
}

.dot-1 {
    top: 20%;
    left: 21%;
}

.dot-2 {
    top: 20%;
    right: 21%;
    left: auto;
    transform: translate(50%, -50%);
}

.dot-3 {
    bottom: 21%;
    right: 20%;
    top: auto;
    transform: translate(50%, 50%);
}

.dot-4 {
    bottom: 21%;
    left: 20%;
    right: auto;
    top: auto;
    transform: translate(-50%, 50%);
}

.swheel-copy {
    position: absolute;
    z-index: 5;
}

.swheel-copy h2 {
    color: var(--text-muted);
    font-size: 20px;
}

.copy-top-left {
    top: 90px;
    left: 80px;
    text-align: right;
}

.copy-top-right {
    top: 70px;
    right: 90px;
    text-align: left;
}

.copy-bottom-left {
    bottom: 70px;
    left: 40px;
    text-align: right;
}

.copy-bottom-right {
    bottom: 70px;
    right: 30px;
    text-align: left;
}

@media (max-width: 1250px) {
    .swheel-layout {
        display: none;
    }
    .swheel-mobile {
        display: block;
    }
    #sustainability-wheel .section-header {
        padding-bottom: 35px;
    }
}

@media (min-width: 1250px) {
    .swheel-mobile {
        display: none;
    }
}


/*--------------------------
    Home | Section 7 Styles (Mobile)
--------------------------*/

#sustainability-wheel .section-header {
    padding: 0 15px 20px 15px;
}

.swheel-mobile {
    position: relative;
    padding: 0 20px;
    margin-top: 45px;
}

.swheel-mobile .swheel-ring {
    width: 444px;
    height: 444px;
    top: 49.8%;
}

.swheel-mobile-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.swheel-mobile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: visible;
    margin: 0 auto;
}

.swheel-mobile-image picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.swheel-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

/* Mobile dots positioned around the circular image */
.swheel-mobile-dot {
    position: absolute;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--theme-color);
    transform: translate(-50%, -50%);
    z-index: 4;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.45s ease, height 0.45s ease, box-shadow 0.45s ease;
    cursor: pointer;
}

.swheel-mobile-dot.active {
    width: 80px;
    height: 80px;
    box-shadow: 0px 10px 24px rgba(102, 0, 204, 0.24);
}

.swheel-mobile-dot .swheel-dot-icon {
    width: 32px;
    height: 32px;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.swheel-mobile-dot.active .swheel-dot-icon {
    opacity: 1;
    transform: scale(1);
}

/* Position dots around the circle - matching your screenshot */
.mobile-dot-1 {
    top: -6%;
    left: 50%;
}

.mobile-dot-2 {
    top: 50%;
    right: -6%;
    left: auto;
    transform: translate(50%, -50%);
}

.mobile-dot-3 {
    bottom: -6%;
    left: 50%;
    top: auto;
    transform: translate(-50%, 50%);
}

.mobile-dot-4 {
    top: 50%;
    left: -6%;
    transform: translate(-50%, -50%);
}

/* Content area below the image */
.swheel-mobile-content {
    position: relative;
    min-height: 100px;
    text-align: center;
    padding: 0 15px;
    width: 100%;
}

.swheel-mobile-text {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.swheel-mobile-text.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.swheel-mobile-text h3 {
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 12px;
}

/* Navigation arrows */
.swheel-mobile-nav {
    display: flex;
    align-items: normal;
    justify-content: center;
    margin: 45px 0 15px 0;
    width: 100%;
}

.swheel-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swheel-nav-btn:hover {
    transform: scale(1.1);
}

.swheel-nav-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .swheel-mobile-card {
        max-width: 340px;
    }

    .swheel-mobile-text h3 {
        font-size: 16px;
    }

    .swheel-mobile-dot.active {
        width: 70px;
        height: 70px;
    }
    .swheel-mobile .swheel-ring {
        width: 380px;
        height: 380px;
        top: 49.8%;
    }

}

@media (max-width: 545px) {
    .swheel-mobile-card {
        max-width: 300px;
    }

    .swheel-mobile-text h3 {
        font-size: 15px;
    }

    .swheel-mobile-dot.active {
        width: 60px;
        height: 60px;
    }
    .swheel-mobile .swheel-ring {
        width: 340px;
        height: 340px;
        top: 49.8%;
    }

}

@media (max-width: 380px) {
    .swheel-mobile-image {
        max-width: 250px;
    }

    .swheel-mobile-text h3 {
        font-size: 15px;
    }

    .swheel-mobile-dot.active {
        width: 60px;
        height: 60px;
    }
    .swheel-mobile .swheel-ring {
        width: 280px;
        height: 280px;
        top: 49.8%;
    }
    .swheel-mobile-nav {
        margin: 50px 0 20px 0;
    }
}


/*--------------------------
    Home | Section 8 Styles
--------------------------*/

#supply-continuity {
    background-color: var(--theme-color);
    border-radius: 20px;
    padding: 90px 0 130px 0;
}

.section-top h2 {
    color: var(--white-color);
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 150px;
}

#supply-continuity .section-bottom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0px;
}

.sup-con-card {
    display: flex;
    flex-direction: column;
    gap: 45px;
    height: 100%;
}

.sup-con-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sup-con-card-top .green {
    color: var(--btn-color);
    font-size: 50px;
}

.sup-con-card-top h2 {
    color: var(--white-color);
    font-size: 28px;
}

.sup-con-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sup-con-card-bottom p {
    color: var(--white-color);
}

.separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.separator .line1 {
    width: 1px;
    height: 172px;
    background-color: var(--white-color);
}

.separator .line2 {
    width: 1px;
    height: 234px;
    background-color: var(--white-color);
}



/*-----------------------------
    Home | Section 10 Styles
-----------------------------*/


.in-the-news-swiper {
    width: 100%;
    overflow: hidden;
}

.in-the-news-swiper .swiper-slide {
  width: 80%;
  transition: all 0.8s ease;
}

.swiper-slide-active {
  width: 100%; 
}

.swiper-slide-next {
    width: 80%;
}

#in-the-news .section-header {
    padding-bottom: 2rem;
}

.news-card p {
    color: var(--text-muted);
}
/* 
.news-card-image {
    position: relative;
}

.news-card-image .hover-img {
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.news-card-image:hover .main-img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.news-card-image:hover .hover-img {
    opacity: 1;
} */

.news-card {
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  background: #fff; /* your normal card bg */
}

/* gradient layer */
.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(47.25deg, #6600CC 0.4%, #07BE0E 115.18%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* fade gradient in */
.news-card:hover::before {
  opacity: 1;
}

/* keep card content above gradient */
.news-card > * {
  position: relative;
  z-index: 1;
}

.news-card:hover p {
    color: var(--white-color);
}

.news-card-image picture {
    overflow: hidden;
    display: block;
    border-radius: 20px;
}

.in-the-news-swiper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swiper-navigations-2 {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-card-content {
    padding: 15px;
}

.news-pagination { 
    text-align: center;
    margin-top: 30px;
}


/*-----------------------------
    Home | Section 11 Styles
-----------------------------*/

#backed-by .backed-by-content {
    border-radius: 20px;
    background-color: #EFEEFF;
    padding: 60px;
}

.backed-by-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.backed-by-text p {
    color: var(--text-muted);
}

.backed-by-content-right {
    margin: 0 auto;
}





/*-----------------------------
    Home | Section 9 Styles
    Industrywide Impact Sticky
-----------------------------*/

#industrywide-impact {
    --iw-card-height: clamp(500px, calc(100vh - 215px), 720px);
    --iw-card-width: min(1040px, calc(100vw - 220px));
    --iw-card-gap: 26px;
    --iw-peek: 84px;

    position: relative;
    height: 100vh;
    min-height: 720px;
    background-color: #EFEEFF;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
}

.iw-sticky-panel {
    width: 100%;
    height: 100%;
    min-height: 720px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 48px 80px 0;
}

.iw-header {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}
.iw-header h2 {
    color: var(--text-muted);
    margin: 0;
}

.iw-layout {
    position: relative;
    width: 100%;
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: 0;
}

.iw-cards-viewport {
    position: relative;
    width: var(--iw-card-width);
    height: calc(var(--iw-card-height) + var(--iw-card-gap) + var(--iw-peek));

    overflow: hidden;
    margin: 0 auto;
}

.iw-card {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: var(--iw-card-height);

    border-radius: 20px;
    overflow: hidden;

    transform-origin: center top;
    will-change: transform, opacity;

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.iw-card picture,
.iw-card picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.iw-card picture img {
    object-fit: cover;
}

.iw-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0) 100%
    );

    pointer-events: none;
}

.iw-card-label {
    position: absolute;
    left: 32px;
    bottom: 32px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.iw-card.is-active .iw-card-label {
    opacity: 1;
    transform: translateY(0);
}

.iw-card-icon {
    display: flex;
}

.iw-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.iw-card-label h3 {
    color: var(--white-color);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0;
}

.iw-card .main-cta {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 2;

    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        background-color 0.4s ease;
}

.iw-card.is-active .main-cta {
    opacity: 1;
    transform: translateY(0);
}

.iw-dots {
    position: absolute;
    top: 50%;
    right: clamp(30px, 6vw, 90px);
    z-index: 20;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    transform: translateY(-50%);
}

.iw-dot {
    width: 9px;
    height: 9px;
    padding: 0;

    border: none;
    border-radius: 50%;
    background-color: var(--theme-color);

    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        height 0.3s ease,
        border-radius 0.3s ease;
}

.iw-dot.active {
    height: 18px;
    border-radius: 20px;
    background-color: var(--btn-color);
    transform: scale(1.05);
}

.iw-dot:focus {
    outline: none;
}

@media (min-width: 992px) and (max-width: 1300px) {
    #industrywide-impact {
        --iw-card-height: clamp(330px, 50vh, 440px);
        --iw-peek: 72px;
    }

    .iw-sticky-panel {
        padding: 60px 64px;
    }

    .iw-layout {
        width: min(100%, 900px);
        padding-right: 58px;
    }

    .iw-card-label h3 {
        font-size: 22px;
    }
}

/*========================================
    Industrywide Impact - Width Based Responsive Fix
    Desktop only: 992px and above
========================================*/

/* Shared desktop behaviour */
@media (min-width: 992px) {
    #industrywide-impact {
        height: 100vh;
        background-color: #EFEEFF;
        border-radius: 20px;
        overflow: hidden;
    }

    .iw-sticky-panel {
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding-left: var(--iw-side-pad);
        padding-right: var(--iw-side-pad);
        padding-top: var(--iw-top-pad);
        padding-bottom: 0;
    }

    .iw-header {
        width: 100%;
        text-align: center;
        flex-shrink: 0;
        margin-bottom: var(--iw-title-gap);
    }

    .iw-header h2 {
        margin: 0;
    }

    .iw-layout {
        position: relative;
        width: 100%;
        flex: 1;

        display: flex;
        justify-content: center;
        align-items: flex-start;

        padding: 0;
        overflow: visible;
    }

    .iw-cards-viewport {
        position: relative;
        width: var(--iw-card-width);

        /*
            This is the key:
            viewport fills the remaining screen height under the title.
            So the next card emerges from the floor.
        */
        height: calc(100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap));

        overflow: hidden;
        margin: 0 auto;
    }

    .iw-card {
        height: var(--iw-card-height);
    }

    .iw-dots {
        position: absolute;
        top: 50%;
        right: var(--iw-dot-right);
        transform: translateY(-50%);
        z-index: 20;
        gap: var(--iw-dot-gap);
    }
}


/* 1680px and above */
@media (min-width: 1601px) {
    #industrywide-impact {
        --iw-side-pad: 80px;
        --iw-top-pad: 48px;
        --iw-title-height: 38px;
        --iw-title-gap: 34px;

        --iw-card-width: 1040px;
        --iw-card-gap: 26px;
        --iw-peek: 84px;

        --iw-card-height: calc(
            100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap) - var(--iw-card-gap) - var(--iw-peek)
        );

        --iw-dot-right: clamp(90px, 7vw, 140px);
        --iw-dot-gap: 22px;
    }
}


/* 1441px to 1600px */
@media (min-width: 1441px) and (max-width: 1600px) {
    #industrywide-impact {
        --iw-side-pad: 72px;
        --iw-top-pad: 46px;
        --iw-title-height: 38px;
        --iw-title-gap: 32px;

        --iw-card-width: 980px;
        --iw-card-gap: 25px;
        --iw-peek: 82px;

        --iw-card-height: calc(
            100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap) - var(--iw-card-gap) - var(--iw-peek)
        );

        --iw-dot-right: clamp(90px, 7vw, 130px);
        --iw-dot-gap: 21px;
    }
}


/* 1301px to 1440px */
@media (min-width: 1301px) and (max-width: 1440px) {
    #industrywide-impact {
        --iw-side-pad: 64px;
        --iw-top-pad: 42px;
        --iw-title-height: 38px;
        --iw-title-gap: 30px;

        --iw-card-width: 900px;
        --iw-card-gap: 24px;
        --iw-peek: 78px;

        --iw-card-height: calc(
            100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap) - var(--iw-card-gap) - var(--iw-peek)
        );

        --iw-dot-right: clamp(95px, 7vw, 125px);
        --iw-dot-gap: 20px;
    }

    .iw-card-label {
        left: 28px;
        bottom: 28px;
    }

    .iw-card-label h3 {
        font-size: 22px;
        line-height: 1.25;
    }

    .iw-card .main-cta {
        right: 28px;
        bottom: 28px;
    }
}


/* 1200px to 1300px */
@media (min-width: 1200px) and (max-width: 1300px) {
    #industrywide-impact {
        --iw-side-pad: 48px;
        --iw-top-pad: 40px;
        --iw-title-height: 38px;
        --iw-title-gap: 28px;

        --iw-card-width: 820px;
        --iw-card-gap: 22px;
        --iw-peek: 72px;

        --iw-card-height: calc(
            100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap) - var(--iw-card-gap) - var(--iw-peek)
        );

        --iw-dot-right: clamp(100px, 8vw, 130px);
        --iw-dot-gap: 18px;
    }

    .iw-card-label {
        left: 24px;
        bottom: 24px;
    }

    .iw-card-label h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .iw-card .main-cta {
        right: 24px;
        bottom: 24px;
    }
}


/* 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #industrywide-impact {
        --iw-side-pad: 36px;
        --iw-top-pad: 36px;
        --iw-title-height: 38px;
        --iw-title-gap: 26px;

        --iw-card-width: 720px;
        --iw-card-gap: 20px;
        --iw-peek: 64px;

        --iw-card-height: calc(
            100vh - var(--iw-top-pad) - var(--iw-title-height) - var(--iw-title-gap) - var(--iw-card-gap) - var(--iw-peek)
        );

        --iw-dot-right: clamp(85px, 8vw, 110px);
        --iw-dot-gap: 16px;
    }

    .iw-card-label {
        left: 22px;
        bottom: 22px;
    }

    .iw-card-icon img {
        width: 32px;
        height: 32px;
    }

    .iw-card-label h3 {
        font-size: 20px;
        line-height: 1.2;
    }

    .iw-card .main-cta {
        right: 22px;
        bottom: 22px;
        padding: 7px 12px;
    }
}


/* Mobile Industrywide Impact */

#industrywide-impact-mobile {
    position: relative;
    background-color: #EFEEFF;
    border-radius: 20px;
    margin-top: -40px;
}

.industrywide-impact-card {
    position: relative;
}

.industrywide-impact-card picture,
.industrywide-impact-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.industrywide-impact-card picture img {
    object-fit: cover;
}

.industrywide-card-label {
    position: absolute;
    bottom: 45px;
    left: 25px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.industrywide-card-label br {
    display: block;
}

.industrywide-card-icon {
    display: flex;
}

.industrywide-card-label h2 {
    color: #ffffff;
}

.industrywide-impact-mobile-swiper {
    width: 100%;
    overflow: hidden;
}

.industrywide-pagination {
    text-align: center;
    margin-top: 45px;
}





/*========================================
    FINAL FIX — Industrywide Impact Mobile Stack
    tighter title/card spacing + no bleed into next section
========================================*/

@media (max-width: 991.98px) {
    #industrywide-impact-mobile {
        position: relative;
        background-color: #EFEEFF;
        border-radius: 20px;
        margin-top: -40px;

        /* tighter top spacing, extra bottom scroll stays inside this section */
        padding: 26px 10px clamp(260px, 34vh, 360px);

        overflow: visible !important;
        z-index: 3;
    }

    #industrywide-impact-mobile .section-header {
        position: relative;
        z-index: 100;

        /* this was too much before */
        padding-bottom: 14px !important;
        margin-bottom: 0 !important;

        background-color: #EFEEFF;
    }

    #industrywide-impact-mobile .section-header h2 {
        margin-bottom: 0;
    }

    #industrywide-impact-mobile .industrywide-scroll-cards {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
        overflow: visible !important;
    }

    #industrywide-impact-mobile .industrywide-scroll-cards-relative {
        position: relative;
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
        overflow: visible !important;
    }

    #industrywide-impact-mobile .industrywide-card-wrapper {
        width: 100%;

        /* same dimensions as your previous preferred style */
        height: clamp(390px, 68svh, 560px);

        perspective: 700px;

        /* reduced so the stack feels tighter */
        margin-bottom: 42px;

        position: relative;
        overflow: visible !important;
    }

    #industrywide-impact-mobile .industrywide-card-wrapper:last-child {
        margin-bottom: 0;
    }

    #industrywide-impact-mobile .industrywide-impact-card,
    #industrywide-impact-mobile .industrywide-impact-card.is-second,
    #industrywide-impact-mobile .industrywide-impact-card.is-third,
    #industrywide-impact-mobile .industrywide-impact-card.is-fourth,
    #industrywide-impact-mobile .industrywide-impact-card.is-fifth {
        position: relative !important;
        top: auto !important;
        left: auto !important;

        width: 100%;
        height: 100%;

        border-radius: 28px;
        overflow: hidden;
        background-color: #000;

        box-shadow: 2px 4px 30.9px 6px rgba(0, 0, 0, 0.14);

        transform: none;
        transform-origin: top center;
        will-change: transform;
    }

    #industrywide-impact-mobile .industrywide-impact-card picture,
    #industrywide-impact-mobile .industrywide-impact-card picture img {
        display: block;
        width: 100%;
        height: 100%;
    }

    #industrywide-impact-mobile .industrywide-impact-card picture img {
        object-fit: cover;
    }

    #industrywide-impact-mobile .industrywide-impact-card::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;

        background: linear-gradient(
            360deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.30) 48%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    #industrywide-impact-mobile .industrywide-card-label {
        position: absolute;
        left: 22px;
        right: 22px;
        bottom: 28px;
        z-index: 2;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;

        opacity: 1;
        transform: none;
    }

    #industrywide-impact-mobile .industrywide-card-label br {
        display: block;
    }

    #industrywide-impact-mobile .industrywide-card-icon {
        display: flex;
    }

    #industrywide-impact-mobile .industrywide-card-icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    #industrywide-impact-mobile .industrywide-card-label h2 {
        color: #ffffff;
        margin: 0;
        font-size: 32px;
        line-height: 1.08;
    }

    #industrywide-impact-mobile .industrywide-card-label .main-cta {
        margin-top: 6px;
    }
}

@media (max-width: 545px) {
    #industrywide-impact-mobile {
        padding-top: 22px;
        padding-bottom: clamp(240px, 32vh, 330px);
    }

    #industrywide-impact-mobile .section-header {
        padding-bottom: 12px !important;
    }

    #industrywide-impact-mobile .industrywide-card-wrapper {
        height: clamp(390px, 68svh, 520px);
        margin-bottom: 34px;
    }

    #industrywide-impact-mobile .industrywide-impact-card {
        border-radius: 24px;
    }

    #industrywide-impact-mobile .industrywide-card-label {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    #industrywide-impact-mobile .industrywide-card-label h2 {
        font-size: 30px;
    }

    #industrywide-impact-mobile .industrywide-card-icon img {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 390px) {
    #industrywide-impact-mobile {
        padding-bottom: 230px;
    }

    #industrywide-impact-mobile .industrywide-card-wrapper {
        height: 390px;
        margin-bottom: 30px;
    }
}

/* Reduce space below final mobile Industrywide card */
@media (max-width: 991.98px) {
    #industrywide-impact-mobile {
        padding-bottom: 42px !important;
    }

    #industrywide-impact-mobile .industrywide-card-wrapper:last-child {
        margin-bottom: 40px !important;
    }

    #industrywide-impact-mobile .industrywide-scroll-cards-relative {
        padding-bottom: 10px !important;
    }
}

@media (max-width: 545px) {
    #industrywide-impact-mobile {
        padding-bottom: 34px !important;
    }
}


















/*==================================================
    About Us Styles
==================================================*/


/*-----------------------------
    About-us | Section 1 Styles
-----------------------------*/

#au-banner {
    padding-bottom: 45px;
}


#au-banner .banner-background {
    position: relative;
}

#au-banner .banner-content {
    position: absolute;
    top: 30%;
    left: 6%;
}

#au-banner .banner-text {
    color: var(--white-color);
}

#au-banner .green {
    color: var(--btn-color);
    margin: 0;
}



.essel-mining-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.essel-mining-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 20px;
}

.essel-mining-content h3 {
    font-weight: 400;
    color: var(--white-color);
}




/*-----------------------------
    About-us | Section 2 Styles
-----------------------------*/

#global-legacy {
    background-color: #EFEEFF;
    border-radius: 20px;
}


.ABG-logo {
    width: 40%;
}

.global-legacy-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.glance {
    padding-bottom: 20px;
}

.metrics-box h2 {
    color: var(--theme-color);
}

/* .metrics-box span {
    color: var(--theme-color);
    font-weight: 700;
    font-size: 17px;
} */


/*-----------------------------
    About-us | Section 3 Styles
-----------------------------*/

#forged-in-pressure {
    position: relative;
    margin: 60px 0;
}

.forged-in-pressure-image-left {
    position: absolute;
    left: 0;
    top: 0;
}

.forged-in-pressure-image-left picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.forged-in-pressure-image-right {
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 1300px) {
    .forged-in-pressure-image-left {
        width: 35%;
    }
    .forged-in-pressure-image-right {
        width: 35%;
    }
}

@media (max-width: 991px) {
    .forged-in-pressure-image-left {
        width: 100%;
    }
    .forged-in-pressure-image-right {
        width: 100%;
    }
}

.forged-in-pressure-image-right picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.forged-in-pressure-center-box {
    background-color: var(--theme-color);
    padding: 6rem;
    border-radius: 20px;
    margin-top: 60px;
}

.forged-in-pressure-center-box h2,
.forged-in-pressure-center-box p {
    color: var(--white-color);
    text-align: center;
}


/*-----------------------------
    About-us | Section 4 Styles
-----------------------------*/

.leadership-profiles-swiper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 20px;
}

.leadership-profile-card {
    position: relative;
}

.leadership-profile-card picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.lp-tag-text {
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    justify-content: space-between;
}

.lp-tag-text p {
    color: var(--white-color);
}

.linked-in {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.swiper-navigations-3{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.leadership-profiles-pagination {
    text-align: center;
    width: auto !important;
}


/*-----------------------------
    About-us | Section 5 Styles
-----------------------------*/


#manufacturing-capabilities .section-bottom {
    position: relative;
}

#manufacturing-capabilities {
    background-color: var(--theme-color);
    border-radius: 20px;
}

#manufacturing-capabilities .section-top {
    border-bottom: 1px solid var(--white-color);
    padding: 0 0 50px 0;
}

#manufacturing-capabilities .section-top p {
    color: var(--white-color);
}

#manufacturing-capabilities .section-bottom {
    padding-top: 50px;
}

#manufacturing-capabilities .section-bottom .section-header h2 {
    color: var(--white-color);
    font-size: 28px;
    font-weight: 600;
}

.step-bubbles {
    padding-top: 50px;
    justify-content: space-between;
    z-index: 100;
}

.step-bubble {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.step-content h2 {
    font-weight: 600;
    font-size: 28px;
}

.step-content h2,
.step-content p {
    text-align: center;
    color: var(--white-color);
}


/*-----------------------------
    About-us | Section 6 Styles
-----------------------------*/

#quality-control .section-header {
    padding-bottom: 20px;
}

#quality-control {
    padding-bottom: 0px;
}

.quality-control-points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.quality-control-point {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #EFEEFF;
    padding: 10px 20px;
    border-radius: 40px;
    width: fit-content
}

.quality-control-point .point-text p {
    font-size: 16px;
    color: var(--theme-color);
    margin-bottom: -2px;
}

.quality-control-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}


/*==================================================
    Sustainability Styles
==================================================*/


/*--------------------------------------
    Sustainability | Section 1 Styles
--------------------------------------*/

.sustainable-FV {
    padding-top: 45px;
}

.sustainable-FV-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.sustainable-FV-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.sustainable-FV-content h2 {
    font-size: 36px;
    line-height: 42px;
}

/*--------------------------------------
    Sustainability | Section 2 Styles
--------------------------------------*/

#new-era {
    background-color: #EFEEFF;
    border-radius: 20px;
    padding-bottom: 100px;
}

#new-era .section-header {
    padding-bottom: 60px;
}

#new-era .section-header h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

#new-era .section-header p {
    font-size: 14px;
    line-height: 23px;
    color: var(--text-muted);
}

.sustainability-highlights {
    padding-right: 40px;
}

.highlights-title {
    font-size: 20px;
    line-height: 28px;
    color: var(--text-muted);
    margin-bottom: 70px;
    font-weight: 400;
}
.highlights-tabs {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 280px;
    overflow: hidden;
}

.tab-button {
    --tab-order: 0;
    --tab-opacity: 0.35;

    order: var(--tab-order);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0;
    margin: 0 0 34px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-align: left;
    opacity: var(--tab-opacity);

    transition:
        opacity 0.35s ease,
        color 0.35s ease,
        transform 0.52s cubic-bezier(0.4, 0, 0.2, 1),
        margin 0.35s ease;
}

.tab-button:hover {
    opacity: 0.85;
}

.tab-button:focus-visible {
    outline: 3px solid rgba(102, 0, 204, 0.25);
    outline-offset: 8px;
    border-radius: 8px;
}

.tab-button .tab-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
}

.tab-button .tab-icon img {
    width: 38px;
    height: auto;
    display: block;
}

.tab-button .tab-label {
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-muted);
    transition:
        color 0.35s ease,
        font-size 0.35s ease,
        line-height 0.35s ease;
}

.tab-button .hrline {
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: width 0.35s ease;
}

.tab-button.active {
    --tab-opacity: 1;
    margin-bottom: 42px;
}

.tab-button.active .tab-icon {
    display: flex;
}

.tab-button.active .tab-label {
    color: var(--theme-color);
    font-size: 36px;
    line-height: 42px;
}

.tab-button.active .hrline {
    width: 340px;
    max-width: 100%;
}

/* Depth opacity after the fake list movement */
.tab-button[data-depth="0"] {
    --tab-opacity: 1;
}

.tab-button[data-depth="1"] {
    --tab-opacity: 0.82;
}

.tab-button[data-depth="2"] {
    --tab-opacity: 0.45;
}

.tab-button[data-depth="3"] {
    --tab-opacity: 0.18;
}

/* Scroll-progress movement */
.highlights-tabs.scrolling-down .tab-button {
    animation: newEraScrollDown 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlights-tabs.scrolling-up .tab-button {
    animation: newEraScrollUp 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes newEraScrollDown {
    0% {
        transform: translateY(28px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes newEraScrollUp {
    0% {
        transform: translateY(-28px);
    }

    100% {
        transform: translateY(0);
    }
}

.sustainability-visual {
    position: relative;
    padding-left: 20px;
}

.visual-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.visual-image picture {
    display: block;
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.visual-image img.is-changing {
    opacity: 0;
    transform: scale(1.025);
}

.visual-card {
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 240px;
    min-height: 260px;
    background: linear-gradient(145deg, #6600CC 0%, #07BE0E 115%);
    border-radius: 8px;
    padding: 34px 30px 28px;
    box-shadow: 0 8px 24px rgba(102, 0, 204, 0.22);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.visual-card.is-changing {
    opacity: 0;
    transform: translateY(18px);
}

.visual-card .card-icon {
    margin-bottom: 16px;
}

.visual-card .card-icon img {
    width: 46px;
    height: auto;
    display: block;
}

.card-title {
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 22px;
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 0;
}

.card-green-line {
    display: block;
    width: 55px;
    height: 4px;
    margin: 26px 0 18px;
    background-color: var(--btn-color);
    border-radius: 20px;
}

.card-description {
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 17px;
    color: var(--white-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    #new-era {
        padding-bottom: 120px;
    }

    .sustainability-highlights {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .highlights-title {
        margin-bottom: 35px;
    }

    .highlights-tabs {
        min-height: auto;
    }

    .sustainability-visual {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    #new-era .section-header h2 {
        font-size: 30px;
        line-height: 36px;
    }

    #new-era .section-header p br {
        display: none;
    }

    .tab-button {
        margin-bottom: 26px;
    }

    .tab-button .tab-label {
        font-size: 20px;
        line-height: 26px;
    }

    .tab-button.active .tab-label {
        font-size: 28px;
        line-height: 34px;
    }

    .tab-button.active .hrline {
        width: 260px;
    }

    .visual-card {
        right: 20px;
        bottom: -70px;
        width: 220px;
        min-height: auto;
        padding: 26px 24px;
    }
}

/*--------------------------------------
    Sustainability | Section 3 Styles
--------------------------------------*/

#green-FV {
    padding-bottom: 0px;
}

.green-FV-box {
    padding: 0 0 0 3rem;
    height: 100%;
    margin: 0 auto;
    border-right: 1px solid var(--text-muted);
}

.green-FV-box h2 {
    font-size: 36px;
    line-height: 42px;
    color: var(--theme-color);
}

.border-less {
    border: none !important;
}

#green-FV .section-header {
    padding-bottom: 60px;
}


/*==================================================
    Applications Styles
==================================================*/


/*--------------------------------------
    Applications | Section 2 Styles
--------------------------------------*/


#applications-list .section-header {
    padding-bottom: 30px;
}

.application-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.application-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.application-content .is-bold {
    font-weight: 700;
    margin-bottom: -3px;
}


/*--------------------------------------
    Applications | Section 3 Styles
--------------------------------------*/


.verifiable-quality-content {
    width: 100%;
    background-color: #EFEEFF;
    border-radius: 20px;
    padding: 5rem;
}

#verifiable-quality .action-buttons {
    padding-top: 1rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

#verifiable-quality .main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

#verifiable-quality .main-cta .main-btn-label {
    margin-top: 1px;
}

#verifiable-quality .main-cta .action-rep {
    padding-right: 15px;
}

#verifiable-quality .main-cta .action-arrow {
    padding-left: 15px;
}

.main-cta.download-btn:hover {
    background-color: var(--btn-color);
}


/*--------------------------------------
    Applications | Section 4 Styles
--------------------------------------*/


/* #real-world-performance {
    padding-bottom: 45px;
} */


#real-world-performance .section-top {
    padding-bottom: 45px;
}

#real-world-performance .section-header h2 {
    color: var(--text-muted);
}

.r-w-p-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.card-bubble-text {
    background-color: var(--theme-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 10px;
}

.r-w-p-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.r-w-p-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.r-w-p-content .main-cta {
    padding: 10px 12px;
}

.r-w-p-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}


/*==================================================
    Product Styles
==================================================*/


.product-listing {
    padding: 3rem;
    background-color: #EFEEFF;
    border-radius: 20px;
    margin: 30px 0;
}

.product-swiper-pagination {
    padding-top: 20px;
}

.product-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--text-muted);
    margin: 0 12px !important;
}

.product-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
}

.product-swiper picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

/* .product-overview {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
} */

.product-overview {
    border-bottom: 2px solid var(--theme-color);
    padding-bottom: 10px;
}

.overview-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overview-title h2 {
    font-size: 36px;
}


.product-applications {
    border-bottom: 2px solid var(--theme-color);
    padding-bottom: 10px;
}

.product-applications h3 {
    font-size: 20px;
    padding: 20px 0;
}

.applications-rep {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.application-rep {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.application-rep p {
    text-align: center;
}

.product-info .action-buttons {
    padding-top: 35px;
}

.product-info .action-buttons .main-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


/*==================================================
    Media Styles
==================================================*/


/*--------------------------------------
    Media | In the News Styles
--------------------------------------*/


#show-more-articles {
    display: flex;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transition: max-height 0.8s ease, opacity 0.5s ease, transform 0.6s ease;
    padding: 45px 0;
}

#show-more-articles.is-open {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}



#media-filter {
    padding: 10px 0 40px;
}

.media-filter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown-toggle {
    border: none;
    background: transparent;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.filter-label {
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 20px;
}

.filter-value {
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 20px;
}

.filter-arrow {
    color: var(--theme-color);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.filter-dropdown.open .filter-arrow {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 130px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: all 0.25s ease;
}

.filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.filter-dropdown-menu li {
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 23px;
    padding: 7px 14px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.filter-dropdown-menu li:hover,
.filter-dropdown-menu li.active {
    color: var(--theme-color);
    background-color: #EFEEFF;
}


/*--------------------------------------
    Media | Case Studies Styles
--------------------------------------*/

#media-filter-2 {
    padding: 10px 0 40px;
    margin-top: -60px;
}

#media-filter-2 .media-filter-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

#media-filter-2 .filter-dropdown {
    position: relative;
}

#media-filter-2 .filter-dropdown-toggle {
    border: none;
    background: transparent;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

#media-filter-2 .filter-label {
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 20px;
}

#media-filter-2 .filter-value {
    color: var(--theme-color);
    font-family: var(--heading-font);
    font-size: 20px;
}

#media-filter-2 .filter-arrow {
    color: var(--theme-color);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

#media-filter-2 .filter-dropdown.open .filter-arrow {
    transform: rotate(180deg);
}

#media-filter-2 .filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 130px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: all 0.25s ease;
}

#media-filter-2 .filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

#media-filter-2 .filter-dropdown-menu li {
    color: var(--text-muted);
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 23px;
    padding: 7px 14px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

#media-filter-2 .filter-dropdown-menu li:hover,
#media-filter-2 .filter-dropdown-menu li.active {
    color: var(--theme-color);
    background-color: #EFEEFF;
}


.infrastructure-studies .r-w-p-card {
    transition: all ease 0.3s;
    border-radius: 20px;
    justify-content: unset;
}
.infrastructure-studies .r-w-p-content-inner {
    gap: 1rem;
}

.infrastructure-studies .r-w-p-card:hover {
    box-shadow: 0px 0px 34px #0000002E;
}


/* Case study cards - fixed screenshot-like proportion */
.infrastructure-studies .r-w-p-card {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}



.infrastructure-studies .r-w-p-image picture,
.infrastructure-studies .r-w-p-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.infrastructure-studies .r-w-p-image img {
    object-fit: cover;
    border-radius: 20px;
}

.infrastructure-studies .r-w-p-content {
    flex: 1 1 auto;
    min-width: 0;
}

.infrastructure-studies .r-w-p-content h3 {
    margin-bottom: 0;
}

/*--------------------------------------
    Case Study Styles
--------------------------------------*/

#non-banner-top .breadcrumb-item {
    display: flex;
    align-items: baseline;
}

#non-banner-top .breadcrumb-item a {
    color: var(--text-muted);
    font-size: 11px;
}

#non-banner-top .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
    font-size: 11px;
}

.case-study-overview-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.case-study-overview-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-content {
    background-color: #EFEEFF;
    border-radius: 20px;
    padding: 80px 100px;
}

.quote-box {
    padding: 0.5rem 0.5rem 0.5rem 7.5rem;
    border-left: 2px solid var(--btn-color);
}

.quote-box p {
    color: var(--btn-color);
}


.solutions-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

#conclusion {
    padding-bottom: 60px;
}

.conclusion-content {
    background-color: #EFEEFF;
    border-radius: 20px;
    padding: 60px;
}

.conclusion-content .section-header {
    padding-bottom: 45px;
}

.conclusion-title h2 {
    color: var(--theme-color);
}

/*==========================================
    Blog Styles
==========================================*/


.blog-title-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-title-stack .socials {
    display: flex;
    gap: 0.75rem;
}

.blog-page-image picture {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

#blog-content .para-2 {
    padding-top: 25px;
}

#related-blogs .section-header {
    padding-bottom: 35px;
}


/*==========================================
    Contact Styles
==========================================*/

#contact h1 {
    color: var(--text-muted);
}

.contact-details-left .section-header {
    padding-bottom: 35px;
}


.contact-details-left .sub-heading img {
    margin-bottom: 10px;
}

.contact-details-left a {
    color: var(--text-muted);
}

@media (max-width: 992px) {

    .contact-details-left .sub-contact {
        display: flex;
        align-items: flex-start;
        padding: 20px 25px 5px;
        border-radius: 20px;
        background-color: #EFEEFF;
        margin-bottom: 15px;
    }

    .sub-contact .sub-contact-more {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
    }

    .contact-details-left .office-hours {
        margin-bottom: 0;
        padding-bottom: 25px;
    }

}

.sub-contact {
    border-bottom: 1px solid var(--text-muted);
}

.contact-details-left .phone,
.contact-details-left .location,
.contact-details-left .office-hours {
    padding-top: 25px;
}

.contact-details-left .office-hours {
    padding-bottom: 1rem;
}



.contact-details-left .office-hours td {
    font-family: var(--body-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0;
    text-decoration: none;
    color: var(--text-muted);
}

@media (min-width: 992px) and (max-width: 1300px) {
    .contact-details-left .office-hours td {
        font-size: 12px;
    }
}

/*--------------------------------------
    Contact | Send a Message Form
--------------------------------------*/

.send-a-message {
    background-color: #EFEEFF;
    border-radius: 20px;
    padding: 4rem;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h2 {
    font-size: 32px;
    line-height: 38px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-form-header p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 23px;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.contact-form .form-control {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 8px;
    background-color: var(--white-color);
    padding: 14px 24px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-muted);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: #b8b8b8;
}

.contact-form .form-control:focus {
    border: none;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 0, 204, 0.08);
}

.contact-form textarea.form-control {
    min-height: 85px;
    resize: none;
}


/* Custom Dropdown */

.contact-form-dropdown {
    position: relative;
    width: 100%;
}

.contact-form-dropdown .filter-dropdown-toggle {
    width: 100%;
    min-height: 50px;
    border: none;
    border-radius: 8px;
    background-color: var(--white-color);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.contact-form-dropdown .filter-value {
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 23px;
    color: #b8b8b8;
}

.contact-form-dropdown .filter-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-form-dropdown .filter-arrow img {
    width: 14px;
    height: auto;
    display: block;
}

.contact-form-dropdown.open .filter-arrow {
    transform: rotate(180deg);
}

.contact-form-dropdown .filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(8px);
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: all 0.25s ease;
}

.contact-form-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.contact-form-dropdown .filter-dropdown-menu li {
    color: var(--text-muted);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 23px;
    padding: 9px 14px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.contact-form-dropdown .filter-dropdown-menu li:hover,
.contact-form-dropdown .filter-dropdown-menu li.active {
    color: var(--theme-color);
    background-color: #EFEEFF;
}


/* Submit Button */

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: none;
    background-color: var(--btn-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 11px 15px;
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background-color: var(--theme-color);
}

.contact-submit-btn span {
    color: var(--white-color);
}

.submit-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submit-arrow img {
    width: 11px;
    height: 11px;
    display: block;
}

.privacy-note {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
    color: var(--text-muted);
}



.faq-content {
    padding: 60px 270px;
    background-color: #EFEEFF;
    border-radius: 20px;
}


.faq-content .section-header {
    padding-bottom: 30px;
}

.faq-content .accordion-item {
    margin: -17px;
}



/*==========================================
    Resources Styles
==========================================*/


.resources-tabs {
    display: flex;
    gap: 1.5rem;
}

.resource-tab {
    border: none;
}

.green-hr-line {
    margin-top: -5px;
    height: 2px;
    width: inherit;
    background-color: var(--btn-color);
    opacity: 0;
}

.resource-tab.active h3 {
    color: var(--theme-color);
}

.resource-tab.active .green-hr-line {
    opacity: 1;
}

.resources-tabs {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 45px;
}

.resource-tab.active::after {
    width: 100%;
}

.resources-title {
    margin-bottom: 30px;
}

.resources-card-row {
    padding-top: 15px;
}


.resource-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    border-radius: 10px;
    padding: 30px 30px;
    background-color: #EFEEFF;
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}

/* Gradient overlay */
.resource-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(47.25deg, #6600CC 0.4%, #07BE0E 115.18%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

/* Fade gradient in */
.resource-card:hover::before {
    opacity: 1;
}

.resource-card:hover {
    box-shadow: 0px 30px 34px 0px #0000002E;
}

/* Keep content above gradient */
.resource-card > * {
    position: relative;
    z-index: 1;
}

.resource-download p {
    color: var(--theme-color);
}

.resource-card:hover p {
    color: var(--white-color);
}

.resource-card:hover h3 {
    color: var(--white-color);
}

.resource-card h3 {
    color: var(--theme-color);
}

.resource-download {
    display: flex;
    gap: 0.5rem;
}

.resource-card-line {
    height: 2px;
    width: 50px;
    background-color: var(--btn-color);
    margin: 15px 0;
}

.resource-tab-content .show-more-button {
    margin-top: 60px;
}

.resource-tab-content {
    display: none;
}

.resource-tab-content.active {
    display: block;
}




.invest-metric h3 {
    color: var(--theme-color);
}


.invest-metrics {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
}

/*=====================================
    Investors | Reports Tabs Section
=====================================*/


.reports-wrapper {
    align-items: flex-start;
}

/* Left tabs */
.reports-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

/* Individual tab button */
.reports-tab {
    border: 0;
    background: transparent;
    padding: 0 0 8px;
    margin: 0;

    cursor: pointer;
    position: relative;

    display: inline-flex;
    align-items: flex-start;
    width: fit-content;

    text-align: left;
    box-shadow: none;
    outline: none;
}

/* Keep h3 inside the button */
.reports-tab h3 {
    margin: 0;
    padding: 0;

    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;

    color: var(--text-muted);
    transition: color 0.3s ease;
}

/* Green underline */
.reports-tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background-color: var(--btn-color);
    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

/* Active tab */
.reports-tab.active::after {
    transform: scaleX(1);
}

.reports-tab.active h3 {
    color: var(--theme-color);
}

/* Optional hover */
.reports-tab:hover h3 {
    color: var(--theme-color);
}

/* Right content box */
.reports-content {
    background-color: #EFEEFF;
    border-radius: 8px;
    padding: 40px;
    min-height: 620px;
}

/* Hide inactive panels */
.reports-panel {
    display: none;
}

.reports-panel.active {
    display: block;
}

.reports-panel h2 {
    margin-bottom: 30px;
}
.report-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 90px 90px 30px 30px;
    background-color: var(--white-color);
    overflow: hidden;
    transition: box-shadow 0.5s ease;
}

/* Gradient overlay */
.report-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(47.25deg, #6600CC 0.4%, #07BE0E 115.18%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

/* Fade gradient in */
.report-card:hover::before {
    opacity: 1;
}

.report-card:hover {
    box-shadow: 0px 30px 34px 0px #0000002E;
}

/* Keep card content above gradient */
.report-card > * {
    position: relative;
    z-index: 1;
}
.report-card:hover p {
    color: var(--white-color);
}

.report-card:hover h3 {
    color: var(--white-color);
}
.doc-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

/*==========================================
    Footer Styles
==========================================*/

#footer {
    padding: 45px 0 0 0;   /* bottom padding removed — footer-inner visually ends the page */
    margin-bottom: 0;
}

#footer .footer-inner {
    background: var(--theme-color);
    border-radius: 18px 18px 0 0;
    padding: 24px 28px 18px;
    overflow: hidden;
}

#footer .footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#footer .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo .socials-logos {
    display: flex;
    gap: 1.5rem;
}

#footer .footer-logo img {
    max-width: 190px;
    height: auto;
    display: block;
}

#footer .the-footer-links {
    display: flex;
    width: 70%;
    align-items: flex-start;
    justify-content: right;
}

#footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    width: 28%;
}

#footer .media-sub-links {
    opacity: 0.75;
}

#footer .footer-links li {
    margin: 0;
    padding: 0;
}

#footer .footer-links a {
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

#footer .footer-links a:hover {
    opacity: 0.75;
}

#footer .footer-bottom {
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

#footer .footer-bottom p {
    margin: 0;
    color: var(--white-color);
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
}



#footer .footer-top-mobile {
    display: flex;
    justify-content: center;
    padding: 20px 0 35px 0;
}

#footer .footer-inner-mobile {
    background: var(--theme-color);
    border-radius: 18px 18px 0 0;
    padding: 24px 28px 18px;
    overflow: hidden;
}

#footer .footer-middle-mobile {
    display: flex;
    align-items: flex-start;
    border-top: solid 1px var(--white-color);
    border-bottom: solid 1px var(--white-color);
    padding: 15px;
}

#footer .footer-links-mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px 30px;
    margin: 0;
    padding: 0;
    width: 100%;
}

#footer .footer-links-mobile li {
    margin: 0;
    padding: 0;
}

#footer .footer-links-mobile a {
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

#footer .footer-links-mobile a:hover {
    opacity: 0.75;
}

#footer .footer-bottom-mobile {
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

#footer .footer-bottom-mobile p {
    margin: 0;
    color: var(--white-color);
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
}
