:root {
  --green: #05a587;
  --l-green: #e6f6f3;
  --white: #ffff;
  --black: #0000;
  --dark-green: #014735;
  --light-green-bg: #014735;
  /* --light-white-bg: #014735; */
}

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

@font-face {
  font-family: "light-italic";
  src: url("fonts/Montserrat-Italic-VariableFont_wght.woff2") format("woff2"),
    url("font/Montserrat-Italic-VariableFont_wght.woff2") format("woff");
}

@font-face {
  font-family: "para-font";
  src: url("fonts/Montserrat-VariableFont_wght.woff2") format("woff2"),
    url("fonts/Montserrat-VariableFont_wght.woff2") format("woff");
}

@font-face {
  font-family: "bold-font";
  src: url("fonts/Righteous-Regular.woff2") format("woff2"),
    url("fonts/Righteous-Regular.woff2") format("woff");
}

@font-face {
  font-family: "mon-semiBold";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat-SemiBold.woff2") format("woff");
}

@font-face {
  font-family: "mon-regular";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
    url("fonts/Montserrat-Regular.woff2") format("woff");
}

@font-face {
  font-family: "mon-Medium";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2"),
    url("fonts/Montserrat-Medium.woff2") format("woff");
}

@font-face {
  font-family: "mon-Bold";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"),
    url("fonts/Montserrat-Bold.woff2") format("woff");
}

html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "medium", sans-serif;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

 
h1 {
  font-size: 5rem;
  color: var(--dark-green);
  font-family: bold-font;
  font-weight: 500;
}

h2 {
  font-size: 4.2rem;
  font-family: "bold-font";
  color: var(--dark-green);
  text-transform: uppercase;
  font-weight: 500;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
  color: var(--green);
  font-family: "bold-font";
  text-transform: uppercase;
  padding-bottom: 3rem;
}

h5 {
  font-size: 1.8rem;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  font-family: "para-font";
  padding-bottom: 1.5rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  font-size: 1.6rem;
  color: var(--dark-green);
  font-family: "mon-regular";
  line-height: 2.8rem;
  text-align: justify;
}

p span {
  font-size: 1.6rem;
  color: var(--dark-green);
  font-family: "mon-regular";
  line-height: 2.8rem;
  font-weight: 600;
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "mon-regular";
}

li {
  list-style: none;
}

/* ============= */
.wrapper-heading {
  max-width: 176rem;
  padding: 5rem 2.8rem 0rem 2.8rem;
  margin: auto;
}

.wrapper {
  max-width: 176rem;
  margin: auto;
  padding: 5rem 2.8rem;
}

.grid {
  display: grid;
  gap: 5rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-five-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* jitne sections nav se linked hain unke liye */
section[id] {
  scroll-margin-top: 10rem;
  /* approx header height + thoda gap */
}

/* ================= */
/* ================= */
/* navbar */
/* ================= */
/* ================= */
header {
  /* background-color: var(--dark-green); */
  width: 100%;
  position: fixed;
  z-index: 100;
  transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.mobile-social-icons {
  display: none;
}

.burger-icon {
  display: none;
}

.navbar {
  margin: 0 auto;
  padding: 2rem 2.8rem;
  width: 100%;
  max-width: 176rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out; */
}

.mobile-btn {
  display: none;
}

.ttu-btn {
  display: none;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-transform: capitalize;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.4rem;
}

/* default: underline hidden */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 33%;
  bottom: -0.2rem;
  width: 0;
  height: 0.2rem;
  background: var(--white);
  transition: width 0.3s ease;
}

/* sirf active link ke niche underline dikhani hai */
nav ul li a.underline::after {
  width: 23%;
}

.logo img {
  height: 6.5rem;
}

.btn {
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--green);
  padding: 1.7rem 2.5rem;
  border-radius: 33rem;
  font-size: 1.6rem;
  font-family: para-font;
}

/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
#menu-toggle {
  display: none;
}

/* ==========mobile responsive navbar======== */
/* ==========mobile responsive navbar======== */
/* ================= */
/* ================= */
/* banner */
/* ================= */
/* ================= */
.banner {
  background-image: url("assets/banner.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 90vh;
  position: relative;
  margin: 1rem 1rem 0rem 1rem;
  border-radius: 2rem;
}
 .barnner-mobile{
  display:none;
 }
.banner-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg,
      rgba(0, 0, 0, 0) 43.4038%,
      rgba(0, 0, 0, 0.788) 100%);
  border-radius: 2rem;
}

.banner .wrapper {
  text-align: left;
  /* Optional: limit width for better layout */
  width: 100%;
  /* Prevents shrinking */
}

.banner .wrapper h1 {
  font-size: 5.2rem;
  padding-bottom: 3rem;
  line-height: 5.5rem;
  text-transform: uppercase;
  color: var(--white);
   text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.banner .wrapper p {
  padding-bottom: 3rem;
  color: var(--white);
}

.banner-data a {
  font-size: 1.6rem;
  color: var(--white);
  background-color: var(--green);
  padding: 1.8rem 3rem;
  display: inline-flex;
  border-radius: 33rem;
  text-transform: uppercase;
  font-family: para-font;
}

.shape-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  /* background-image: url(assets/bbbb.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right; */
  height: 120px;
  background-color: var(--white);
  border-top-left-radius: 3rem;
  text-align: center;
}

.shape-box p {
  color: var(--dark-green) !important;
  max-width: 100%;
  position: absolute;
  bottom: -10px;
  right: 0px;
  padding: 0 2rem;
  line-height: 2.8rem;
}

.italic-font {
  font-family: "light-italic";
  font-weight: 400 !important;
}

.shape-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  height: 40px;
  width: 40px;
  background: transparent;
  box-shadow: 0 20px 0 0 var(--white);
  /* border-radius of pseudo element */
  border-bottom-left-radius: 50%;
  transform: scaleX(-1);
}

.shape-box::after {
  content: "";
  position: absolute;
  top: 69px;
  left: -53px;
  height: 66px;
  width: 40px;
  background: transparent;
  box-shadow: 0 20px 0 0 #ffffff;
  border-bottom-left-radius: 50%;
  transform: rotate(270deg);
}

/* ============= */
/* ============= */
.we-dont .wrapper{
  padding-bottom: 0rem;
}
.we-dont{
  display: none;
}
/* ============= */
/* ============= */
/* =========who-we-are========= */
/* =========who-we-are========= */
/* =========who-we-are========= */
/* =========who-we-are========= */
.who-we-are {
  position: relative;
  width: 100%;
}
.who-we-are .grid-two-cols {
    grid-template-columns: 1fr 1.1fr;
}

/* =========moving text========= */
/* =========moving text========= */
/* =========moving text========= */
/* =========moving text========= */
.moving-text {
  position: relative;
  width: 100%;
}

.moving-text .wrapper {
  padding: 5rem 0rem;
}

.scroll-section {
  background: white;
  overflow: hidden;
  position: relative;
}

.scroll-container {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}

.scroll-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-item {
  font-size: 2.4rem;
  font-family: "mon-semiBold";
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dot {
  width: 2rem;
  height: 2rem;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scroll-container:hover {
  animation-play-state: paused;
}

/* ==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos=======
==========Our Company Ethos======= */
.ethos,
.director {
  position: relative;
  max-width: 176rem;
  margin: 0 auto;
}
.director .grid-two-cols{
      grid-template-columns: 1fr 1.3fr;
}
.ethos-bg-1 {
  background-image: url(assets/ethos-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
    height: 647px;
  padding: 8rem 5rem; 
  position: relative;
  overflow: hidden;
}

.ethos-bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.938) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0) 100%);

  border-radius: 2rem;
  z-index: 0;
}

/* ================ */
.ethos-bg-2 {
  background-image: url(assets/ethos-bg2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
     height: 647px;
  padding: 8rem 5rem; 
  position: relative;
  overflow: hidden;
}

.ethos-bg-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
     height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0) 100%);

  border-radius: 2rem;
  z-index: 0;
}

/* ================ */
.ethos-bg-3 {
  background-image: url(assets/ethos-bg3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  width: 100%;
     height: 647px;
  padding: 8rem 5rem; 
  position: relative;
  overflow: hidden;
}

.ethos-bg-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
     height: 647px;

  /* LEFT DARK → RIGHT LIGHT BLACK GRADIENT */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0) 100%);

  border-radius: 2rem;
  z-index: 0;
}

.ethos-data {
  position: relative;
  z-index: 99;
}
.ethos-data h4{
  padding-bottom: 5rem;
}

.ethos-data ul li {
  color: var(--white);
  font-size: 1.8rem;
  font-family: "mon-regular";
  text-align: justify !important;
}

.e-li1,
.e-li2,
.e-li3 {
  padding-bottom:3rem;
}
.e-li1 strong{
    font-family: "mon-Bold";
}

.ethos-slider .owl-nav {
  position: absolute;
  right: 6rem;
  bottom: 7rem;
  background-color: var(--green);
    padding: 2rem 4.5rem;
  border-radius: 33rem;
  color: var(--white);
}

.ethos-slider .owl-prev {
  font-size: 2rem !important;
  position: absolute;
  left: 0rem;
  top: 0.5rem;
  border: none !important;
  background-color: transparent !important;
}

.ethos-slider .owl-next {
  font-size: 2rem !important;
  position: absolute;
  right: 0rem;
  top: 0.5rem;
  border: none !important;
  background-color: transparent !important;
}

.ethos-slider .ethos-data p {
  color: var(--white);
}

/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */
/* ==========Our Board of Directors======= */

.director-left p {
  padding-top: 2rem;
  width: 70%;
}

/* ============= */
/* ================= DIRECTOR RIGHT CARDS ================= */

.director-right {
  display: flex;
  justify-content: center;
}

.director-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
}

/* Card Base */
.director-card {
  position: relative;
  height: 520px;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  flex: 0.8;
  transition: flex 0.45s ease, transform 0.45s ease;
}

/* Expanded Card */
.director-card.active {
  flex: 1.8; 
}

/* Director Image */
.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Info */
.director-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3rem 5rem 3rem;
}

.director-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.9) 100%);
}

/* Name */
.director-name {
  color: var(--green);
  font-size: 2.1rem;
  font-family: "bold-font";
  padding-bottom: 0rem;
  z-index: 99;
}

/* Role */
.director-role {
  z-index: 99;
  opacity: 0.9;
  font-family: "light-italic";
  margin-bottom: 1.2rem;
  color: var(--white);
  padding-top: 1.5rem;
}

/* Description – hidden when collapsed */
/* Description – hidden when collapsed */
.director-desc {
   color: var(--white);
  z-index: 99;
  font-size: 1.6rem;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transform: translateY(5120px); /* bottom se start */
    transition:
    max-height 0.35s ease,
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-desc span {
  font-weight: bold;
  color: var(--white);
}

/* Show description only when card active */
.director-card.active .director-desc {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0); /* fade + move up */
}

/* Responsive */
@media (max-width: 900px) {
  .director-cards {
    flex-direction: column;
  }

  .director-card,
  .director-card.active {
    flex: 1;
    height: 420px;
  }
}

/* =========full-bg========= */
/* =========full-bg========= */
/* =========full-bg========= */
.light-bg {
  position: relative;
  background: linear-gradient(to bottom,
      #ffffff 0%,
      #ffffff 40%,
      #e9f3ec 40%,
      #e9f3ec 100%);
}

/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
/* ==========The Problem We Solve======= */
.we-solve {
  position: relative;
  width: 100%;
}

.we-solve-box .grid-two-cols {
  align-items: flex-end;
}

.wsb-box {
  margin-top: 6rem;
}

.wsb-box-data {
  background-color: var(--l-green);
  padding: 3rem;
  border-radius: 2.5rem;
  text-align: center;
}

.wsb-box-data img {
  width: 110px;
  height: 110px;
  margin-bottom: 2rem;
}

.wsb-box-data p {
  font-family: "mon-Medium";
  color: rgba(1, 71, 53, 0.8);
  text-align: center;
}

.we-solve-bottom {
  margin-top: 5rem;
}

.we-solve-bottom h6 {
  font-size: 2.1rem;
  font-family: "mon-Bold";
  padding-bottom: 1rem;
  color: var(--dark-green);
}
.wsb-mobile-box{
  display: none;
}
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
/* ==========Our Value Proposition======= */
.our-value {
  position: relative;
  width: 100%;
}

.our-value .grid-two-cols {
  align-items: flex-end;
}

/* ============= */
/* ============= */
/* ============= */
/* ============= */
/* MAIN WRAPPER */
.value-section-mobile{
  display: none;
}
.value-section {
  border-radius: 2.4rem;
  background: #ffffff;
  margin-top: 5rem;
}

/* HEADER TOP */
.value-header {
  display: flex;
  gap: 3rem;
  padding: 1rem 1.5rem 2.5rem;
}

.value-header-left {
  flex: 1.1;
}

.value-header-right {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4e5b63;
}

.small-title {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00a57a;
  margin-bottom: 0.6rem;
}

.value-header h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  color: #004a3b;
}

/* TABS BAR */
.value-tabs {
  display: flex;
  border-radius: 1.4rem;
  overflow: hidden; 
}

.value-tab {
  flex: 1;
  padding: 3rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 2.1rem;
  font-family: "bold-font";
  text-transform: uppercase;
  background: #f4f7f6;
  color: #004a3b;
  transition: background 0.25s ease, color 0.25s ease; 
}

.value-tab+.value-tab {
  border-left: 1px solid #dde4e0;
}

.value-tab.active {
  background: #05a587;
  color: #ffffff;
}

/* TAB PANES (BOTTOM AREA) */
.value-content {}

.value-pane {
  display: none;
  align-items: stretch;
  gap: 3rem;
  margin-top: 3rem;
}

.value-pane.active {
  display: flex;
}

.value-text {
  flex: 1;
  font-size: 1.4rem;
  color: #243339;
}

.value-text li {
  margin-bottom: 0.9rem;
  line-height: 5rem;
  font-size: 2.1rem;
  font-family: "mon-Medium";
  color: rgba(1, 71, 53, 0.8);
  display: flex;
  align-items: start;
  gap: 1.2rem;
}

.value-text li i {
  font-size: 0.7rem;
}

/* Image block */
.value-image {
  flex: 1;
  border-radius: 1.8rem;
  overflow: hidden;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .value-header {
    flex-direction: column;
  }

  .value-pane,
  .value-pane.active {
    flex-direction: column;
  }
}

/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
/* ==========Our Solution Stack======= */
.solution {
  position: relative;
  width: 100%;
}
.solution .s2-heading{
display: none;
}
.solution-left-box {
  background-color: var(--l-green);
  padding: 3rem;
  border-radius: 2.5rem;
}

.solution-left-box h5 {
  font-family: "bold-font";
  font-size: 2.1rem;
}

.solution-left-box p {
  font-family: "mon-Medium";
  font-size: 1.6rem;
  padding-top: 3rem;
}

.solution .grid-two-cols {
  grid-template-columns: 2.8fr 1fr;
}

.solution-right {
  position: relative;
}

.solution-right img {
  width: 100%;
  height: auto;
}
.solution-left .grid{
  gap: 3rem;
}
/* TOP CENTER */
.sr-heading {
  position: absolute;
  text-align: center;
  inset: 0;
  margin-top: 4rem;
}

/* TEXT COLORS */
.sr-heading h4 {
  margin: 0 auto;
  text-align: center;

  color: var(--white);
  padding-bottom: 2rem;
}

.sr-heading p {
  font-family: "mon-Medium";
  color: var(--white);
      text-align: center;
}

.os-btn {
  position: absolute;
  text-align: center;
  inset: 0;
  margin-top: 117%;
}

.solution-right a {
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--green);
  padding: 2rem;
  border-radius: 33rem;
  display: inline-block;
}
.solution-left-mobile{
  display: none;
}
.mobile-show{
  display: none;
}
 
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
/* =========benefits========= */
.benefits {
  width: 100%;
  margin-top: 2rem;
}
 

.benefits-bg {
  background-image: url(assets/benefits.png);
     background-size: 100% 100%;
  background-position: center;
  border-radius: 2rem;
  height: 600px;
  padding: 4rem 0rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.benefits-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2rem;

  /* SAME GRADIENT AS IMAGE */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

/* Button Fix */
.benefits-btn {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
}

.benefits-btn button {
  background: var(--dark-green);
  padding: 1.4rem 3rem;
  border-radius: 50rem;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "mon-Medium";
}

.benefits-btn .active {
  background: var(--green);
}

/* Title Section Align Left */
.benefits-data {
  margin-top: 12rem;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bd-left h5 {
  color: var(--green);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.bd-left h2 {
  color: #fff;
  font-size: 4rem;
  line-height: 1.3;
  max-width: 450px;
}

/* Right side cards (slider items) */
.bd-right {
  width: 55%;
}

.bgr-data {
  background: #fff;
    padding: 4rem;
  border-radius: 2rem;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.bgr-data p {
  font-size: 1.6rem;
  color: rgba(1, 71, 53, 0.8);
  text-align: center;
  font-family: "mon-Medium";
}

/* Pehle se jo CSS diya tha uske sath ye extra add kar do */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* optional: active tab button already hai */
.benefits-btn .tab-btn.active {
  background-color: var(--green);
}

.bd-right .owl-nav {
  position: absolute;
  right: 13rem;
  bottom: -7rem !important;
  background-color: var(--green);
     padding: 2rem 4.5rem;
  border-radius: 33rem;
  color: var(--white);
}

.bd-right .owl-prev {
  font-size: 2rem !important;
  position: absolute;
  left: 0rem;
  top: 0.5rem;
  border: none !important;
  background-color: transparent !important;
}

.bd-right .owl-next {
  font-size: 2rem !important;
  position: absolute;
  right: 0rem;
  top: 0.5rem;
  border: none !important;
  background-color: transparent !important;
}
.bd-left-desktop-hide{
  display: none;
}
.bd-right .owl-prev.disabled,
.bd-right .owl-next.disabled {
  opacity: 0.4;
  pointer-events: none; /* scroll block */
}
/* #benefits-functional .owl-stage,
#benefits-emotional .owl-stage {
  padding-right:  18rem !important;  
} */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
/* ==========Competitive Advantage======= */
.advantage {
  position: relative;
  width: 100%;
}
.advantage .grid-two-cols{
  grid-template-columns: 1fr 1.5fr;
}
.adv-mobile{
  display: none;
}
.ar-box {
  display: flex;
  align-items: self-start;
  gap: 2rem;
}

.ar-box i {
  color: var(--green);
  margin-top: 1rem;
  
    font-size: 0.7rem;
}

.ar-box p {
  font-size: 1.8rem;
  font-family: "mon-Medium";
}

/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
/* ==========Sustainability Commitments & Proof Points======= */
.proof {
  position: relative;
  width: 100%;
}
.proof-slider .wrapper{
      padding: 0rem 2.8rem;
}
.proof .wrapper-heading {
  text-align: center;
}

.proof .wrapper-heading h2 {
  max-width: 50%;
  margin: 0 auto;
}

.proof-slider {
  margin-top: 5rem;
}

.proof-data {
  margin: 0 auto;
  max-width: 40%;
  text-align: center;
}

.proof-data h3 {
  font-family: "mon-regular";
  line-height: 4rem;
  color: rgba(1, 71, 53, 0.8);
  font-weight: 500;
}

.proof-data h3 span {
  font-family: "mon-semiBold";
  font-weight: bold;
}

.proof-slider .owl-nav {
  position: absolute;
  /* color: var(--white); */
  top: 0%;
  left: 0%;
  width: 100%;
}

.proof-slider .owl-prev {
  position: absolute;
  left: 0%;
  top: 0;
  background-color: var(--green) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  font-size: 2rem !important;
  color: var(--white) !important;
}

.proof-slider .owl-next {
  position: absolute;
  right: 0% !important;
  top: 0;
  background-color: var(--green) !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  font-size: 2rem !important;
  color: var(--white) !important;
}

.proof-slider .owl-dot {
  margin-top: 6rem !important;
}

.proof-slider .owl-dot span {
  width: 15px !important;
  height: 15px !important;
}

.proof-slider .owl-dot.active span {
  background-color: var(--green) !important;
}

/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
/* ==========Our Future Vision======= */
.vision {
  position: relative;
  width: 100%;
}
.vision-data .wrapper{
  padding-top: 0rem;
}
.vd-left h4 {
  font-family: "mon-regular";
  font-size: 2.1rem;
  color: var(--dark-green);
  font-weight: 500;
  margin-top: 4rem;
  text-transform: capitalize;
}

.vd-left h4 span {
  font-family: "mon-semiBold";
}

.vd-right{
  text-align: right; 
}
.vd-right img {
  width: 90%;
  height: auto;
  margin-left:auto ;
  margin-top: 3rem;
}

.vd-left h3 {
  font-family: "mon-Medium";
  font-weight: 500;
  color: rgba(1, 71, 53, 0.4); 
  padding: 2rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 3.2rem;
  border-left: 5px solid var(--white);
}

.vd-left-1,
.vd-left-2,
.vd-left-3 {
  margin-bottom: 1rem;
}

.vd-left h3.active {
  background-color: rgb(230, 246, 243);
  border-left: 5px solid var(--green);
  color: var(--dark-green);
}

/* ========faqs========= */
/* ========faqs========= */
/* ========faqs========= */
/* ========faqs========= */
.faqs {
  position: relative;
  width: 100%;
  background-color: rgb(230, 237, 235);
}

.faqs-box {
  background-color: var(--blue);
  border-radius: 2rem; 
}

.faq-header-first {
  text-align: center;
  margin-bottom: 6rem;
}
.faq-header-first h5{
  text-transform: none;
}
/* ---------faq code-------- */

.faq-container .wrapper {
  padding: 0rem 4rem 4rem 4rem;
}

.faq-item.active {
  background-color: var(--white) !important;
}

.faq-item.closing {
  background-color: var(--blue);
  /* back to original, smoothly */
}

.faq-heading {
  margin: 0px 8rem 15px 5rem;
}

.faq-heading .faq-para11 {
  color: var(--light-gray);
  font-weight: 600;
}

.faq-heading .faq-para22 {
  color: var(--light-gray);
  padding-bottom: 3rem;
}

.faq-heading h1 {
  padding: 1rem 0 3rem 0;
  color: var(--blue);
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--blue);
  margin: 15px 0rem;
  transition: background-color 0.3s ease;
}

.faq-item.closing {
  background-color: var(--blue);
  /* transition to default */
}

.last-faq-item {
  margin: 15px 0rem 0px 0rem !important;
}

.faq-header {
  margin: 0px 35px;
  color: #fff;
  padding: 20px 0px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  /* transition: background-color 0.5s ease; */
  transition: all 0.3s ease;
  gap: 2rem;
}

.faq-title {
  display: flex;
  align-items: self-start;
  gap: 2rem;
}

.faq-number,
.faq-heading-text {
  transition: font-size 0.3s ease;
  font-size: 2.1rem;
  font-family: "bozon-bold";
  color: var(--red);
}

.faq-item.animating-open .faq-number,
.faq-item.animating-open .faq-heading-text {
  transition: font-size 0.3s ease;
}

.faq-item.active .faq-number,
.faq-item.active .faq-heading-text {
  font-size: 1.7rem;
}

.faq-number,
.faq-heading-text,
.faq-icon {
  color: var(--dark-green);
  font-size: 2.1rem;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  font-family: "mon-semiBold";
}

.faq-item.active .faq-number,
.faq-item.active .faq-heading-text,
.faq-item.active .faq-icon {
  color: var(--dark-green);
  font-size: 2.1rem;
  font-family: "mon-semiBold";
}

.faq-icon {
  font-size: 2.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  margin: 0 15px;
  padding: 0 20px;
  /* background-color: var(--blue); */
  transition: max-height 0.5s ease;
}

.faq-content.active {
  max-height: 600px;
  padding: 0px 20px 0px 20px;
}

.faq-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(1, 71, 53, 0.8);
  margin-bottom: 2rem;
  font-family: "mon-regular";
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}

.faq-text a {
  display: inline-block;
  font-weight: bold;
  color: var(--dark-green);
  text-decoration: underline;
}

/* =========contact us ========= */
/* =========contact us ========= */
/* =========contact us ========= */
/* =========contact us ========= */
.contact {
  position: relative;
  width: 100%;
  height: 100%;
}

/* .contact .wrapper {
  padding-top: 0rem;
} */

.contact .grid {
  gap: 0;
}

.contact-box {
  background-color: rgb(230, 246, 243);
  padding: 5rem;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.contact-box h2 {
  padding-bottom: 5rem;
}

.contact-box h1 {
  color: var(--blue);
  padding: 2rem 0 2rem 0;
  width: 90%;
}

#cc-para {
  padding-top: 2rem;
  font-family: "light-italic";
}

.contact-box p {
  width: 77%;
  color: rgba(1, 71, 53, 0.8);
}

/* ------- */
.contact-box-right {
  padding: 3rem 5rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  background-image: url(assets/contact.png);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.contact-box-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 71, 53, 0.8);
  z-index: 0 !important;
}

.contact-input-flex {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 99 !important;
}

.contact-input-flex input {
  z-index: 99 !important;
  width: 100%;
  padding: 2rem 3rem;
  border: none;
  outline: none;
  border-radius: 1rem;
  color: var(--dark-green);
  font-size: 1.6rem;
  font-family: "mon-regular";
}

input::placeholder {
  color: var(--dark-green);
  font-family: "mon-regular";
}

input {
  color: var(--dark-green);
  font-family: "mon-regular";
}

.cif-inpur input {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: "mon-regular";
}

.cfi-message {
  width: 100%;
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  border: none;
  outline: none;
  z-index: 99 !important;
  position: relative;
  font-family: "mon-regular";
  font-size: 1.6rem;
}

.cfi-message::placeholder {
  font-family: "mon-regular";
  font-size: 1.6rem;
}

.contact-agreement {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-family: "mon-regular";
}

/* =====custom dropdown select option=========  
     =====custom dropdown select option=========   */
.custom-select-wrapper {
  position: relative;
  min-width: 49%; 
}

.custom-select {
  position: relative;
  user-select: none;
}

.select-trigger {
  background: #fff;
  padding: 1.5rem 3rem;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  color: var(--blue);
}

.select-trigger span {
  font-family: "mon-regular";
  font-size: 1.6rem;
  color: var(--dark-green);

  display: block;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.select-trigger .arrow i {
  color: var(--dark-green);
  font-size: 2.5rem;
  margin-left: 10px;
}

.custom-options {
  position: absolute;
  top: 88%;
  left: 0;
  right: 0;
  background: var(--dark-green);
  z-index: 100;
  display: none;
  flex-direction: column;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.custom-option {
  padding: 0.8rem 3rem;
  cursor: pointer;
  color: var(--white);
  transition: all 0.2s ease-in-out;
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.custom-option:hover {
  color: var(--green);
}

.custom-option.selected {
  color: var(--green);
}

/* =====custom dropdown select option=========  
     =====custom dropdown select option=========   */

/* ===========for check box design in contact us======= */
/* ===========for check box design in contact us======= */

.checkbox-wrapper-19 {
  box-sizing: border-box;
  --background-color: #fff;
  --checkbox-height: 19px;
}

@-moz-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-19 {
  0% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-19 {
  0% {
    height: 0;
  }

  50% {
    height: 0;
  }

  100% {
    height: calc(var(--checkbox-height) * 1.2);
  }
}

.checkbox-wrapper-19 input[type="checkbox"] {
  display: none;
}

.checkbox-wrapper-19 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: calc(var(--checkbox-height) * 0.1) solid #ffffff;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}

.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * 0.2);
  background-color: #ffffff;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}

.checkbox-wrapper-19 .check-box::before {
  top: calc(var(--checkbox-height) * 0.72);
  left: calc(var(--checkbox-height) * 0.41);
  box-shadow: 0 0 0 calc(var(--checkbox-height) * 0) var(--background-color);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.checkbox-wrapper-19 .check-box::after {
  top: calc(var(--checkbox-height) * 0.37);
  left: calc(var(--checkbox-height) * 0.05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox-wrapper-19 input[type="checkbox"]:checked+.check-box,
.checkbox-wrapper-19 .check-box.checked {
  border-color: #ffffff;
}

.checkbox-wrapper-19 input[type="checkbox"]:checked+.check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.checkbox-wrapper-19 input[type="checkbox"]:checked+.check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}

/* ===========for check box design in contact us======= */
/* ===========for check box design in contact us======= */
.ca-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 99 !important;
}

.ca-agree p {
  color: var(--white);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.ca-agree a {
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: underline;
  font-family: "mon-regular";
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3rem; 
  background-color: var(--green);
  margin: 5rem auto 1rem;
  text-transform: uppercase;
  border-radius: 5rem;
  position: relative;
  border: none;
  cursor: pointer;
  left: 50%;
width: 208px;
height: 53px;
  transform: translate(-50%, -6%);
}

.contact-button h6 {
  color: var(--white);
  padding-left: 1rem;
  margin: 0;
  font-size: 1.6rem;
  font-family: "mon-Medium";
}

.contact-button .img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-button .img-wrapper::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-color: var(--white) !important;
  border-radius: 50%;
  z-index: 0;
}

.contact-button .img-wrapper img {
  position: relative;
  z-index: 1;
  width: 1rem;
  /* Optional: adjust image size */
  height: auto;
}

/* =======footer======== */
/* =======footer======== */
/* =======footer======== */
/* =======footer======== */
footer {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--dark-green);
}

footer .grid-four-cols {
  grid-template-columns: 0.6fr 1fr 1fr 0.5fr;
}

.footer-box1 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  text-transform: uppercase;
}

.footer-box1 ul li {
  padding: 1rem 0;
}

.footer-box1 ul li a {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

/* ----  */
.footer-box2 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  text-transform: uppercase;
}

.footer-box2 ul li {
  padding: 0.7rem 0;
}

.footer-box2 ul li   span {
  color: var(--green);
  font-size: 1.4rem;
  font-family: "mon-semiBold";
}

.footer-box2 ul li a {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}
.footer-box2 ul li  {
  color: rgba(241, 255, 251, 1);
  font-size: 1.4rem;
  font-family: "mon-regular";
}

.footer-box2-para-mob {
  color: var(--white) !important;
}

.f-emaill {
  text-decoration: underline;
}

/* <!-- ------  --> */

.footer-box3 p {
  color: var(--green);
  padding-bottom: 1.4rem;
  font-family: "bold-font";
  font-size: 1.6rem;
  text-transform: uppercase;
}

footer .footer-para2 {
  padding-bottom: 2.5rem;
}

.footer-box3 ul {
  display: flex;
  gap: 5rem;
}

.footer-box3 ul li p {}

.fb3-img {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.fb3-img a img {
  width: 80px;
  height: 80px;
}

/* ----------  */
.footer-box4 {
  display: flex;
  align-items: flex-end;
  justify-content: end;
  gap: 1rem;
  height: 62%;
}

.fb4-flex {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fb4-flex img {
  width: 25px;
  height: 25px;
}

.f-gmes-icon {
  width: 130px;
}

/* .f-ff {
  width: 30px !important;
  height: 30px !important;
} */

.subfooter {
  border-top: 1px solid var(--green);
  background-color: var(--dark-green);
}

.subfooter-box {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  margin: auto; 
  width: 100%;

   max-width: 176rem;
  padding: 2rem 2.8rem 2rem 2.8rem;
}

.subfooter-box div p {
  color: var(--white);
}

.subfooter-box div a {
  color: var(--green);
  text-decoration: underline;
}
.footer-sub-company a{
    display: inline-block;
    text-decoration: none !important;
    color: var(--white) !important;
  }
.footer-sub-company p,
.footer-sub-company a {
  font-size: 1.2rem;
  font-family: "mon-regular";
}

.devindia a {
  color: var(--white);
  text-decoration: none !important;
  font-size: 1.2rem;
}

.devindia a span {
  color: var(--white);
}

/* ==========scroll to top btn========= */
#scrollToTopBtn {
  position: fixed;
  bottom:105px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  border: 2px solid var(--green);
  color: var(--white);
  font-size: 2rem;
  background-color: var(--green);
}

#scrollToTopBtn i {}
.footer-box4-mobile{
  display: none;
}
/* =====privacy-po======= */
/* =====privacy-po======= */
/* =====privacy-po======= */
/* =====privacy-po======= */
.privacy-po {
  position: relative;
  width: 100%;
}

.privacy-bg {
  background-image: url(assets/pri.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: relative;
}

.privacy-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 59, 45, 0.8);
  z-index: 0;
}

.pb-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.pb-flex h2 {
  padding-bottom: 2rem;
  z-index: 999 !important;
  color: var(--white);
}

.pb-flex h5 {
  z-index: 999 !important;
  color: var(--white);
}

.pb-flex h5 a {
  color: var(--white);
  display: inline-block;
  font-size: 2.1rem;
}

.privacy-po h2 {
  padding-bottom: 2rem;
}

.privacy-po h5 {
  padding: 2rem 0;
}

.privacy-po ul li {
  font-size: 1.6rem;
  padding: 1rem 0;
  font-family: "mon-regular";
  list-style: circle;
  margin-left: 2rem;
}

/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* ==============landscape in mobile=============== */
/* Orientation overlay (hidden by default) */
/* overlay default hidden */
.orientation-overlay {
  position: fixed;
  inset: 0;
  display: none;
  /* shown by CSS media query / JS */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background: var(--green);
  pointer-events: auto;
}

.orientation-overlay .box {
  max-width: 720px;
}

.orientation-overlay h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 4.4vw, 28px);
  line-height: 1.05;
  color: var(--overlay-text);
}

.orientation-overlay p {
  margin: 0;
  font-size: clamp(14px, 3.2vw, 18px);
  color: var(--overlay-text);
  opacity: 0.95;
}

body.overlay-active {
  overflow: hidden;
  height: 100vh;
}

@media (orientation: landscape) and (max-width: 900px) {
  .orientation-overlay {
    display: flex;
    background: var(--green);
  }

  body {
    overflow: hidden !important;
    height: 100vh !important;
  }

  .box h2 {
    color: var(--white);
  }

  .site {
    filter: blur(1px);
  }
}