* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #3E9535;
  --green-dark: #215f1f;
  --green-light: #78c06a;
  --text-dark: #151515;
  --text-soft: rgba(21, 21, 21, 0.72);
  --white: #ffffff;
  --offwhite: #f8faf7;
  --line: rgba(62, 149, 53, 0.22);
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}












/* =========================
   HIDE PAGE UNTIL INTRO ENDS
========================= */
.main-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.main-nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s ease;
}

.hero-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* keep your existing hero-corner-copy base */
.hero-corner-copy span,
.hero-corner-copy p,
.hero-line {
  opacity: 0;
  transform: translateY(20px);
}

.hero-corner-copy.animate span,
.hero-corner-copy.animate p,
.hero-corner-copy.animate .hero-line {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-corner-copy.animate span:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-corner-copy.animate span:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-corner-copy.animate p {
  animation-delay: 1s;
}

.hero-line {
  width: 0;
  height: 2px;
  background: #8fd583;
}

.hero-corner-copy.animate .hero-line {
  animation: lineGrow 0.8s ease forwards;
  animation-delay: 1.4s;
}

@keyframes lineGrow {
  to {
    width: 60px;
  }
}

/* =========================
   VIDEO INTRO OPENING
========================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}

/* IMPORTANT: this removes intro after video finishes */
.intro.hide-intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.introVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Flash that triggers when lightning appears in the video */
.introFlash {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
}

.introFlash.active {
  animation: introFlashBoom 0.65s ease;
}

@keyframes introFlashBoom {
  0% { opacity: 0; }
  16% { opacity: 0.95; }
  38% { opacity: 0.22; }
  62% { opacity: 0.72; }
  100% { opacity: 0; }
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 34%, rgba(0,0,0,0.76) 100%);
}

.content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 24px;
  text-align: center;
  pointer-events: none;
}

.storm-text {
  color: #fff;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.95s ease, transform 0.95s ease;
  text-shadow:
    0 0 12px rgba(255,255,255,0.18),
    0 0 30px rgba(120,180,255,0.12),
    0 10px 30px rgba(0,0,0,0.72);
}

.storm-text.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motto {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin-top: 0;
  text-shadow:
    0 0 14px rgba(255,255,255,0.28),
    0 0 36px rgba(120,200,255,0.18),
    0 12px 34px rgba(0,0,0,0.76);
}

.logo {
  line-height: 1;
}

.storm-logo-img {
  width: 420px;
  max-width: 54vw;
  display: block;
  transform: scale(0.97);
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.55))
    drop-shadow(0 0 18px rgba(120,200,255,0.22));
  transition: transform 0.75s ease, filter 0.75s ease;
}

#logo.show .storm-logo-img {
  transform: scale(1);
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,0.7))
    drop-shadow(0 0 22px rgba(120,200,255,0.34));
}

.tagline {
  font-size: clamp(20px, 2.9vw, 42px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c7ffc0;
}





/* =========================
   GENERAL
========================= */
.section-shell {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0d140e;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
/* HIDE WHOLE NAVBAR FIRST */
.main-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(9, 18, 10, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.main-nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav.hide-nav {
  transform: translateY(-110%);
}

.nav-inner {
  width: 96%;
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
  margin-right: auto;
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand-text {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  
}

.nav-links {
  display: flex;
  gap: 30px;
}


.nav-links a,
.mobile-menu a,
.mobile-menu .dropbtn {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.mobile-menu .dropbtn:hover {
  color: #8fd583;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px 4% 16px;
  background: rgba(6, 15, 7, 0.98);
  position: relative;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu > a,
.mobile-menu > .dropdown > .dropbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s ease;
  cursor: pointer;
}

.mobile-menu > a:hover,
.mobile-menu > .dropdown > .dropbtn:hover {
  color: #8fd583;
}

.mobile-menu .dropdown {
  position: relative;
}

.mobile-menu .dropdown-content {
  display: none;
  position: absolute;

  /* POSITION CONTROL */
  top: 30%;
  left: 20%;
  transform: translate(-20%, -50%);

  /* SIZE */
  min-width: 200px;
  max-width: 240px;

  /* STYLE */
  padding: 12px 16px;
  background: rgba(10, 22, 12, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);

  backdrop-filter: blur(10px);

  z-index: 999;
}
.mobile-menu .dropdown.open .dropdown-content {
  display: block;
}

.mobile-menu .dropdown-content a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-menu .dropdown-content a:last-child {
  border-bottom: none;
}

.mobile-menu .dropdown-content a:hover {
  color: #8fd583;
  padding-left: 8px;
}



/* HERO */
.hero-content {
  opacity: 1;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;

}


.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.18)),
    linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.08));
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 1;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(143,213,131,0.35);
  border-radius: 999px;
  color: #d7ffd0;
  background: rgba(255,255,255,0.06);
  letter-spacing: 0.18em;
  font-size: 20px;
  font-weight: 700;
}

.hero-title {
  color: #fff;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-shadow: 0 8px 30px rgba(0,0,0,0.26);
  font-family: "Archivo Black", sans-serif;
}
.code {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.hero-title,
.section-title {
  font-family: "Archivo Black", sans-serif;
}


.hero-corner-copy {
  position: absolute;
  left: 5%;
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}




.gallery-center-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.gallery-title-main {
  display: block;
}

.gallery-title-code {
  display: block;
  font-size: 18px;   /* make smaller here */
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 1px;
  color: #111;
}














.hero-corner-copy span,
.hero-corner-copy p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-line-wrap {
  width: 240px;
  height: 6px;
  overflow: hidden;
  margin: 14px 0 8px;
}

.hero-line {
  width: 0; /* start hidden */
  height: 2px;
  background: #8fd583;
  opacity: 1;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  position: relative;
}

.scroll-down span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #8fd583;
  animation: scrollDot 2s infinite;
}





/* HISTORY */
.history-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(62,149,53,0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
  overflow: visible;
}

.history-shell {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow: visible;
}

.history-left {
  flex: 0 0 52%;
  align-self: flex-start;
  overflow: visible;
}

.history-sticky {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(62,149,53,0.12);
  box-shadow: 0 24px 50px rgba(18, 54, 15, 0.08);
}

.history-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.history-divider {
  width: 1px;
  background: rgba(62,149,53,0.2);
  position: relative;
}

.history-divider span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
}



.history-sticky h2 {
  font-size: 33px;
  line-height: 1.05;
  margin: 14px 0 16px;
}


.history-year {
  font-weight: 800;
  font-size: 18px;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}


.history-sticky p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-soft);
}

.history-images {
  margin-top: 28px;
}

.history-slider {
  position: relative;
  width: 100%;
}

.history-slider-track {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
}

.history-slide {
  display: none;
  animation: historyFade 0.45s ease;
}

.history-slide.active {
  display: block;
}

.history-slide .history-image-card {
  min-height: 520px;
  border-radius: 26px;
}

.history-slide .history-image-card img {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: contain;

  background: #f8fbf7; /* nice soft bg for empty space */
}

.history-image-caption {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #172018;
  background: #ffffff;
  border-top: 1px solid rgba(62,149,53,0.08);
  letter-spacing: 0.02em;
}

.history-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 25, 18, 0.72);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.25s ease, background 0.25s ease;
}

.history-slider-btn:hover {
  background: rgba(33, 95, 31, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.history-slider-btn.prev {
  left: 14px;
}

.history-slider-btn.next {
  right: 14px;
}

.history-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.history-slider-dots button {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: rgba(62,149,53,0.22);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.history-slider-dots button.active {
  background: var(--green);
  transform: scale(1.18);
}

@keyframes historyFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   LEARN MORE BUTTON (K3 STYLE)
   ========================= */

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #24783A, #2F7D3C);
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(36, 120, 58, 0.25);
}

/* Hover effect */
.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(36, 120, 58, 0.35);
}

/* Click effect */
.learn-more-btn:active {
  transform: scale(0.96);
}

/* Shiny sweep animation */
.learn-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.learn-more-btn:hover::before {
  left: 130%;
}

/* Text styling */
.learn-more-btn span {
  position: relative;
  z-index: 2;
}

/* Optional arrow animation */
.learn-more-btn i {
  width: 18px;
  height: 2px;
  background: #fff;
  margin-left: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.learn-more-btn i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* Arrow move on hover */
.learn-more-btn:hover i {
  transform: translateX(5px);
}









/* SUSTAINABILITY */
.sustainability-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.sustainability-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7, 17, 8, 0.72), rgba(7, 17, 8, 0.3)),
    linear-gradient(to top, rgba(7, 17, 8, 0.28), rgba(255,255,255,0));
}

.sustainability-shell {
  position: relative;
  z-index: 2;
  width: min(1400px, 94%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sustainability-card {
  width: min(1100px, 100%);
  padding: 52px 50px;
  border-radius: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(199,255,192,0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.sustainability-card h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin: 14px 0 16px;
}

.sustainability-card p {
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.95;
}

.sustainability-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.s-point {
  min-width: 180px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(199,255,192,0.12);
}

.s-point strong {
  display: block;
  color: #baffb0;
  font-size: 22px;
  margin-bottom: 6px;
}

.s-point span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-gallery-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f4faf4, #e8f3e8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-center-wrapper {
  position: absolute;
  z-index: 5;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-center-title {
  position: absolute;
  z-index: 5;
  text-align: center;

  font-size: 42px;
  font-weight: 700;
  color: #2F7D3C;

  max-width: 800px;
  line-height: 1.3;

  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* ✨ NEW */
  background: rgba(255, 255, 255, 0.6); /* transparent white */
  backdrop-filter: blur(10px); /* glass effect */
  -webkit-backdrop-filter: blur(10px);

  padding: 20px 30px;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-center-titles {
  position: absolute;
  z-index: 5;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #2F7D3C;
  max-width: 800px;
  line-height: 1.3;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.floating-gallery {
  position: relative;
  width: 100%;
  height: 100vh;
}

.float-img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: floatMove 6s ease-in-out infinite;
}

.float-img:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

/* Different image sizes + positions */
.img1  { width: 350px; height: 240px; top: 8%; left: 8%; animation-delay: 0s; }
.img2  { width: 240px; height: 160px; top: 15%; right: 10%; animation-delay: 1s; }
.img3  { width: 170px; height: 170px; top: 35%; left: 5%; animation-delay: 2s; }
.img4  { width: 220px; height: 280px; top: 55%; left: 12%; animation-delay: 3s; }
.img5  { width: 190px; height: 140px; bottom: 10%; left: 30%; animation-delay: 4s; }
.img6  { width: 260px; height: 170px; top: 8%; left: 38%; animation-delay: 1.5s; }
.img7  { width: 160px; height: 220px; bottom: 12%; right: 12%; animation-delay: 2.5s; }
.img8  { width: 210px; height: 150px; top: 38%; right: 8%; animation-delay: 3.5s; }
.img9  { width: 180px; height: 250px; bottom: 20%; right: 32%; animation-delay: 4.5s; }
.img10 { width: 150px; height: 150px; top: 60%; left: 42%; animation-delay: 5s; }
.img11 { width: 240px; height: 160px; top: 6%; left: 62%; animation-delay: 0.5s; }
.img13 { width: 200px; height: 200px; top: 42%; left: 72%; animation-delay: 2.2s; }
.img15 { width: 160px; height: 240px; bottom: 8%; left: 6%; animation-delay: 4s; }
.img16 { width: 200px; height: 140px; top: 10%; left: 28%; animation-delay: 1.7s; }
.img19 { width: 150px; height: 150px; top: 27%; left: 48%; animation-delay: 4.4s; }
.img20 { width: 140px; height: 210px; bottom: 28%; left: 30%; animation-delay: 5.2s; }

@keyframes floatMove {
  0%   { transform: translateY(0px) translateX(0px); }
  25%  { transform: translateY(-12px) translateX(6px); }
  50%  { transform: translateY(0px) translateX(-6px); }
  75%  { transform: translateY(10px) translateX(4px); }
  100% { transform: translateY(0px) translateX(0px); }
}



/* Popup */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.gallery-popup.active {
  opacity: 1;
  visibility: visible;
}

.gallery-popup img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.close-popup {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 46px;
  color: white;
  cursor: pointer;
  font-weight: 300;
  line-height: 1;
}








/* STATS */
.stats-row {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  padding: 30px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(62,149,53,0.1);
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
  text-align: center;
}

.stat-box strong,
.stat-box span {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--green-dark);
}

.stat-box p {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
  line-height: 1.6;
}

/* VISION */
.vision-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(62,149,53,0.08), transparent 24%),
    linear-gradient(180deg, #0f1610 0%, #172119 100%);
}

.vision-section .section-heading h2 {
  color: #fff;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vision-card {
  padding: 34px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(199,255,192,0.12);
  box-shadow: 0 18px 38px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
}

.vision-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(62,149,53,0.18);
  color: #c7ffc0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-card p {
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.95;
}

/* CONTACT */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  margin: 14px 0 16px;
  font-weight: 800;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
}

.contact-form-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(62,149,53,0.1);
  box-shadow: 0 20px 44px rgba(0,0,0,0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(62,149,53,0.18);
  background: #f8fbf7;
  border-radius: 18px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(62,149,53,0.1);
}

.submit-btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(33,95,31,0.24);
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
  padding: 70px 0;
  background: #0d140e;
}

.footer-shell {
  text-align: center;
}

.footer-shell h3 {
  color: #c7ffc0;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-shell h4 {
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-shell p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 16px;
}

.footer-shell span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* REVEALS */
.reveal-up {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ANIMATION */
@keyframes lineSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.55; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.05); }
}


/* DROPDOWN */
.dropdown {
  position: relative;
  
}

.dropbtn {
  cursor: pointer;
}

/* dropdown box */
.dropdown-content {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: rgba(10, 20, 10, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  overflow-y: auto;
  max-height: 400px;
}
/* dropdown links */
.dropdown-content a {
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* hover effect */
.dropdown-content a:hover {
  background: rgba(62,149,53,0.2);
  padding-left: 26px;
  color: #8fd583;
}

/* show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}






/* make history images clickable */
.history-image-card img {
  cursor: pointer;
}

/* LIGHTBOX */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99999;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  transform: scale(0.92);
  transition: transform 0.3s ease;
  background: #fff;
}

.image-lightbox.active img {
  transform: scale(1);
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.image-lightbox-close:hover {
  background: rgba(255,255,255,0.24);
  transform: scale(1.06);
}

























/* =========================================================
   RESPONSIVE CSS
   REPLACE the old responsive block with this full version
========================================================= */

/* =========================
   LARGE TABLET / SMALL LAPTOP
   1200px and below
========================= */
@media (max-width: 1200px) {
  .nav-inner {
    width: 94%;
    min-height: 78px;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .brand-text {
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .hero-section {
    padding: 120px 4% 90px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-tag {
    font-size: 16px;
    padding: 9px 16px;
  }

  .hero-title {
    font-size: clamp(38px, 5vw, 64px);
  }

  .code {
    font-size: 18px;
  }

  .hero-corner-copy {
    left: 4%;
    bottom: 40px;
  }

  .hero-corner-copy span,
  .hero-corner-copy p {
    font-size: 20px;
  }

  .history-shell {
    gap: 20px;
  }

  .history-left {
    flex: 0 0 48%;
  }

  .history-sticky {
    padding: 28px;
  }

  .history-slide .history-image-card,
  .history-slider-track {
    min-height: 440px;
  }

  .history-slide .history-image-card img {
    max-height: 440px;
  }

  .sustainability-card {
    padding: 42px 38px;
  }

  .gallery-center-title {
    font-size: 34px;
    max-width: 680px;
    padding: 18px 24px;
  }

  .vision-grid {
    gap: 20px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-shell {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* =========================
   TABLET
   992px and below
========================= */
@media (max-width: 992px) {
  .section-shell {
    width: min(1280px, 94%);
  }

  .brand-text {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

.nav-links {
  display: none;
}

.nav-toggle {
  display: block;
  margin-left: auto;
  z-index: 1001;
}

.mobile-menu {
  padding: 12px 5% 14px;
  gap: 2px;
}

.mobile-menu > a,
.mobile-menu > .dropdown > .dropbtn {
  padding: 11px 0;
  font-size: 13px;
}

.mobile-menu .dropdown-content {
  padding: 8px 0 6px 12px;
}

.mobile-menu .dropdown-content a {
  padding: 9px 0;
  font-size: 12px;
}
  .hero-section {
    min-height: 100svh;
    padding: 125px 5% 90px;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-tag {
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(34px, 6vw, 56px);
    line-height: 1.08;
  }

  .code {
    font-size: 16px;
  }

  .hero-corner-copy {
    position: absolute;
    left: 5%;
    bottom: 34px;
    z-index: 2;
    width: auto;
    max-width: 56%;
    margin-top: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
    gap: 7px;
  }

  .hero-corner-copy span,
  .hero-corner-copy p {
    font-size: 16px;
    line-height: 1.3;
  }

  .scroll-down {
    bottom: 20px;
  }

  .history-section,
  .vision-section,
  .contact-section {
    padding: 90px 0;
  }

  .history-shell {
    flex-direction: column;
    gap: 26px;
  }

  .history-left,
  .history-right {
    width: 100%;
    flex: 1 1 100%;
  }

  .history-sticky {
    position: relative;
    top: unset;
    padding: 26px;
  }

  .history-divider {
    display: none;
  }

  .history-sticky h2 {
    font-size: 30px;
  }

  .history-slide .history-image-card,
  .history-slider-track {
    min-height: 400px;
  }

  .history-slide .history-image-card img {
    max-height: 400px;
  }

  .history-slider-btn {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }

  .sustainability-section {
    min-height: auto;
    padding: 90px 0;
  }

  .sustainability-card {
    padding: 34px 28px;
    border-radius: 26px;
  }

  .sustainability-card h2 {
    font-size: clamp(28px, 4vw, 42px);
  }

  .sustainability-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .sustainability-points {
    gap: 14px;
  }

  .s-point {
    min-width: calc(50% - 7px);
    flex: 1 1 calc(50% - 7px);
  }

  .floating-gallery-section {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .gallery-center-title {
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 720px;
    font-size: 28px;
    padding: 18px 20px;
  }

  .gallery-title-code {
    font-size: 15px;
    margin-top: 8px;
  }

  /* overlap gallery for tablet */
  .floating-gallery {
    width: min(760px, 92%);
    height: auto;
    margin: 170px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .float-img {
    position: relative;
    inset: auto !important;
    width: min(520px, 84%) !important;
    height: 250px !important;
    animation: none;
    border-radius: 20px;
    margin-top: -48px;
  }

  .float-img:first-child {
    margin-top: 0;
  }

  .float-img:nth-child(odd) {
    transform: translateX(-38px) rotate(-2deg);
    z-index: 2;
  }

  .float-img:nth-child(even) {
    transform: translateX(38px) rotate(2deg);
    z-index: 1;
  }

  .float-img:hover {
    transform: scale(1.03) translateY(-4px);
    z-index: 5;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vision-card {
    padding: 28px 24px;
  }

  .vision-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-box {
    padding: 26px 18px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-left h2 {
    font-size: clamp(30px, 4vw, 44px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MOBILE LANDSCAPE / LARGE PHONE
   767px and below
========================= */
@media (max-width: 767px) {
  .main-nav {
    background: rgba(7, 17, 8, 0.76);
    backdrop-filter: blur(12px);
  }

  .nav-inner {
    width: 92%;
    min-height: 72px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 54px);
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    white-space: normal;
  }

.mobile-menu .dropdown {
  position: relative;
}

.mobile-menu .dropdown-content {
  top: 30%;
  left: 40%;
  transform: translate(-8%, -50%);
  min-width: 150px;
  max-width: 170px;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-menu .dropdown-content a {
  padding: 8px 0;
  font-size: 11px;
}
  

.storm-logo-img {
  width: 240px;
  max-width: 72vw;
}

.tagline {
  font-size: clamp(18px, 5vw, 24px);
  letter-spacing: 0.05em;
}
  .hero-section {
    min-height: 100svh;
    padding: 116px 5% 88px;
  }

  .hero-grid {
    background-size: 28px 28px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .hero-tag {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(28px, 8.5vw, 42px);
    line-height: 1.12;
    letter-spacing: 0.02em;
  }

  .code {
    font-size: 14px;
    margin-top: 6px;
  }

  /* keep desktop feel on phone */
  .hero-corner-copy {
    position: absolute;
    left: 5%;
    bottom: 28px;
    z-index: 2;
    max-width: 72%;
    width: auto;
    margin-top: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
    gap: 5px;
  }

  .hero-corner-copy span,
  .hero-corner-copy p {
    font-size: 14px;
    line-height: 1.28;
  }

  .hero-line-wrap {
    width: 150px;
    margin: 10px 0 6px;
  }

  .hero-line {
    height: 2px;
  }

  .scroll-down {
  position: absolute;
  right: 16px;
  bottom: 20px;

  left: unset;          /* 👈 important */
  transform: none;      /* 👈 remove center alignment */
}
 

  .section-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .section-heading.center {
    margin-bottom: 42px;
  }

  .history-section,
  .vision-section,
  .contact-section {
    padding: 78px 0;
  }

  .history-sticky {
    padding: 20px;
    border-radius: 22px;
  }

  .history-sticky h2 {
    font-size: 24px;
    line-height: 1.12;
  }

  .history-sticky p,
  .history-block p {
    font-size: 14px;
    line-height: 1.8;
  }

  .history-block h3 {
    font-size: 20px;
    line-height: 1.25;
  }

  .history-year {
    font-size: 13px;

    
  }

  .history-slide .history-image-card,
  .history-slider-track {
    min-height: 300px;
  }

  .history-slide .history-image-card img {
    max-height: 300px;
  }

  .history-image-caption {
    font-size: 13px;
    padding: 14px 15px;
  }

  .history-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .history-slider-btn.prev {
    left: 8px;
  }

  .history-slider-btn.next {
    right: 8px;
  }

  .learn-more-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .sustainability-section {
    padding: 78px 0;
  }

  .sustainability-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .sustainability-card h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  .sustainability-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .s-point {
    min-width: 100%;
    flex: 1 1 100%;
    padding: 16px;
  }

  .s-point strong {
    font-size: 20px;
  }

  .s-point span {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .floating-gallery-section {
    padding: 102px 0 64px;
  }

  .gallery-center-title {
    top: 24px;
    width: calc(100% - 28px);
    font-size: 20px;
    line-height: 1.35;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .gallery-title-code {
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  /* overlapping mobile gallery */
  .floating-gallery {
    width: min(520px, 94%);
    height: auto;
    margin: 138px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
  }

  .float-img {
    position: relative;
    inset: auto !important;
    width: min(320px, 88%) !important;
    height: 210px !important;
    animation: none;
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
    margin-top: -40px;
  }

  .float-img:first-child {
    margin-top: 0;
  }

  .float-img:nth-child(odd) {
    transform: translateX(-18px) rotate(-2.5deg);
    z-index: 2;
  }

  .float-img:nth-child(even) {
    transform: translateX(18px) rotate(2.5deg);
    z-index: 1;
  }

  .float-img:hover {
    transform: scale(1.03) translateY(-4px);
    z-index: 5;
  }

  .gallery-popup img {
    max-width: 92%;
    max-height: 78%;
  }

  .close-popup {
    top: 18px;
    right: 22px;
    font-size: 38px;
  }

  .vision-grid {
    gap: 14px;
  }

  .vision-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .vision-label {
    font-size: 11px;
    padding: 8px 12px;
  }

  .vision-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-box {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .stat-box strong,
  .stat-box span {
    font-size: clamp(24px, 8vw, 34px);
  }

  .stat-box p {
    font-size: 12px;
    margin-top: 10px;
  }

  .contact-left h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .contact-left p {
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-form-card {
    padding: 20px;
    border-radius: 22px;
  }

  .field-group label {
    font-size: 13px;
  }

  .field-group input,
  .field-group textarea {
    font-size: 14px;
    padding: 14px 14px;
    border-radius: 14px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }

  .footer-shell {
    text-align: center;
  }

  .footer-shell h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .footer-shell h4 {
    font-size: 16px;
  }

  .footer-shell p,
  .footer-shell span {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================
   SMALL PHONE
   575px and below
========================= */
@media (max-width: 575px) {
  .nav-inner {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 12px;
  }

  .nav-toggle span {
    width: 22px;
    margin: 4px 0;
  }


  .storm-logo-img {
    width: 200px;
    max-width: 74vw;
  }

  .tagline {
    font-size: 16px;
  }

  .hero-section {
    min-height: 100svh;
    padding: 108px 4.5% 84px;
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-tag {
    font-size: 11px;
    padding: 6px 10px;
  }

  .hero-corner-copy {
    left: 4.5%;
    bottom: 24px;
    max-width: 76%;
  }

  .hero-corner-copy span,
  .hero-corner-copy p {
    font-size: 13px;
  }

  .history-sticky {
    padding: 18px;
  }

  .history-sticky h2 {
    font-size: 21px;
  }

  .history-slide .history-image-card,
  .history-slider-track {
    min-height: 250px;
  }

  .history-slide .history-image-card img {
    max-height: 250px;
  }

  .history-image-caption {
    font-size: 12px;
  }

  .history-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .gallery-center-title {
    font-size: 17px;
    padding: 14px 12px;
  }

  /* MOBILE GALLERY → 3 COLUMNS CLEAN GRID */
.floating-gallery {
  width: 100%;
  max-width: 520px;
  margin: 140px auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; /* space between images */
  padding: 0 10px;
}

.float-img {
  position: relative !important;
  inset: auto !important;

  width: 100% !important;
  height: 110px !important;

  border-radius: 10px;
  object-fit: cover;

  animation: none;
  transform: none !important; /* 🚨 VERY IMPORTANT */
  margin-top: 0 !important;   /* 🚨 REMOVE stacking */
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* hover effect */
.float-img:hover {
  transform: scale(1.05);
  z-index: 2;
}

/* 🚨 REMOVE THESE OLD STYLES */
.float-img:nth-child(odd),
.float-img:nth-child(even) {
  transform: none !important;
}

  .vision-card,
  .contact-form-card,
  .sustainability-card {
    border-radius: 18px;
  }

  .stat-box strong,
  .stat-box span {
    font-size: 26px;
  }
}

/* =========================
   EXTRA SHORT DEVICES
========================= */
@media (max-height: 700px) and (max-width: 992px) {
  .hero-section {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 74px;
  }

  .scroll-down {
    display: none;
  }
}



/* =========================
   MACBOOK AIR / PRO NAVBAR
   PUT THIS AT THE VERY BOTTOM
========================= */
@media (min-width: 993px) and (max-width: 1512px) {
  .main-nav .nav-inner {
    width: 94% !important;
    min-height: 72px !important;
  }

  .main-nav .brand {
    gap: 10px !important;
  }

  .main-nav .brand-logo {
    width: 74px !important;
    height: 74px !important;
  }

  .main-nav .brand-text {
    font-size: 20px !important;
    letter-spacing: 0.04em !important;
    line-height: 1.1 !important;
  }

  .main-nav .nav-links {
    gap: 18px !important;
  }

  .main-nav .nav-links a {
    font-size: 12px !important;
    letter-spacing: 0.07em !important;
  }
}





/* =========================================
   MID LAPTOP / SMALL WINDOW NAV FIX
   put this at the VERY bottom
========================================= */
@media (min-width: 993px) and (max-width: 1180px) {
  .main-nav .nav-inner {
    width: 96% !important;
    min-height: 68px !important;
  }

  .main-nav .brand {
    gap: 8px !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
  }

  .main-nav .brand-logo {
    width: 60px !important;
    height: 60px !important;
  }

  .main-nav .brand-text {
    font-size: 15px !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
  }

  .main-nav .nav-links {
    gap: 12px !important;
    flex-wrap: nowrap !important;
  }

  .main-nav .nav-links a,
  .main-nav .dropdown .dropbtn {
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
  }

  .main-nav .dropdown-content a {
    font-size: 12px !important;
  
  }
}





