html {
  font-size: 16px;
}

.page-wrapper {
  overflow-x: hidden;
}

:root {
  --accent: #ff6301;
  --dark: #0c0c0c;
  --white: #ffffff;
  --section-background: var(--white);
  --border-color: #cfcbc1;
  --text-color: #2a2218;
  --text-color-secondary: #1e1e1e;
  --muted-text: #d9d9d9;
  --border-radius: 0.75rem;
  --fs-12: 0.75rem;
  --fs-18: 1.125rem;

}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.is-home .menu-icon,
.is-home .menu-icon::before,
.is-home .menu-icon::after {
  background-color: #000;
}


.is-inner .menu-icon,
.is-inner .menu-icon::before,
.is-inner .menu-icon::after {
  background-color: #fff;
}

.is-inner .navbar-toggler[aria-expanded="true"] .menu-icon,
.is-inner .navbar-toggler[aria-expanded="true"] .menu-icon::before,
.is-inner .navbar-toggler[aria-expanded="true"] .menu-icon::after {
  background-color: #fff;
}


.hero {
  overflow: hidden;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* NAV */
.hero-nav {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-nav.nav-hidden {
  transform: translateY(-100%);
}


.hero-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.hero-nav.nav-scrolled .nav-link {
  color: var(--text-color) !important;
}

.navbar .nav-link.active {
  color: #111 !important;
}


.hero-nav.nav-scrolled .hero-logo {
  filter: brightness(0) invert(0);
}

.hero-nav.nav-scrolled .logo-main,
.hero-nav.nav-scrolled .logo-sub {
  color: var(--text-color);
}

.hero-nav.nav-scrolled .menu-icon,
.hero-nav.nav-scrolled .menu-icon::before,
.hero-nav.nav-scrolled .menu-icon::after {
  background-color: var(--text-color);
}


.hero-logo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #2a2218;
}

.page-hero .navbar .nav-link {
  color: #fff;

}

.logo-main {
  font-size: 1.1rem;
}

.logo-sub {
  font-size: 1.1rem;
}

.navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #222;

  padding: 0.45rem 0.9rem;
  border-radius: 3.125rem;

  background-color: transparent;

  transition: background-color 0.25s ease, color 0.25s ease;
  will-change: background-color;
}

.hero-pill {

  border-radius: 3.125rem;
  padding: 0.45rem 0.9rem !important;
  font-weight: 600;

}

.hero-pill,
.hero-pill.active {
  background-color: var(--accent);
  color: #111 !important;
}

.hero-top {
  background-image: url("../../assets/img/Hero1.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  min-height: 65vh;

  /* 420px */
  /* padding-top: 5.75rem; */

  padding: 0rem;

  /* 92px */
  position: relative;
  flex: 1;
  display: flex;
  /* padding-bottom: clamp(2rem, 6vw, 5rem); */
}

/* ACTIVE */
.navbar .nav-link.active {
  background-color: var(--accent);
  color: #111;
  /* font-weight: 600; */
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* HOVER */
.navbar .nav-link:hover {
  background: var(--accent);
  color: #111;

}




.offcanvas.custom-offcanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  overflow: hidden;
  background-color: transparent;
}

.offcanvas {
  transform: none !important;
  transition: none !important;
}



.offcanvas-inner {
  width: 100vw;
  height: 100vh;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  background-color: var(--white);
}

.offcanvas.custom-offcanvas.is-closing {
  transform: translateY(-100%);
  opacity: 0;
}



.offcanvas.show .offcanvas-inner {
  transform: translateY(0);
}



.offcanvas .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  opacity: 1;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.offcanvas .btn-close:hover {
  transform: scale(1.1);
}


.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.custom-offcanvas .nav-link {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  padding: 5px 0;
}



.custom-offcanvas .offcanvas-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  padding-bottom: 6rem;
}

.offcanvas .offcanvas-body ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;

}

.offcanvas .offcanvas-body ul .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px 0;
  transition: all 0.3s ease;
}

.offcanvas .offcanvas-body ul .nav-link:hover {
  color: var(--accent);
}




.custom-offcanvas .contact-link-wrapper {
  flex: 1;
  flex-shrink: 0;
  background-image: url("../img/contact2.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  margin-top: 0.75rem;
  display: flex;


}


.custom-offcanvas .contact-link-wrapper ul {
  align-items: start;
}

.custom-offcanvas .contact-link-wrapper .nav-link {
  margin-left: 0.75rem;
  font-size: 1.25rem;
  color: var(--white);

}

.navbar-toggler {
  border: none;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-icon {
  width: 1.25rem;
  height: 2px;
  background-color: var(--text-color);
  position: relative;
  transition: all 0.3s ease;

}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--text-color);
  width: 100%;
  top: 6px;
  transition: all 0.3s ease;
}

.menu-icon::after {
  top: -6px;
}

.menu-icon::before {
  top: 6px;
}



.navbar-toggler:hover .menu-icon {
  background-color: transparent;
}


.navbar-toggler:hover .menu-icon::after {
  top: 0;
  transform: rotate(90deg);
}

.navbar-toggler:hover .menu-icon::before {
  top: 0;
  transform: rotate(0deg);
}



/* TITLE */
.hero-title {
  font-family: "Casco Display Trial", sans-serif;
  font-weight: 600;
  /* font-size: 6rem;        
  line-height: 5.9375rem;    */
  letter-spacing: 0;
  color: #2a2218;
  /* transform: translateY(6.5rem); */
  /* font-size: clamp(3.5rem, 6vw, 6rem); */
  font-size: 6rem;
  margin-top: 5rem;
  line-height: 6rem;
}

.hero-title .accent {
  font-family: "Casco Display Trial", sans-serif;
  font-weight: 600;
  font-size: 6rem;
  line-height: 5.9375rem;

  background: linear-gradient(90deg, #ff6301, #ffaa00);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-bottom {
  background-color: #0b0b0b;
  background-image: url("../../assets/img/Frame.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  min-height: 35vh;
  display: flex;
  align-items: center;
  flex-shrink: 0;

  border-top: 0.0625rem solid rgba(255, 255, 255, 0.15);
  /* padding-top:4rem; */
  /* padding-bottom: 4rem; */
}

.hero-desc {
  font-family: "Casco Display Trial", sans-serif;

  font-size: 1.65rem;
  line-height: 1.35;
  color: #c3c3c3;

  text-align: justify;
  max-width: 54.3125rem;
}

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  background: var(--accent);
  color: #fff;

  font-size: 1rem;
  font-weight: 600;

  padding: 0.875rem 1.5rem;
  border-radius: 3.125rem;
  /* 50px */

  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.5s ease;
}

.hero-cta:hover {
  background: #ff6301;
  color: #111;
}

.hero-cta:hover i {
  color: #111 !important;
}

.hero-cta:hover span i {
  color: #111 !important;
}

.hero .hero-cta-icon {
  left: -24%;
}

.hero-cta-icon {
  width: 2.5rem;
  /* 40px */
  height: 2.5rem;

  border-radius: 50%;
  background: #ff6301;
  color: #fff;

  display: grid;
  place-items: center;

  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-cta-icon i {
  color: #fff !important;
  transition: all 0.5s ease;
}

@media (max-width: 61.998rem) {
  .hero-bottom {
    padding: 1.5rem 0;
  }

  .hero .hero-cta {
    margin-left: 4%;
  }

  .hero {
    max-height: 100%;
  }

  .navbar .nav-link {
    margin-bottom: 10px;
  }

  .navbar-collapse {
    padding: 24px 16px;
    border-radius: 20px;
    background-color: var(--white);
    margin-top: 10px;
  }
}

@media (max-width: 35.998rem) {
  .hero-cta {
    margin-top: 1rem;
  }

  .hero .hero-cta {
    margin-left: 6%;
  }
}

@media (max-width: 23.998rem) {
  .hero .hero-cta {
    margin-left: 8%;
  }
}

/* media query hero title */
/* @media (max-width: 2000px) {
  .hero-title {
    font-size: 3.8rem;    
    line-height: 1.1;
    margin-top: 4rem;
  }

  .hero-title .accent {
    font-size: 3.7rem;
    line-height: 1.1;
  }

    .hero-desc {
    font-size: 1.2rem;
    
  }

  
} */

@media (max-width: 1500px) {
  .hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-top: 4rem;
  }

  .hero-title .accent {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.1rem;
    line-height: 1.15;
    margin-top: 4rem;
  }

  .hero-title .accent {
    font-size: 3.1rem;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-top: 4rem;
  }

  .hero-title .accent {
    font-size: 3rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 1.05rem;
  }
}

/* operations-section */

.operations-section {
  background-image: url("../../assets/img/operations-section.png");
  background-size: cover;
  background-position: center;
  padding-top: 6rem;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.operations-section .row {
  display: flex;
  flex: 1;
  overflow: hidden;
  flex-wrap: wrap;
  height: 100%;
}

.operations-section .content-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.operations-section .content-col .right-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

/* LEFT COLUMN */
.operations-cards {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: auto;
}


.operations-cards::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.op-card {
  background: linear-gradient(180deg, #4b4b4b, #1f1f1f);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* INACTIVE */
.op-card:not(.active) {
  background: linear-gradient(180deg, #6c6c6c, #2b2b2b);
  opacity: 0.7;
}

.op-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 0;
}

/* BADGE */
.op-badge {
  font-size: 0.65rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
}

/* ACTIVE CARD */
.op-card.active {
  background: linear-gradient(180deg, #ff6301, #e55800);
  color: #fff;
}

.op-card.active p {
  font-size: 0.85rem;
  margin: 1rem 0;
}

/* FOOTER */
.op-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.op-footer strong {
  font-size: 1rem;
}

.op-footer span {
  font-size: 0.7rem;
  opacity: 0.9;
}

.op-arrow {
  width: 2.75rem;
  height: 2.75rem;

  border-radius: 50%;
  border: none;

  background: #ffffff;
  color: #ff7a00;

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

  cursor: pointer;
  transition: all 0.25s ease;
}

.op-arrow i {
  font-size: 1.1rem;
  font-weight: 700;
}

.op-arrow:hover {
  transform: translateX(2px);
  background: #fff;
}

/* RIGHT CONTENT */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #999;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

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

.section-desc {
  margin-top: 1.25rem;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 32rem;
  color: #2a2218;
  font-weight: 400;
}

.op-revenue {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.op-revenue strong {
  font-size: 1.25rem;
}

.op-revenue span {
  font-size: var(--fs-12);
  opacity: 0.85;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;

  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #999;
  font-weight: 400;
}

.section-eyebrow i {
  width: 2.2rem;
  height: 0.3rem;
  background: var(--accent);
  border-radius: 2rem;
  display: block;
}

.operations-section .hero-cta-icon {
  right: -24%;
}

@media (min-width: 1200px) {
  .section-title {
    font-size: 4rem;
  }
}

@media (max-width: 991px) {
  .operations-cards {
    max-height: none;
  }

  .operations-section {
    padding-top: 1rem;
  }

  .operations-section .content-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
  }

  .operations-section .content-col:nth-child(1) {
    order: 2;
  }

  .operations-section .content-col:nth-child(2) {
    order: 1;
  }

  .operations-section .row {
    flex-direction: column;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 500px) {
  .hero-cta {
    padding: 0.5rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 1.1rem;
  }
}

/* SECTION BASE */
.who-section {
  position: relative;
}

/* BACKGROUND IMAGE */

.who-bg {
  background: url("../../assets/img/who-we-are.png") center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: clamp(4rem, 8vw, 5rem) 0;
  color: #fff;
  background-attachment: fixed;
}

/* .who-header {
  max-width: 70rem;
} */

.who-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid #2a2218;
  border-radius: 6.25rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #2a2218;
  font-weight: 500;
}

.who-title {
  font-family: "Casco Display Trial", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 3.75rem;
  letter-spacing: 0;
  margin-bottom: 5rem;
  color: var(--accent);
}

.who-texts p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.who-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 10rem;
}

.who-card {
  position: relative;
  padding: 1.5rem 1.75rem;
  min-height: 7rem;

  background: rgba(25, 25, 25, 0.7);
  backdrop-filter: blur(6px);

  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  gap: 2.2rem;
}

.who-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
}

.who-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.who-arrow {
  font-size: 1.7rem;
  font-weight: lighter;
  color: var(--accent);
  opacity: 0;
  transition: all 0.3s ease;
  align-self: center;
}

.who-card.active {
  background: rgba(120, 120, 120, 0.35);
}

.who-card.active .who-line {
  background: var(--accent);
}

.who-card.active .who-arrow {
  opacity: 1;
}

.who-card:hover {
  background: rgba(120, 120, 120, 0.35);
}

.who-card:hover .who-line {
  background: var(--accent);
}

.who-card:hover .who-arrow {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-cards-row {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-cards-row {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-hover-card {
    padding: 1.25rem 1.5rem;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-bg {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .who-hover-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .who-cards-row {
    margin-top: 6rem;
  }

  .who-title {
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}

/* SECTION strategic*/
.strategic-section {
  background: #fff;
  padding: clamp(4rem, 8vw, 5rem) 0;
}

/* HEADER */
.strategic-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 2px solid #cfcbc1;
  border-radius: 6.25rem;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #2a2218;
  font-weight: 500;
}

.strategic-text {
  font-family: "Casco Display Trial", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  /* line-height: 3.125rem; */
  letter-spacing: 0;
  color: #2a2218;
  max-width: 45rem;
}

.strategic-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1.5px solid #cfcbc1;
  background: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
}

.strategic-card i {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.35s ease;
}

.strategic-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10rem;
}

.strategic-card p {
  font-size: 1.2rem;
  /* line-height: 1.55; */
  color: #2a2218;
  font-weight: 400;
}

.strategic-card.active {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.strategic-card.active h4,
.strategic-card.active p {
  color: #111;
}

.strategic-card.active i {
  font-size: 3rem;
}

.strategic-card:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.strategic-card:hover h4,
.strategic-card:hover p {
  color: #111;
}

.strategic-card:hover i {
  font-size: 3rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .strategic-text {
    font-size: 1rem;
  }
}

/* ===================== approach section ================ */

.approach-section{
  height: 100dvh;
  background-color: var(--section-background);
  padding-top: 6.25rem;
  overflow: hidden;
  scrollbar-width: none;
}


.approach-section .row{
    display: flex;
    flex: 1;
    overflow: hidden;
    flex-wrap: wrap;
    height: 100%;
}

.approach-section .content-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.approach-section .main-content {
  padding-top: 10rem;
}

.section-badge {
  background-color: var(--section-background);
  border: 2px solid var(--border-color);
  padding: 0.55rem 1.25rem;
  color: var(--text-color);
  border-radius: 6.25rem;
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
}

.approach-section .main-content p {
  font-size: 1.6rem;
  font-weight: 400;
  /* line-height: 1.2; */
  margin-bottom: 2rem;
}

.approach-section .main-content .learn-more-btn {
  padding: 0.75rem 1.25rem;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 6.25rem;
  text-decoration: none;
}

.approach-section .main-content .approach-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 4rem 1.25rem;
  color: var(--muted-text);
}

.approach-section .main-content .approach-card.active {
  border: 1px solid transparent;
  background-color: var(--accent);
  color: var(--white);
}


.approach-section .cards-column .main-content {
  overflow-y: scroll;
  scrollbar-width: none;
  padding-bottom: 24px;
      flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;
    overscroll-behavior: auto;
}



.approach-section .cards-column .main-content p {
  font-size: 1.25rem;
  font-weight: 400;
}

@media (max-width:992px) {
    .approach-section .row{
    flex-direction: column;
  }

      .approach-section .content-col {
        display: flex;
        flex-direction: column;
        min-height: 0;
        flex: 1;
    }

    .approach-section .main-content {
padding-top: 2rem;
    }
}

@media (max-width: 767px) {
  .approach-section {
    padding-top: 4.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 0 !important;
  }



  .approach-section .container {
    max-width: 100% !important;
  }

  /* .approach-section .main-content {
    padding-top: 6.75rem;
  } */

  .approach-section .main-content p {
    font-size: 1.4rem;
  }

  .section-badge {
    left: 1.25rem;
  }
}

@media (max-width: 500px) {
  .approach-section .main-content p {
    font-size: 1rem;
  }

  /* .approach-section .main-content {
    padding-top: 5.75rem;
  } */

  .approach-section {
    padding-top: 3.25rem;
  }

  .approach-section .main-content .approach-card {
    padding: 1.25rem 1.25rem 3rem 1.25rem;
  }

  .approach-section .cards-column .main-content p {
    font-size: 1rem;
  }
}

@media (max-height:800px) and (min-width:992px) {
  .approach-section .main-content {
    padding-top: 4rem;
  }

}

/* ======================== Projects Section ======================== */

.projects-section {
  background-color: var(--section-background);
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}

.swiper-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-prev,
.button-next {
  width: 1.87rem;
  height: 1.87rem;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-swiper {
  padding: 5rem 0;
}

.swiper-slide {
  height: 40rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.slide-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scaleY(0.87);
  position: relative;
}

.swiper-slide-prev .slide-inner,
.swiper-slide-next .slide-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scaleY(0.95);
}

.swiper-slide-active .slide-inner {
  transform: scaleY(1);
}

.swiper-slide .image {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

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

.swiper-slide .image>h3 {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: var(--white);
  font-size: 1.875rem;
}

.slide-inner .project-details {
  position: absolute;
  bottom: -20%;
  left: 1.875rem;
  right: 1.875rem;
  transition: all 0.5s ease;
  background-color: var(--accent);
  border-radius: 1rem;
  padding: 1.25rem;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slide-inner .project-details h3 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 600;
}

.slide-inner .project-details p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.slide-inner .project-details .explore-btn {
  padding: 0.75rem 1.25rem;
  background-color: var(--white);
  border-radius: 100px;
  color: var(--text-color-secondary);
  width: fit-content;
  border: none;
  position: relative;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
}

.slide-inner .project-details .explore-btn:hover {
  transform: translateY(-6px);
}

.slide-inner .project-details .explore-btn i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text-color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24%;
}

.slide-inner:hover .project-details {
  bottom: 1.875rem;
  left: 1.875rem;
  opacity: 1;
  z-index: 5;
}

/* @media (max-width:1200px) {
    .section-header{
    flex-direction: column;
    align-items: start;
  }
  .swiper-navigation{
    align-self: end;
  }
} */


@media (max-width:1400px) {
  .swiper-slide .image>h3 {
    font-size: 1.5rem;
  }

  .swiper-slide {
    height: 35rem;
  }

  .slide-inner .project-details h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .swiper-slide {
    height: 30rem;
  }

}

@media (max-width: 767px) {
  .slide-inner .project-details h3 {
    font-size: 1.25rem;
  }

  .slide-inner .project-details p {
    font-size: 0.8rem;
  }

  .slide-inner .project-details .explore-btn {
    padding: 0.6rem 1rem;
  }

  .slide-inner .project-details .explore-btn i {
    width: 2.1rem;
    height: 2.1rem;
  }
}

@media (max-width: 400px) {
  .swiper-slide {
    height: 30rem;
  }
}

/* ============================  Sustainability-section =============== */

.Sustainability-section {
  background-image: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(207, 203, 193, 0) 10%,
      rgba(207, 203, 193, 1) 100%),
    url("../img/Layers.png");
  /* background-image:

    url('../img/Layers.png'); */
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: 4rem;
  background-attachment: fixed;
}

.Sustainability-section .wrapper {
  margin: 6.25rem 0;
}

.Sustainability-section .content .col- {
  min-height: 100%;
}

.Sustainability-section h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.Sustainability-section p {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 3.125rem;
}

.Sustainability-card {
  padding: 1.25rem;
  border: 1.5px solid #ffffff;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  height: 100%;
}

.sustainability-card .card-title {
  font-size: 1.5rem !important;
}

.Sustainability-card p {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  line-height: 1.6rem;
}

@media (min-width: 1200px) {
  .Sustainability-section .content {
    width: 75%;
  }
}

@media (max-width: 992px) {
  .Sustainability-section .content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .Sustainability-section {
    height: 100%;
    padding-top: 4.25rem;
  }

  .Sustainability-section h2 {
    font-size: 2rem;
  }

  .Sustainability-section p {
    font-size: 1.2rem;
  }

  .Sustainability-section .wrapper {
    margin-top: 4.25rem;
  }
}

/* ======================= lates news section ================== */
.latest-news-section {
  background-color: #cfcbc1;
  padding: 4.125rem 0;
}

.latest-news-section .section-badge {
  border: 2px solid var(--text-color);
  color: var(--text-color);
  background-color: transparent;
}

.latest-news-section .swiper {
  width: 100%;
  overflow: hidden;
}

.latest-news-section .swiper .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.latest-news-section .swiper .swiper-slide .news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-news-section .swiper .swiper-slide .news-card img {
  width: 100%;
  flex-grow: 1;
  max-height: 300px;
  object-fit: cover;
  border-radius: 1rem;
}

.latest-news-section .swiper .swiper-slide .news-card .news-card-body {
  display: flex;
  align-items: start;
  margin-top: 1.5rem;
  gap: 2.5rem;
}

.latest-news-section .swiper .swiper-slide .news-card .news-card-body p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

.latest-news-section .swiper .swiper-slide .news-card .news-card-body button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text-color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0.75rem;
  font-size: 0.9375rem;
}

.latest-news-section .swiper .swiper-slide .news-card .news-card-body button i {
  transform: rotate(-45deg);
}

/*  ================ footer ===================== */

footer {
  background-color: #cfcbc1;
  padding: 5rem 0;
}

.footer-logo {
  text-decoration: none;
}

footer ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 3.125rem;
}

footer ul li h6 {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 400;
}

footer ul li {
  margin-bottom: 3rem;
}

footer ul li p {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 400;
}

footer .social-media-icons,
.offcanvas .social-media-icons {
  margin-top: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

footer .social-media-icons a,
.offcanvas .social-media-icons a {
  color: var(--text-color);
  font-size: 1.25rem;
  background-color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offcanvas .social-media-icons a {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

footer .social-media-icons a:hover {
  color: var(--white);
  background-color: var(--text-color);
}

.offcanvas .social-media-icons a:hover {
  color: var(--text-color);
  background-color: var(--accent);
}

.footer-right-card {
  background-color: var(--accent);
  padding: 2.25rem;
  border: none;
  border-radius: var(--border-radius);
  width: fit-content;
}

.footer-right-card p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-right-card .input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-right-card .input-group label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
}

.footer-right-card .input-group label span {
  color: var(--text-color);
}

.footer-right-card .input-group input {
  border: none;
  background-color: transparent;
  border-radius: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  width: 100%;
}

.footer-right-card .input-group input:focus {
  outline: none;
  box-shadow: none;
}

.footer-right-card .input-group button {
  background-color: var(--white);
  color: var(--text-color);
  border: none;
  border-radius: var(--border-radius) !important;
  padding: 0.75rem 1.875rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.footer-right-card .input-group button:hover {
  color: var(--white);
  background-color: var(--text-color);
}

.copyWrite {
  margin-top: 3.125rem;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  text-align: start;
}

/* ============== business-hero section ============= */

.page-hero {
  position: relative;
  height: 100dvh;
}

.page-hero .hero-top {
  background-image: url(../../assets/img/Frame.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 50%;
  padding-top: 5.75rem;
  position: relative;
  display: flex;
  padding-bottom: clamp(2rem, 6vw, 5rem);
}

.page-hero .logo-main,
.page-hero .logo-sub {
  color: var(--white);
}

.page-hero .hero-logo {
  filter: brightness(0) invert(1);
}

.page-hero .navbar .nav-link:not(.hero-pill),
.page-hero .navbar .nav-link:not(.hero-pill).active {
  color: var(--white);
}

.page-hero .hero-bottom {
  background-color: var(--section-background);
  background-image: none;
  height: 50%;
}

.page-hero .hero-bottom h1 span:nth-child(1) {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
}

.page-hero .hero-bottom h1 span:nth-child(3) {
  color: var(--text-color);
  font-size: 4rem;
  font-weight: 700;
}

.page-hero .hero-bottom h1 span:nth-child(5) {
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.page-hero .hero-bottom p {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.3;
  text-align: justify;
}

@media (max-width: 1500px) {
  .page-hero .hero-bottom {
    min-height: 60%;
  }

  .page-hero .hero-top {
    min-height: 40%;
  }

  .page-hero .hero-bottom p {
    font-size: 1.6rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.6rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.6rem;
  }
}

/* 
@media (max-width:992px) {

  .page-hero .hero-bottom p {
    font-size: 1.6rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.8rem;
  }
}


@media (max-width:600px) {
  .page-hero .hero-bottom {
    min-height: 70%;
  }

  .page-hero .hero-top {
    min-height: 30%;
  }

  .page-hero .hero-bottom p {
    font-size: 1.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.2rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.2rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.6rem;
  }
}

@media (max-width:480px) {
  .page-hero .hero-bottom p {
    font-size: 1.3rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.5rem;
  }
}

@media (max-width:400px) {
  .page-hero .hero-bottom p {
    font-size: 1.1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 2.9rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 2.9rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.3rem;
  }
} */

@media (max-height: 900px) {
  .page-hero .hero-bottom p {
    font-size: 1.4rem;
  }
}

@media (max-height: 680px) {
  .page-hero .hero-bottom p {
    font-size: 1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 2.5rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 2.5rem;
  }
}

@media (max-width: 1500px) {
  .page-hero .hero-bottom {
    min-height: 60%;
  }

  .page-hero .hero-top {
    min-height: 40%;
  }

  .page-hero .hero-bottom p {
    font-size: 1.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.6rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.6rem;
  }
}

@media (max-width: 992px) {
  .page-hero .hero-bottom p {
    font-size: 1.6rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .page-hero .hero-bottom {
    min-height: 70%;
  }

  .page-hero .hero-top {
    min-height: 30%;
  }

  .page-hero .hero-bottom p {
    font-size: 1.4rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.2rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.2rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .page-hero .hero-bottom p {
    font-size: 1.3rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 3.1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 3.1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .page-hero .hero-bottom p {
    font-size: 1rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(3) {
    font-size: 2.5rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(5) {
    font-size: 2.5rem;
  }

  .page-hero .hero-bottom h1 span:nth-child(1) {
    font-size: 1.2rem;
  }
}

/*  ==================== business-info section ==================== */

.business-info {
  background-image: url(../img/business-frame.png);
  height: 100dvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;

}

.business-info .container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}

.business-info .info-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid #737373;
  width: 100%;
}

.business-info .info-card span {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent);
}

.business-info .info-card p {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
  max-width: 35%;
  line-height: 1.1;
}

@media (max-width: 500px) {
  .business-info .info-card {
         gap: 40px;
        flex-direction: column;
        justify-content: start;
        align-items: self-start;

  }

  .business-info .info-card span {
    font-size: 1.6rem;
  }

  .business-info .info-card p {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* =============== stats section ============= */

.business-stats {
  background-color: #f9f9f9;
  padding: 6.25rem 0;
}

.business-stats .col- {
  min-height: 100%;
}

.business-stats span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.business-stats h2 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 3.75rem;
  margin-top: 1.5rem;
}

.business-stats .stats-card,
.operational-excellence .stats-card {
  padding: 1.875rem;
  background-color: var(--white);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  height: 100%;
}

.business-stats .stats-card .stat-percent {
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

.business-stats .stats-card .stat-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.business-stats .stats-card .stat-value {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.business-stats .stats-card .stat-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.6);
  margin: 0;
}

@media (max-width: 767px) {
  .business-stats h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .business-stats h2 {
    font-size: 2.2rem;
  }

  .business-stats .stats-card .stat-percent {
    font-size: 2.6rem;
  }

  .business-stats .stats-card .stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 500px) {
  .business-stats h2 {
    font-size: 2rem;
  }

  .business-stats .stats-card .stat-percent {
    font-size: 2.4rem;
  }

  .business-stats .stats-card .stat-value {
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) {
  .business-stats h2 {
    font-size: 1.8rem;
  }

  .business-stats .stats-card .stat-percent {
    font-size: 2rem;
  }

  .business-stats .stats-card .stat-value {
    font-size: 1.2rem;
  }
}

/* ==============  business-modal section ============= */

.business-modal {
  background-image: linear-gradient(to bottom,
      rgba(249, 249, 249, 1) 0%,
      rgba(207, 203, 193, 0) 10%,
      rgba(207, 203, 193, 1) 100%),
    url("../img/Layers.png");
  height: 100dvh;
  background-position: center center;
  background-size: cover;
  padding: 6.25rem 0;
  background-attachment: fixed;
}

.business-modal .section-pill2 {
  width: fit-content;
}



.business-modal .left-card {
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
}

.business-modal .left-card h2 {
  font-size: 5rem;
  font-weight: 400;
}

.business-modal .left-card h2 span:nth-child(1) {
  color: var(--text-color);
}

.business-modal .left-card h2 span:nth-child(3) {
  color: var(--accent);
}

.business-modal .left-card p {
  font-size: 1.375rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.6);
}

.business-modal .left-card .download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 400;
  border-radius: 6.25rem;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
}

.business-modal .left-card .download-btn:hover {
  color: var(--text-color);
}

.revenue-card {
  background-image: linear-gradient(180deg,
      rgba(255, 99, 1, 1),
      rgba(255, 133, 51, 1));
  padding: 100px;
  border-radius: 1.5rem;
  color: var(--white);
  position: relative;
}

.revenue-card .revenue-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.revenue-card .revenue-header h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--white);
}

.revenue-card .revenue-header p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}

.revenue-card .revenue-stats .stat h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
}

.revenue-card .revenue-stats .stat p {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
}

.revenue-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(42, 34, 24, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 7%;
  bottom: -12%;
}

.revenue-icon i {
  color: var(--accent);
  font-size: 3rem;
}

@media (max-width: 1200px) {
  .business-modal .left-card h2 {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .business-modal .left-card h2 {
    font-size: 3.5rem;
  }

  .revenue-card .revenue-header h2 {
    font-size: 2.2rem;
  }

  .revenue-card .revenue-stats .stat h3 {
    font-size: 1.9rem;
  }

  .revenue-icon {
    width: 80px;
    height: 80px;
    bottom: -14%;
  }



}

@media (max-width: 500px) {
  .business-modal .left-card h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 400px) {
  .business-modal .left-card h2 {
    font-size: 3rem;
  }
}

@media (max-height:900px) {
  .revenue-card {
    padding: 20px;
  }

  .business-modal .left-card {
    gap: 1rem;
  }

  .business-modal .left-card p {
    font-size: 1rem;
  }
}

/* =====================================================
   Sustainability page
===================================================== */

.sustainability-scroll-section {
  padding-top: 6rem;
  background-color: #ffffff;
  height: 100vh;
}

/* ===== LAYOUT ===== */
.sustainability-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: flex-start;
}

/* =====================================================
   LEFT – SCROLLABLE CARDS
===================================================== */
.sustainability-cards {
  position: relative;
  overflow-y: scroll;
  padding-right: 0.75rem;

  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
}

.sustainability-cards::-webkit-scrollbar {
  display: none;
}

.sustainability-cards::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.85) 80%,
      rgba(255, 255, 255, 1) 100%);

  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.sustainability-cards.fade-hidden::after {
  opacity: 0;
}

.sustainability-card {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 18px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ACTIVE CARD */
.sustainability-card.active {
  border: 2px solid var(--accent);
  background: #fff6f0;
}

/* ICON */
.sustainability-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sustainability-card .card-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

/* ICON VARIANTS */
.sustainability-card .card-icon.dark {
  background-color: #1e1e1e;
}

.sustainability-card .card-icon.gray {
  background-color: #d9d9d9;
}

.sustainability-card .card-icon.gray i {
  color: #2a2218;
}

.sustainability-card p {
  font-size: var(--fs-18);
  color: #2a2218;
  margin: 0;
  line-height: 1.2;
}

/* =====================================================
   RIGHT – TEXT CONTENT
===================================================== */

.sustainability-text h2 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: #2a2218;
}

.sustainability-text h2 span {
  color: var(--accent);
  font-weight: 700;
}

.sustainability-text p {
  font-size: 1.65rem;
  line-height: 1.1;
  color: #2a2218;
  max-width: 450px;
  margin-bottom: 2.75rem;
}


/* ================= Sustainability CTA FIX ================= */

.sustainability-cta {
  position: relative;
  display: inline-flex;
}

.sustainability-cta .hero-cta {
  position: relative;
  overflow: visible;
}

.sustainability-cta .hero-cta-icon {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.sustainability-cta .hero-cta-icon i {
  color: #fff !important;
}

/* =====================================================
   RESPONSIVE – TABLET
===================================================== */

@media (min-width:992px) and (max-width:1200px) {
  .sustainability-text p {
    font-size: 1.4rem;
  }

  .sustainability-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .sustainability-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .sustainability-cards {
    max-height: 60vh;
    order: 2;
  }

  .sustainability-text {
    order: 1;
  }

  .sustainability-text h2 {
    font-size: 2.6rem;
  }

  .sustainability-text p {
    font-size: 1.4rem;
  }
}

@media (max-height:900px) {
  .sustainability-text p {
    font-size: 1.5rem;
  }

  .sustainability-scroll-section {
    padding-top: 3rem;
  }


}

/* =====================================================
   RESPONSIVE – MOBILE
===================================================== */
@media (max-width: 576px) {
  .sustainability-scroll-section {
    padding: 4rem 0;
  }

  .sustainability-cards {
    max-height: 50vh;
    padding-right: 0;
  }

  .sustainability-card {
    padding: 1.4rem 1.5rem;
  }

  .sustainability-text h2 {
    font-size: 2rem;
  }

  .sustainability-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .sustainability-card .card-title {
    font-size: 1.3rem;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */
@media (max-width: 400px) {
  .sustainability-text h2 {
    font-size: 1.75rem;
  }

  .sustainability-cards {
    max-height: 45vh;
  }
}

/* ================= Sustainability Targets ================= */

.sustainability-targets {
  background: radial-gradient(circle at top left, #2a2218 0%, #1b150f 60%);
  padding: 6rem 0;
  color: #fff;
}

/* LEFT */
.section-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(255, 99, 1, 0.15);
  color: var(--accent);
  font-size: var(--fs-12);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  border: 1px solid #ff63014d;
}

.targets-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.targets-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* RIGHT */
.targets-progress {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.progress-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff1a;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-header span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.progress-header strong {
  color: var(--accent);
  font-size: 0.95rem;
}

/* wrapper */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  /* 100% */
  border-radius: 6px;
  overflow: hidden;
}

/* orange part */
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff6301, #ff8c1a);
  border-radius: 6px;
  transition: width 0.8s ease;
}

/* percent text */
.progress-percent {
  display: flex;
  gap: 6px;
  align-items: center;
}

.progress-percent strong {
  color: var(--accent);
  font-size: 0.95rem;
}

.progress-percent small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .targets-title {
    font-size: 2.4rem;
  }

  .targets-desc {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .sustainability-targets {
    padding: 4rem 0;
  }

  .targets-title {
    font-size: 2rem;
  }

  .progress-card {
    padding: 1rem 1.25rem;
  }
}

/* ================= Shared Value Section ================= */

.shared-value-section {
  background-image: linear-gradient(to bottom,
      rgba(249, 249, 249, 1) 0%,
      rgba(207, 203, 193, 0) 90%,
      rgba(207, 203, 193, 1) 100%),
    url("../img/Layers.png");
  height: 100dvh;

  background-position: center center;
  background-size: cover;
  padding: 6.25rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
}

.shared-title {
  font-size: 3rem;
  font-weight: 500;
  color: #2a2218;
  margin-top: 1.5rem;
}

.section-pill2 {
  display: inline-block;
  padding: 0.47rem 1.1rem;
  border-radius: 50px;
  background: rgba(255, 99, 1, 0.15);
  color: var(--accent);
  font-size: var(--fs-12);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.shared-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  border: 1px solid #cfcbc1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: all 0.35s ease;
}

.shared-card h3 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #2a2218;
  margin-bottom: 0.6rem;
}

.shared-card p {
  font-size: 0.85rem;
  color: rgba(42, 34, 24, 0.65);
  margin: 0;
}

/* Hover */
.shared-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .shared-title {
    font-size: 2.2rem;
  }

  .shared-card h3 {
    font-size: 1.8rem;
  }
}

@media (max-height: 900px) {
  .shared-value-section {
    padding: 4rem 0;
  }

  .section-pill2 {
    margin-bottom: 1rem;
  }

  .shared-title {
    margin-top: 1rem;
  }

  .shared-value-section .row {
    margin-top: 10px !important;
  }
}

@media (max-height: 680px) {
  .shared-value-section {
    padding: 3rem 0;
  }

  .section-pill2 {
    margin-bottom: 1rem;
  }

  .shared-title {
    margin-top: 1rem;
    font-size: 2rem;
  }

  .shared-value-section .row {
    margin-top: 10px !important;
  }

  .shared-card {
    padding: 1rem 1.2rem;
  }
}

/*  ============= operations section ============== */

.operation-fact {
  padding-top: 6.25rem;
  height: 100vh;
  overflow: hidden;
}

.operation-fact .section-pill2 {
  width: fit-content;
  display: flex;
}

.operation-fact .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.operation-fact .container>div:first-child {
  flex-shrink: 0;
}

.operation-fact .row {
  display: flex;
  flex: 1;
  overflow: hidden;
  flex-wrap: nowrap;
}

.operation-fact .content-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.operation-fact .content-col:nth-child(2) {
  margin-bottom: 6.25rem;
}

.operation-cards {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: none;
  padding-bottom: 6.25rem;
  position: relative;
}

.operation-cards::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.85) 80%,
      rgba(255, 255, 255, 1) 100%);

  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.operation-cards.fade-hidden::after {
  opacity: 0;
}

.operation-cards::-webkit-scrollbar {
  display: none;
}

.operation-fact h2,
.operational-excellence h2 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.operation-cards .card {
  width: 100%;
  padding: 2rem;
  background-color: #f8f6f3;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8125rem;
  border: none;
}

.operation-cards .card.active {
  background-image: linear-gradient(180deg,
      rgba(255, 99, 1, 1),
      rgba(255, 133, 51, 1));
}

.operation-cards .card .header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.operation-cards .section-pill2 {
  margin: 0;
}

.operation-cards .card .header .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background-color: rgba(255, 99, 1, 0.1);
  color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.operation-cards .card.active .header .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.operation-cards .card .header .section-pill2 {
  background-color: rgba(0, 201, 80, 0.1);
  color: rgba(0, 130, 54, 1);
}

.operation-cards .card.active .header .section-pill2 {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.operation-cards .card .card-title {
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-color);
}

.operation-cards .card.active .card-title {
  color: var(--white);
}

.operation-cards .card .card-location {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.6);
  margin: 0;
}

.operation-cards .card.active .card-location {
  color: rgba(255, 255, 255, 0.8);
}

.operation-cards .card .card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.operation-cards .card .info-item {
  display: flex;
  flex-direction: column;
}

.operation-cards .card .info-item .info-label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.5);
}

.operation-cards .card.active .info-item .info-label {
  color: rgba(255, 255, 255, 0.6);
}

.operation-cards .card .info-item .info-value {
  font-size: var(--fs-18);
  font-weight: 400;
  color: var(--text-color);
}

.operation-cards .card.active .info-item .info-value {
  color: var(--white);
}

.operation-fact .right-card {
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.operation-fact .right-card .image {
  width: 100%;
  position: relative;
  flex: 1;
  min-height: 0;
}

.operation-fact .right-card .image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.operation-fact .right-card .image .card-info {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  left: 2.5rem;

  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(1px);
  border-radius: 1rem;
  border: 1px solid var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
}

.operation-fact .right-card .image .card-info .stats {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
}

.operation-fact .right-card .image .card-info h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 400;
}

.operation-fact .right-card .image .card-info p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
}

.operation-fact .right-card .image .card-info .explore-btn {
  background-color: var(--white);
  border-radius: 6.25rem;
  border: none;
  text-decoration: none;
  color: var(--text-color);
  padding: 0.75rem 1.625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

@media (max-width:1400px) {
  .operation-fact .right-card .image .card-info {
    top: 2rem;
    bottom: 2rem;
    right: 2rem;
    left: 2rem;
    gap: 0.5rem;
    padding: 1.3rem;
  }

  .operation-fact .right-card .image .card-info h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .operation-fact .right-card .image .card-info {
    top: 2.5rem;
    padding: 1.5rem;
  }

  .operation-fact .right-card .image .card-info h3 {
    font-size: 1.7rem;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .operation-fact .right-card .image .card-info h3 {
    font-size: 1.3rem;
  }

  .operation-fact .right-card .image .card-info p {
    margin: 0;
  }

  .operation-fact .right-card .image .card-info {
    top: 2rem;
    bottom: 2rem;
    right: 2rem;
    left: 2rem;
    gap: 0.5rem;
    padding: 1.3rem;
  }
}

@media (max-width: 992px) {

  .operation-fact h2,
  .operational-excellence h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
    line-height: 1;
  }

  .operation-fact .right-card {
    flex: none;
  }

}

@media (max-width: 767px) {
  .operation-fact .row {
    overflow-y: scroll;
    scrollbar-width: none;
    flex-wrap: wrap;
  }

  .operation-fact .content-col:nth-child(1) {
    order: 2;
  }

  .operation-fact .content-col:nth-child(2) {
    order: 1;
    margin-bottom: 0;
  }

  .operation-fact .right-card {
    height: 90%;
    flex: none;
  }

  .operation-fact .right-card .image {
    height: 100%;
    flex: none;
  }

  .operation-fact h2,
  .operational-excellence h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .operation-fact .right-card .image .card-info .explore-btn{
        padding: 0.5rem 1.6rem;
  }
}

@media (max-width: 600px) {
  .operation-fact .right-card .image .card-info h3 {
    font-size: 1.2rem;
  }

  .operation-fact .right-card .image .card-info p {
    margin: 0;
  }

  .operation-fact .right-card .image .card-info {
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    gap: 0.5rem;
  }
}

@media (max-width: 400px) {
  .operation-fact .right-card .image .card-info {
    top: 1.5rem;
  }
}

@media (max-height: 900px) {
  .operation-fact {
    padding-top: 4rem;
  }

  /* .operation-fact h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
  } */
  /* 
  .operation-fact .content-col:nth-child(2) {
    margin-bottom: 4rem;
  } */

  .operation-cards {
    padding-bottom: 4rem;
  }
}

@media (max-height: 680px) {
  .operation-fact {
    padding-top: 3rem;
  }

  .operation-fact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  /* .operation-fact .content-col:nth-child(2) {
    margin-bottom: 3rem;
  } */

  .operation-cards {
    padding-bottom: 3rem;
  }
}

/* ================ operational page ==================== */

.operational-excellence {
  padding: 6.25rem 0;
  background-color: #f8f6f3;
}

.operational-excellence .section-pill2 {
  width: fit-content;
  display: flex;
}

.stats-card .icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row>div:nth-child(2) .stats-card .icon {
  background-image: linear-gradient(rgba(254, 154, 0, 1), rgba(240, 177, 0, 1));
}

.row>div:nth-child(3) .stats-card .icon {
  background-image: linear-gradient(rgba(43, 127, 255, 1),
      rgba(0, 184, 219, 1));
}

.row>div:nth-child(4) .stats-card .icon {
  background-image: linear-gradient(rgba(0, 201, 80, 1), rgba(0, 188, 125, 1));
}

.row>div:nth-child(5) .stats-card .icon {
  background-image: linear-gradient(rgba(173, 70, 255, 1),
      rgba(246, 51, 154, 1));
}

.stats-card .icon::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: var(--white);
  border-radius: 0.625rem;
}

.operational-excellence .stats-card h3 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-color);
}

.operational-excellence .stats-card p {
  font-size: var(--fs-18);
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}

.operational-excellence .stats-card span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.5);
}

.upper-footer {
  background-image: linear-gradient(to bottom,
      rgba(248, 246, 243, 1) 0%,
      rgba(207, 203, 193, 0) 10%,
      rgba(207, 203, 193, 1) 100%),
    url("../img/Layers.png");
  height: 100dvh;
  background-position: center center;
  background-size: cover;
  padding: 6.25rem 0;
  background-attachment: fixed;
}

.upper-footer .container {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upper-footer .main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  height: 100%;
}

.upper-footer .main-content h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
}

.upper-footer .main-content h3 {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.upper-footer .main-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}

.upper-footer .main-content p {
  font-size: var(--fs-18);
  font-weight: 400;
  color: var(--text-color);
  text-align: center;
  text-align: center;
}

.upper-footer .main-content .request-btn {
  background-color: var(--accent);
  color: var(--text-color);
  border-radius: 6.25rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 992px) {
  .upper-footer .main-content h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .upper-footer .main-content h2 {
    font-size: 2.5rem;
  }


  .upper-footer .main-content h3 {
    font-size: 1.4rem;
  }

  .upper-footer .main-content{
    gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .upper-footer .main-content h2 {
    font-size: 2rem;
  }

  .upper-footer .main-content p {
    font-size: 1rem;
  }

  .upper-footer .main-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .operational-excellence .stats-card h3 {
    font-size: 2.8;
  }

  .stats-card .icon {
    width: 3rem;
    height: 3rem;
  }

  .stats-card .icon::after {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (max-width: 767px) {
  .operational-excellence .stats-card h3 {
    font-size: 1.8rem;
  }
}

/***********************************  investors page *******************************************/

/* ===== Investor Pillar Cards ===== */
.pillar-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 3.5rem 1.25rem;
  color: var(--muted-text);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

.pillar-card.active {
  border: 1px solid transparent;
  background-color: var(--accent);
  color: var(--white);
}

.pillar-card p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.pillars-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  overflow: hidden;
}

.pillars-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 991px) {
  .pillars-wrapper {
    grid-template-columns: 1fr;
  }
}

/* style on all button */

.cta-wrap {
  position: relative;
  display: inline-flex;
}

.cta-wrap .hero-cta {
  position: relative;
  overflow: visible;
}

.cta-wrap .hero-cta-icon {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-wrap .hero-cta-icon i {
  color: #fff !important;
}

/* ================= Dividend & Returns ================= */

.dividend-returns-section {
  text-align: center;
}

/* cards */
.return-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: transform 0.3s ease;
}

.return-card:hover {
  transform: translateY(-4px);
}

.return-card h3 {
  font-size: 2.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.return-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.25rem;
}

.return-card small {
  font-size: var(--fs-12);
  color: rgba(255, 255, 255, 0.5);
}

/* ================= Investment Case ================= */

.investment-case-section {
  padding: 12rem 0;
  background-color: #ffffff;
}

/* LEFT */
.investment-title {
  font-size: 3rem;
  font-weight: 500;
  margin: 1rem 0;
  color: #2a2218;
}

.investment-line {
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  margin-bottom: 1.25rem;
  border-radius: 20px;
}

.investment-desc {
  font-size: 0.98rem;
  color: #6f6f6f;
  max-width: 480px;
}

/* RIGHT GRID */
.investment-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.investment-card {
  background: #f8f6f3;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.investment-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.75rem 0 0.4rem;
  color: #2a2218;
}

.investment-card p {
  font-size: 0.77rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

/* BADGES */
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 14px;
  color: #fff;
}

.card-badge.blue {
  background: linear-gradient(135deg, #2b7fff 0%, #00b8db 100%);
}

.card-badge.pink {
  background: linear-gradient(135deg, #ad46ff 0%, #f6339a 100%);
}

.card-badge.green {
  background: linear-gradient(135deg, #00c950 0%, #00bc7d 100%);
}

.card-badge.orange {
  background: linear-gradient(135deg, #fe9a00 0%, #ff6900 100%);
}

/* HOVER (خفيف زي التصميم) */
.investment-card:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .investment-title {
    font-size: 2.4rem;
  }

  .investment-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .investment-title {
    font-size: 2rem;
  }

  .investment-case-section {
    padding: 4rem 0;
  }
}

/* ================= Investor Contact Section ================= */

.investor-contact-section {
  background-image: linear-gradient(to bottom,
      rgba(248, 246, 243, 0.85) 0%,
      rgba(207, 203, 193, 0) 40%,
      rgba(207, 203, 193, 1) 100%),
    url(../img/Layers.png);

  min-height: 100dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background-attachment: fixed;
}


.investor-contact-card {
  max-width: 950px;
  width: 100%;
  padding: 5rem 3rem;

  background: rgba(42, 34, 24, 0.2);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* .investor-contact-section .container {
  display: flex;
  justify-content: center;
} */

.investor-contact-card {
  margin: 0 auto;
}

/* Icon */
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

/* Text */
.investor-contact-card h2 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.investor-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.investor-contact-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.investor-contact-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* Buttons */
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Primary (Email) */
.contact-btn.primary {
  background: #ffffff;
  color: var(--accent);
}


.contact-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid #FFFFFF33;
}

/* Hover */
.contact-btn:hover {
  transform: translateY(-2px);
}

/* ================= Responsive ================= */

@media (max-width: 768px) {
  .investor-contact-card {
    padding: 3rem 1.75rem;
  }

  .investor-contact-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .investor-contact-card h2 {
    font-size: 1.7rem;
  }

  .investor-contact-card p {
    font-size: 0.85rem;
  }
}

/* contact page */
/* ================= Contact Items ================= */

.hero-contact-items {
  display: flex;
  gap: 3.2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

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

/* reuse card-badge system */
.card-badge2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 600;
}

.card-badge2.blue {
  background: linear-gradient(135deg, #2b7fff 0%, #00b8db 100%);
}

.card-badge2.pink {
  background: linear-gradient(135deg, #ad46ff 0%, #f6339a 100%);
}

.card-badge2.green {
  background: linear-gradient(135deg, #00c950 0%, #00bc7d 100%);
}

.card-badge2.orange {
  background: linear-gradient(135deg, #fe9a00 0%, #ff6900 100%);
}

/* contact text wrapper */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* EMAIL / PHONE / HEADQUARTERS */
.contact-label {
  font-size: 0.67rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(42, 34, 24, 0.6);
  line-height: 1;
}

/* value text */
.contact-text {
  font-size: 0.91rem;
  color: #2A2218;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.1px;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {
  .hero-contact-items {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .contact-text {
    white-space: normal;
  }
}

/* ================= Detailed Message Section ================= */

.detailed-message-section {
  padding: 6rem 0;
  background: #ffffff;
}


.section-head h2 {
  font-size: 2.6rem;
  font-weight: 500;
  margin: 1rem 0 0.4rem;
  color: #2A2218;
}

.section-head p {
  font-size: 0.9rem;
  color: rgba(42, 34, 24, 0.6);
}


.message-form-wrap {
  margin-top: 3rem;
  background: #F8F6F3;
  border-radius: 24px;
  padding: 2.5rem;
}


.message-form label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(42, 34, 24, 0.8);
  margin-bottom: 6px;
  display: block;

}

.message-form input,
.message-form textarea {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-size: 0.85rem;
  background: #ffffff;
  outline: none;
  color: #2A2218;
}

.message-form textarea {
  resize: none;
}


.form-submit-btn {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 500;

  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.form-submit-btn i {
  font-size: 0.9rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 99, 1, 0.25);
}


.message-form input::placeholder,
.message-form textarea::placeholder {
  color: #2A22184D;
  opacity: 1;
}


.message-form input::-webkit-input-placeholder,
.message-form textarea::-webkit-input-placeholder {
  color: #2A22184D;
}

.message-form input:-ms-input-placeholder,
.message-form textarea:-ms-input-placeholder {
  color: #2A22184D;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {
  .section-head h2 {
    font-size: 2.1rem;
  }

  .message-form-wrap {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .section-head h2 {
    font-size: 1.8rem;
  }

  .form-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================= Locations Section ================= */

.locations-section {
  background-image: linear-gradient(to bottom,
      rgba(249, 249, 249, 1) 0%,
      rgba(207, 203, 193, 0) 90%,
      rgba(207, 203, 193, 1) 100%),
    url("../img/Layers.png");

  height: 100dvh;
  background-position: center;
  background-size: cover;

  padding: 6.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.locations-title {
  font-size: 3rem;
  font-weight: 500;
  color: #2a2218;
  margin-top: 1.5rem;
}

/* ===== Cards ===== */
.location-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 2rem 1.5rem;
  /* border: 1px solid #cfcbc1; */
  text-align: center;

  transition: all 0.35s ease;
}

.location-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a2218;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.9rem;
  color: rgba(42, 34, 24, 0.65);
  margin-bottom: 0.75rem;
}

/* Badge */
.location-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  border-radius: 50px;

  background: rgba(255, 99, 1, 0.1);
  color: var(--accent);
  font-weight: 500;
}

/* Hover */
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* ================= Responsive ================= */
@media (max-width:992px) {
  .locations-section .row {
    margin-top: 0 !important;
  }

  .location-card {
    padding: 1rem;
  }

  .locations-title {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .locations-title {
    font-size: 2.2rem;
  }
}

@media (max-height: 900px) {
  .locations-section {
    padding: 4rem 0;
  }
}

@media (max-height: 680px) {
  .locations-section {
    padding: 3rem 0;
  }

  .locations-title {
    font-size: 2rem;
  }

  .location-card {
    padding: 1rem 1.2rem;
  }

  .section-pill2 {
    margin-bottom: 0;
  }

  .locations-title {
    margin-top: 1rem;
  }

  .locations-section {
    padding: 2rem 0;
  }
}

/************************************* news page *****************************/

/* ================== news page ========================= */


/* news grid section */
.news-card-section {
  padding: 6.25rem 0;
  background-color: #F8F6F3;
}

.news-card-section .section-pill2 {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  text-transform: uppercase;
}

.news-card-section .news-card,
.related-news .news-card {
  background-color: var(--white);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  height: 34.375rem;
  display: flex;
  flex-direction: column;

}

.news-card-section .news-card .news-image,
.related-news .news-card .news-image {
  flex: 1;
  min-height: 0;
}

.news-card-section .news-card .news-image img,
.related-news .news-card .news-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-card-section .news-card .news-card-body,
.related-news .news-card .news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}


.news-card-section .news-card .news-card-body .news-date,
.related-news .news-card .news-card-body .news-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(42, 34, 24, 0.6);
  font-size: var(--fs-12);
}

.news-card-section .news-card .news-card-body .news-date p,
.related-news .news-card .news-card-body .news-date p {
  margin: 0;
}

.news-card-section .news-card .news-card-body>p,
.related-news .news-card .news-card-body>p {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.news-card-section .load-more-btn {
  background-color: var(--text-color);
  border-radius: 6.25rem;
  padding: 1rem 2rem;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  width: fit-content;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.news-card-section .load-more-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}



/* featured news section */

.featured-news {
  height: 100vh;
  background-color: var(--white);
  padding: 6.25rem 0;
}

.featured-news .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;

}

.featured-news .nav {
  gap: 0.75rem;
}

.featured-news .nav .nav-link {
  background-color: #F8F6F3;
  padding: 0.75rem 1.5rem;
  border-radius: 6.25rem;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
}

.featured-news .nav .nav-link.active {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.featured-news-card {
  background: linear-gradient(#F8F6F3, #FFFFFF);
  border-radius: 1.5rem;
  flex: 1;
  min-height: 0;
  padding: 3rem;

}

.featured-news-card .image {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.featured-news-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-news-card .left-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-news-card .left-card .section-pill2 {
  width: fit-content;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
}


.featured-news-card .left-card .section-pill2:first-child {
  text-transform: uppercase;
}

.featured-news-card .left-card a {
  transition: all 0.3s ease;
  padding: 1rem 2rem;
}

.featured-news-card .left-card a:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.featured-news-card .left-card h3 {
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1;
}


.featured-news-card .left-card p {
  font-size: var(--fs-18);
  font-weight: 400;
  color: rgba(42, 34, 24, 0.7);
}

.featured-news-card .left-card .news-date,
.singleNewsHeroContent .news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-news-card .left-card .news-date i,
.featured-news-card .left-card .news-date p,
.featured-news-card .left-card .news-date span,
.singleNewsHeroContent .news-date i,
.singleNewsHeroContent .news-date p,
.singleNewsHeroContent .news-date span {
  color: rgba(42, 34, 24, 0.6);
  font-size: 0.875rem;
}


.latest-news-section.latest-news-bg {
  background-image:
    linear-gradient(to bottom,
      rgba(248, 246, 243, 1) 0%,
      rgba(207, 203, 193, 0) 10%,
      rgba(207, 203, 193, 1) 100%),
    url('../img/Layers.png');
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  padding-top: 6.25rem;
}


@media (max-width:992px) {
  .featured-news {
    height: 100%;
  }

  .featured-news-card .image {
    height: 25rem;
  }

}


@media (max-width:767px) {
  .featured-news-card .left-card h3 {
    font-size: 2rem;
  }

  .featured-news .nav {
    white-space: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
}

@media (max-width:567px) {
  .featured-news-card .left-card h3 {
    font-size: 1.8rem;
  }
}

@media (max-width:400px) {
  .featured-news .container {
    gap: 2rem;
  }

  .featured-news-card {
    padding: 1.5rem;
  }

  .featured-news {
    padding: 3rem 0;
  }

}

@media (max-width:1400px) and (max-height:600px) {
  .featured-news-card {
    padding: 1.5rem;
  }

  .featured-news .container {
    gap: 2rem;
  }

  .featured-news-card .left-card h3 {
    font-size: 1.8rem;
  }


  .featured-news-card .left-card p {
    font-size: 14px;
  }

  .featured-news {
    padding: 4rem 0;
  }
}




/* ===================== career page ====================== */


/* opportunities section */
.opportunities-section {
  padding-top: 6.25rem;
  background-color: #F8F6F3;
  height: 100vh;
}

.opportunities-section .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}


.opportunities-section .section-header,
.benefit-culture .section-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-grow: 0;
}

.opportunities-section .section-header {
  align-items: start;
}

.opportunities-section .container .row {
  /* flex: 1; */
  overflow-y: scroll;
  scrollbar-width: none;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6.25rem;

}

.opportunities-section .container .row .col-12 {
  padding: 0;
}


.opportunities-section .container .row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.85) 80%,
      rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}


.opportunities-section .container .row.fade-hidden::after {
  opacity: 0;
}




.opportunities-section .section-header .section-pill2,
.benefit-culture .section-header .section-pill2 {
  text-transform: uppercase;
  margin-bottom: 0;
}


.opportunities-section .section-header div,
.benefit-culture .section-header div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.opportunities-section .section-header div h2,
.benefit-culture .section-header div h2 {
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
}

.opportunities-section .section-header div p,
.benefit-culture .section-header div p {
  font-size: var(--fs-18);
  font-weight: 400;
  color: rgba(42, 34, 24, 0.6);

}

.opportunities-section .career-card {
  background-color: var(--section-background);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

}


.opportunities-section .career-card .badges {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  text-transform: uppercase;
}



.opportunities-section .career-card .badges .section-pill2.job-badge {
  background-color: rgba(42, 34, 24, 0.05);
  color: var(--text-color);
}


.opportunities-section .career-card h6 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-color);
}

.opportunities-section .career-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.opportunities-section .career-card li {
  display: flex;
  gap: 0.5rem;
  color: rgba(42, 34, 24, 0.6);
  font-size: 0.875rem;
}


@media (max-width:992px) {
  .opportunities-section {
    padding-top: 3rem;
  }
}


/* career section */

.career-cta {
  background-color: #2A2218;
  padding: 6.25rem 0;
}


.career-cta .container .career-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.career-cta .container h2 {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.career-cta .container p {
  font-size: var(--fs-18);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 50%;
  margin: 0;
}

.career-cta .container a {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 6.25rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

/* benefit section */

.benefit-culture {
  padding: 6.25rem 0;
}


.benefit-card,
.culture-card {
  background-color: #F8F6F3;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}



.benefit-card>i {
  padding: 0.875rem;
  border-radius: 0.875rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: var(--fs-18);
}

.benefit-culture .row>div {
  min-height: 100%;
}

.benefit-culture .row>div .benefit-card,
.benefit-culture .row>div .culture-card {
  height: 100%;
}

.benefit-culture .row>div:nth-child(1) .benefit-card i {
  background-color: #2B7FFF;

}

.benefit-culture .row>div:nth-child(2) .benefit-card i {
  background-color: #FF2056;
}

.benefit-culture .row>div:nth-child(3) .benefit-card i {
  background-color: #00C950;
}

.benefit-culture .row>div:nth-child(4) .benefit-card i {
  background-color: #FE9A00;
}



.benefit-card h6,
.culture-card h6 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
}

.benefit-card p,
.culture-card p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(42, 34, 24, 0.7);
  margin: 0;
}

.culture-card {
  background-color: var(--white);
  border: 1px solid rgba(42, 34, 24, 0.05);
}

/* seperator */

.seperator {
  padding: 6.25rem;
  background: linear-gradient(to top,
      rgba(207, 203, 193, 1) 0%,
      rgba(207, 203, 193, 0) 100%);

}

@media (max-width:1300px) {
  .career-cta .container p {
    max-width: 70%;
  }
}

@media (max-width:992px) {
  .career-cta .container p {
    max-width: 80%;
  }
}

@media (max-width:850px) {
  .career-cta .container p {
    max-width: 100%;
  }
}

@media (max-width:767px) {
  .career-cta .container h2 {
    font-size: 3rem;
  }

  .opportunities-section .section-header div h2,
  .benefit-culture .section-header div h2 {
    font-size: 3rem;
  }

}

@media (max-width:567px) {
  .career-cta .container h2 {
    font-size: 2.5rem;
  }


  .career-cta .container p {
    font-size: 1rem;
  }

  .opportunities-section .section-header div h2,
  .benefit-culture .section-header div h2 {
    font-size: 2.5rem;
  }
}

@media (max-width:500px) {
  .career-cta .container h2 {
    font-size: 2rem;
  }

  .opportunities-section .section-header div h2,
  .benefit-culture .section-header div h2 {
    font-size: 2rem;
  }

  .career-cta .container p {
    font-size: 0.8rem;
  }

  .opportunities-section .career-card ul {
    flex-wrap: wrap;
  }

}


/* ===================== single news page ========================== */
.singleNewsHeroContent {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.singleNewsHeroContent .section-pill2 {
  width: fit-content;
}

.page-hero .hero-bottom .single-news-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-color);
}

.page-hero .hero-bottom .single-news-title span {
  color: var(--accent);
  font-size: 3rem !important;
  line-height: 1.1;
  font-weight: 400;
}

.page-hero .hero-bottom .single-news-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-color);
}



.news-cover {
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  background: #ddd;
}

.news-cover img {
  width: 100%;
  height: clamp(240px, 42vw, 460px);
  object-fit: cover;
  display: block;
}


.news-article {
  background: var(--white);
  border-radius: 1.125rem;
  padding: 1.625rem;
  border: 1px solid rgba(0, 0, 0, .06);
}

.news-article h2 {
  font-size: 20px;
  color: var(--text-color);
  margin: 0 0 10px;
}

.news-article h3 {
  font-size: 1rem;
  margin-top: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--text-color);
}

.news-article p,
.news-article li {
  color: rgba(42, 34, 24, 0.7);
  line-height: 1.8;
  font-size: 0.875rem;
}

.news-article ul {
  padding-left: 1.125rem;
}

.news-article blockquote {
  margin: 1.125rem 0;
  padding: 1rem 1rem 1rem 1.125rem;
  background: rgba(255, 99, 1, .06);
  border-radius: 0.75rem;
  color: rgba(42, 34, 24, 0.7);
  font-size: 0.875rem;
}

.news-article blockquote span {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.75;
  font-size: 0.8125rem;
}

.article-divider {
  height: 1px;
  background: rgba(0, 0, 0, .06);
  margin: 1.125rem 0;
}

.article-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: var(--fs-12);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .9);
  color: rgba(42, 34, 24, 0.7);
}

.share {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.share-label {
  font-size: var(--fs-12);
  color: rgba(42, 34, 24, .65);
  margin-right: 0.25rem;
}

.share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  color: rgba(42, 34, 24, .75);
  text-decoration: none;
}

.share-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* SIDEBAR */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 1.125rem;
  padding: 1.125rem;
}

.sidebar-card h5 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 15px;
}

.sidebar-card p {
  margin: 0 0 0.75rem;
  color: rgba(42, 34, 24, .7);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.sidebar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  border-radius: 6.25rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  position: relative;
}

.sidebar-btn i {
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  right: -30%;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(42, 34, 24, .75);
  margin-bottom: 0.5rem;
}

/* RELATED */
.related-news {
  margin-top: 26px;
}

.related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.related-head h3 {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-18);
}

.see-all {
  color: rgba(42, 34, 24, .75);
  text-decoration: none;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-mini-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.875rem 2.1875rem rgba(0, 0, 0, .08);
}

.mini-thumb {
  position: relative;
  height: 11.875rem;
  background: #ddd;
}

.mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-news .section-pill2 {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--accent);
}

.related-news .news-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mini-body {
  padding: 0.875rem;
}

.mini-meta {
  font-size: var(--fs-12);
  color: rgba(42, 34, 24, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mini-body h6 {
  margin: 0;
  color: var(--text-color);
  font-size: 0.875rem;
  line-height: 1.35;
}

.news-hero-bottom {
  align-items: end;
  padding-bottom: 2rem;
}

.breadcrumb {
  align-self: start;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.breadcrumb .breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--accent);
  font-size: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  font-size: 20px;
  font-weight: 300;
}

.breadcrumb-item+.breadcrumb-item.active::before {
  font-weight: 300;
}


/* responsive tweaks */




@media (max-height: 800px) and (min-width: 1200px) {
  .page-hero .hero-bottom .single-news-title {
    font-size: 2.2rem;
  }

  .page-hero .hero-bottom .single-news-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 1500px) {



  .page-hero .hero-bottom .single-news-title {
    font-size: 2.6rem;
  }

  .page-hero .hero-bottom .single-news-title span {
    font-size: 2.6rem !important;
  }
}

@media (max-width: 992px) {


  .page-hero .hero-bottom .single-news-title {
    font-size: 2.4rem;
  }

  .page-hero .hero-bottom .single-news-title span {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 600px) {


  .page-hero .hero-bottom .single-news-title {
    font-size: 2.2rem;
  }

  .page-hero .hero-bottom .single-news-title span {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 480px) {


  .page-hero .hero-bottom .single-news-title {
    font-size: 2.1rem;
  }

  .page-hero .hero-bottom .single-news-title span {
    font-size: 2.1rem !important;
  }
}

.success-message-card {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #14532d;
  padding: 12px 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
  border: 1px solid #86efac;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.success-message-card i {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
  color: #16a34a;
}

.success-message-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
}


.lang-switch .nav-link {
  font-weight: 600;

}

.lang-switch .nav-link:hover {
  opacity: 1;
}




.section-main-title {
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 600;
}

@media (max-width:992px) {
  .section-main-title {
    font-size: 2.7rem;
  }
}

@media (max-width:767px) {
  .section-main-title {
    font-size: 2.3rem;
  }
}

@media (max-width:500px) {
  .section-main-title {
    font-size: 2rem;
  }
}

@media (max-width:480px) {
  .section-main-title {
    font-size: 1.7rem;
  }
}

@media (min-width: 992px) and (max-height: 800px) {
  .section-main-title {
    font-size: 2.7rem;
  }
}


.footer-title {
  font-size: 1.6rem;
  font-weight: 500;
}


/* right side smooth transition */
.right-card .card-info {
  transition: opacity .5s ease, transform .5s ease;
}

.right-card .card-info.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

/* ===== revenue-card list design ===== */
.revenue-card h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.2px;
  color: var(--text-color);
}

.revenue-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.revenue-card ul li {
  position: relative;
  padding-inline-start: 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-color);
}

.revenue-card ul li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .18);
  background: rgba(0, 0, 0, .04);
}

.revenue-card ul li::after {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
}

.upper-footer.business-approach {
  background: radial-gradient(circle at top left, #2a2218 0%, #1b150f 60%);
  color: #fff;
}

.upper-footer.business-approach ul {
  list-style: none;
  padding: 0;
}

.upper-footer.business-approach h2,
.upper-footer.business-approach p {
  color: #fff;
}



/* list */
.upper-footer.business-approach .approach-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.upper-footer.business-approach .approach-list li {
  position: relative;
  padding: 14px 14px 14px 52px;
  padding-inline-start: 52px;
  /* RTL/EN safe */
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .70);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .05);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, .78);
}

/* bullet icon */
.upper-footer.business-approach .approach-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  /* RTL/EN safe */
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, .14);
  background: rgba(0, 0, 0, .04);
}

.upper-footer.business-approach .approach-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 24px;
  /* RTL/EN safe */
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
}

.upper-footer .main-content .request-btn {
  color: #fff;
}


@media (max-width:992px) {
  .upper-footer.business-approach {
    padding-top: 2rem;
  }
}




/* About - performance card (inside business-info) */
.about-performance-card {
  margin-top: 18px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-performance-card h3 {
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
}

.about-performance-card .performance-left {
  flex: 0 0 42%;
}

.about-performance-card .performance-right {
  flex: 1;
  opacity: .9;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 991px) {
  .about-performance-card {
    flex-direction: column;
  }

  .about-performance-card .performance-left {
    flex: 1;
  }
}