/* Orobor Minimalist Design System - Forest Green Edition */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

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

body{
  font-family:'Montserrat', sans-serif;
  background-color: #fff;
  color: #181818;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Prevent scrolling when mobile menu is active */
body.menu-open {
  overflow: hidden;
  overflow-x: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100vw;
}

/* Typography hierarchy */
/* h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #181818;
} */

.image-gradient{
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
}

.layer-blur{
  height: 0;
  width: 30rem;
  position: absolute;
  top:20%;
  right: 0;
  box-shadow:0 0 700px 15px white ;
  rotate: -30deg;
  z-index: 1;
}

.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  overflow: hidden;
  position: relative;
}

/* HEADER STYLES */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  position: relative;
}

header h1{
  margin: 0;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: .3rem;
  color: white;
}

/* Desktop Navigation */
.desktop-nav{
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-left: -5%;
  background: transparent;
  box-shadow: none;
}

.desktop-nav a{
  font-size: .85rem;
  letter-spacing: .1rem;
  transition: color .2s ease;
  text-decoration: none;
  color: white;
}

.desktop-nav a:hover{
  color: grey;
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10000;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-x: hidden;
  transform: translateX(100%);
}

.mobile-nav.active {
  right: 0;
  transform: translateX(0);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.mobile-nav-content a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.5s ease forwards;
}

.mobile-nav-content a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-content a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-content a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-content a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-content a:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-content a:hover {
  color: #64B5F6;
  transform: scale(1.1);
}

.mobile-signin {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 1rem 2rem !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-signin:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Dashboard Link */
.mobile-dashboard {
  background: linear-gradient(45deg, #c9a063, #8c4f00) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1rem 2rem !important;
  font-weight: 600 !important;
}

.mobile-dashboard:hover {
  background: linear-gradient(45deg, #8c4f00, #c9a063) !important;
  transform: scale(1.05) !important;
}

/* Mobile User Menu */
.mobile-user-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.mobile-user-email {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  opacity: 0.9;
  text-align: center;
}

.mobile-signout-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: .8rem;
  letter-spacing: .09rem;
  font-weight: 500;
  padding: .6rem 2rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.mobile-signout-btn:hover {
  background: #f2f2f2;
  color: #222;
  border: 2px solid #fff;
}

.btn-signIn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: .8rem;
  letter-spacing: .09rem;
  font-weight: 500;
  padding: .6rem 2rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  
}

.btn-signIn a{
  text-decoration: none;
}

.btn-signIn a:visited {
  color: inherit; /* Keep the same color when visited */
  text-decoration: none;
}

.btn-signIn a:hover,
.btn-signIn a:focus,
.btn-signIn a:active {
  color: inherit; /* Maintain consistent color */
  text-decoration: none;
}


.btn-signIn:hover {
  background: #f2f2f2;
  color: #222;
  border: 2px solid #fff;
}

/* Authentication and User Menu Styles */
.auth-button-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Profile Icon Button Styles */
.profile-icon-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.profile-icon-btn:hover {
  background: #fff;
  color: #222;
  transform: scale(1.05);
}

.mobile-profile-icon-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0.5rem 0;
  text-decoration: none;
}

.mobile-profile-icon-btn:hover {
  background: #fff;
  color: #222;
}

.auth-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: white;
  font-size: 1rem;
}

.mobile-auth-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: white;
  font-size: 1rem;
  margin: 0.5rem 0;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.user-email {
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  opacity: 0.9;
}

.btn-signout {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: .8rem;
  letter-spacing: .09rem;
  font-weight: 500;
  padding: .6rem 2rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-signout:hover {
  background: #f2f2f2;
  color: #222;
  border: 2px solid #fff;
}

/* Dashboard Navigation Styles */
.nav-dashboard {
  position: relative;
}

.nav-dashboard::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: transparent;
  border-radius: 4px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-dashboard:hover::before {
  opacity: 1;
}

.mobile-dashboard {
  position: relative;
  background: transparent;
  color: inherit;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  text-align: center;
  font-weight: 600;
}

/* MAIN CONTENT STYLES */

main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(90vh - 6rem);
}

.content{
  max-width: 40rem;
  margin-left: 10%;
  z-index: 999;
}

.tag-box{
  position: relative;
  width: 18rem;
  height: 2.5rem;
  border-radius: 50px;
  color: #338AFF;
  background: linear-gradient(-45deg, #338AFF, #64B5F6, #1976D2);
  background-size: 600%;
  animation: anime 2s linear infinite;
}

@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
 
.tag-box .tag{
  position: absolute;
  inset: 3px 3px 3px 3px;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
  cursor: pointer;
  color: #338AFF;
}



.content h1{
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin: 2rem auto;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(128,128,  128  , .418);

}

.description{
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  max-width: 35rem;
  color:gray;
  font-weight: 300;

}
/* HERO BUTTONS  */
.buttons {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.btn-about{
  text-decoration: none;
  border: 2px solid #fff;
  padding:0.7rem 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: black;
  letter-spacing: 0.1rem;
}



.btn-impact{
  text-decoration: none;
  background-color: #fff;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  border-radius: 50px;
  color: black;
  transition: all 0.3s ease;
  box-shadow: black;
  
}

.btn-about:hover{
  transform: translateY(-2px);
    background: transparent;
    border: 2px solid black;
    color: white;
    box-shadow: black; 
    background-color: black;
}

.btn-impact:hover{
  transform: translateY(-2px);
   
    
   
    box-shadow: black; /* Complementary blue shadow */
}

/* HERO BUTTONS  */

/* HERO SECTION RESPONSIVE STYLES */
@media (max-width: 1300px) {
  .content h1 {
    font-size: 2.8rem;
  }
  
  .description {
    font-size: 1.15rem;
    max-width: 32rem;
  }
  
  .btn-about,
  .btn-impact {
    font-size: 1.15rem;
    padding: 0.65rem 1.1rem;
  }
}

@media (max-width: 1024px) {
  .content h1 {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 1.1rem;
    max-width: 30rem;
  }
  
  .btn-about,
  .btn-impact {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
    margin: 1.5rem auto;
  }
  
  .description {
    font-size: 1rem;
    max-width: 28rem;
    letter-spacing: 0.03rem;
  }
  
  .buttons {
    gap: 0.8rem;
    margin-top: 2.5rem;
  }
  
  .btn-about,
  .btn-impact {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.08rem;
  }
}

@media (max-width: 480px) {
  .content {
    margin-left: 5%;
  }
  
  .content h1 {
    font-size: 1.6rem;
    margin: 1.2rem auto;
    letter-spacing: 0.08rem;
  }
  
  .description {
    font-size: 0.9rem;
    max-width: 25rem;
    letter-spacing: 0.02rem;
  }
  
  .buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
    align-items: flex-start;
  }
  
  .btn-about,
  .btn-impact {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    letter-spacing: 0.05rem;
    width: fit-content;
  }
}

@media (max-width: 320px) {
  .content {
    margin-left: 3%;
  }
  
  .content h1 {
    font-size: 1.4rem;
    margin: 1rem auto;
    letter-spacing: 0.05rem;
  }
  
  .description {
    font-size: 0.85rem;
    max-width: 22rem;
  }
  
  .buttons {
    margin-top: 1.5rem;
  }
  
  .btn-about,
  .btn-impact {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* HERO SECTION RESPONSIVE STYLES   */






/* 3D WORLD OBJECT  */


/* SCROLL SECTIONS - About Us & Process */
.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}



/* WHAT IS ORBOR SECTION */
.what-is-orbor-section {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-content: center;
  background: #fff;
}

.what-is-orbor-container {
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0rem;
}

.reveal-type {
  font-size: 4.3rem;
  font-weight: 600;
  color: #181818;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-wrap: balance;
}

/* Responsive breakpoints for reveal-type text */
@media (max-width: 1300px) {
  .reveal-type {
    font-size: 3.8rem;
  }
}

@media (max-width: 1024px) {
  .reveal-type {
    font-size: 3.2rem;
  }
  .what-is-orbor-section {
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .reveal-type {
    font-size: 2.5rem;
    letter-spacing: 0.08rem;
  }
  .what-is-orbor-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  .what-is-orbor-container {
    padding: 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .reveal-type {
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
    padding: 0 1rem;
  }
  .what-is-orbor-section {
    min-height: 50vh;
    padding: 1.5rem 0;
  }
  .what-is-orbor-container {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 320px) {
  .reveal-type {
    font-size: 1.5rem;
    letter-spacing: 0.03rem;
  }
  .what-is-orbor-section {
    min-height: 45vh;
    padding: 1rem 0;
  }
}

/* METRICS SECTION */
.metrics-section {
  width: 100vw;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3e7d3 0%, #e2c9a0 100%);
  position: relative;
  padding: 4rem 0 4rem 0;
  margin-left: calc(-50vw + 50%);
}

/* Video background for metrics section */
.video-metrics-section {
  position: relative;
  overflow: hidden;
  background: none;
}

.metrics-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(8px) brightness(0.3);
}

.metrics-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.metrics-container {
  position: relative;
  z-index: 3;
}

.metrics-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1400px;
  min-height: 80vh;
  gap: 6rem;
  position: relative;
  padding: 2rem 2.5rem;
  margin: 0 auto;
}

.metrics-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 1rem 2rem 2rem;
  position: relative;
  min-width: 320px;
}

/* Sticky header and blurb in metrics */
.metrics-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.metrics-header {
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #f0f0f0, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
  color: #ffffff;
}

.metrics-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.metrics-blurb {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 24rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out 0.3s;
}

.metrics-blurb.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.metrics-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 2rem 2rem 1rem;
}

.metric-label-container span {
  margin: 35px;
  /* align-items: baseline;  */
  
}

.orbor-difference {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  color: #ffffff !important;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
           
.metric.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.metric-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  height: 75px;
  width: 75px;
  transform: scale(1) !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.metric.animate-in .metric-icon {
  transform: scale(1);
}

/* Ensure icons are always visible */
.metric-icon i {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  color: #3498db !important;
  font-size: 2.8rem !important;
  z-index: 10 !important;
  position: relative !important;
}

/* Debug: Add fallback text if icons don't load */
.metric-icon::before {
  content: "●";
  color: #338AFF;
  font-size: 2rem;
  position: absolute;
  z-index: 5;
  display: none;
}

/* Show fallback if Font Awesome fails */
.metric-icon:not(:has(i))::before {
  display: block;
  border: none;
}

.fa-solid {
  color: #3498db !important;
  font-size: 3.5rem !important;
  width: auto;
  height: auto;
  line-height: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.metric-value, .metric-label {
  display: inline;

}

.metric-value {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-right: 0.5rem;
  transform: scale(0.8);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.metric.animate-in .metric-value {
  transform: scale(1);
}

.metric-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3498db;
  letter-spacing: 0.02em;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.metric.animate-in .metric-label {
  transform: translateY(0);
}

.metric-desc {
  display: block;
  font-size: 1.1rem;
  color: #c9a063;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.metrics-floating-text {
  position: sticky;
  top: 8rem;
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  line-height: 1.2;
  max-width: 28rem;
  z-index: 2;
  text-align: left;
  letter-spacing: 0.01em;
  border-left: 6px solid #FFA63D;
}

@media (max-width: 1300px) {
  .metrics-header {
    font-size: 3.8rem;
  }
  
  .metrics-blurb {
    font-size: 1.3rem;
  }
  
  .metric-value {
    font-size: 2.8rem;
  }
  
  .metric-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 1100px) {
  .metrics-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .metrics-left {
    text-align: center;
    align-items: center;
  }
  
  .metrics-sticky {
    align-items: center;
  }
  
  .metrics-left {
    padding: 2rem 1rem;
    width: 100%;
  }
  
  .metrics-sticky {
    position: static;
    align-items: center;
    text-align: center;
  }
  
  .metrics-header {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .metrics-blurb {
    max-width: 75%;
    font-size: 1.3rem;
    text-align: center;
  }
  
  .metrics-right {
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }
  
  .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    flex: 0 1 calc(50% - 1rem);
  }
  
  .metric-icon {
    margin-bottom: 1rem;
  }
  
  .metric-label-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .metric-label-container span {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .metrics-header {
    font-size: 2.8rem;
  }
  
  .metrics-blurb {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .metrics-right {
    gap: 1.5rem;
  }
  
  .metric {
    min-width: 150px;
    flex: 0 1 calc(50% - 0.75rem);
  }
  
  .metric-value {
    font-size: 2.8rem;
  }
  
  .metric-label {
    font-size: 1.3rem;
    color: #3498db;
  }
}

@media (max-width: 480px) {
  .metrics-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .metrics-header {
    font-size: 2.2rem;
  }
  
  .metrics-blurb {
    font-size: 1rem;
  }
  
  .metrics-right {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .metric {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-width: auto;
    flex: none;
    width: 100%;
    max-width: 300px;
  }
  
  .metric-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .metric-label-container {
    align-items: flex-start;
    text-align: left;
  }
  
  .metric-value {
    font-size: 2.2rem;
  }
  
  .metric-label {
    font-size: 1.1rem;
    color: #3498db;
  }
}

/* PROCESS SECTION */
.process-section {
  min-height: 100vh;
  padding: 4rem 0 6rem 0;
  background: linear-gradient(135deg, #ebf3fd 0%, #d6eaf8 100%);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.process-title {
  font-size: 4rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: titleReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.process-cards-container {
  display: flex;
  gap: 3rem;
  padding: 2rem 0 3rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
  justify-content: center;
  max-width: 100vw;
  width: 98vw;
  min-height: 600px;
}

.process-cards-container::-webkit-scrollbar {
  display: none;
}

.process-card {
  min-width: 400px;
  max-width: 470px;
  height: 700px;
  background: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
  border-radius: 18px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 0 12px 0 rgba(52, 152, 219, 0.08), 0 1px 4px 0 rgba(52, 152, 219, 0.04);
  position: relative;
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 1.5px solid #d1ecf1;
  z-index: 1;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 4px 24px 0 rgba(52, 152, 219, 0.10), 0 1px 4px 0 rgba(52, 152, 219, 0.06);
  border-color: #3498db;
}

.process-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(52, 152, 219, 0.10);
  flex-shrink: 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card:hover .card-img img {
  transform: scale(1.07);
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

.card-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  flex-shrink: 0;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  font-weight: 400;
  margin: 0;
  text-align: center;
  flex: 1;
}

@media (max-width: 900px) {
  .process-section {
    padding: 2rem 0 4rem 0;
    min-height: 110vh;
  }
  .process-cards-container {
    gap: 1.2rem;
    padding: 1rem 0 2rem 0;
    justify-content: flex-start;
    min-height: 400px;
  }
  .process-card {
    min-width: 300px;
    max-width: 90vw;
    height: 440px;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .card-img {
    height: 200px;
    margin-top: 0.75rem;
  }
  .card-content h3 {
    font-size: 1.1rem;
  }
  .card-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 1.5rem 0 2.5rem 0;
    min-height: 100vh;
  }
  .process-cards-container {
    justify-content: flex-start;
    padding: 0.5rem 0 1rem 0;
    min-height: 300px;
  }
  .process-card {
    min-width: 280px;
    max-width: 95vw;
    height: 500px;
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .card-img {
    height: 160px;
    margin-top: 0.5rem;
  }
}

/* ONE FOR THE COURT SECTION */
.one-for-court-section {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.one-for-court-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 160, 99, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.one-for-court-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.one-for-court-header {
  text-align: center;
  margin-bottom: 4rem;
}

.one-for-court-title {
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.one-for-court-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #5dade2);
  margin: 0 auto;
  border-radius: 2px;
}

.one-for-court-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.one-for-court-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.one-for-court-intro {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
}

.one-for-court-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #34495e;
  font-weight: 400;
  margin: 0;
}

.one-for-court-impact {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #3498db;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

.one-for-court-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.court-visual-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.court-visual-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #5dade2, #85c1e9);
  border-radius: 24px 24px 0 0;
}

.court-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  animation: heartPulse 2s ease-in-out infinite;
}

.court-icon i {
  font-size: 2.5rem;
  color: white;
}

@keyframes heartPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
  }
}

.court-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3498db;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: 600;
  text-align: center;
}

.stat-arrow {
  color: #3498db;
  font-size: 1.5rem;
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Responsive Design for One for the Court Section */
@media (max-width: 1200px) {
  .one-for-court-title {
    font-size: 3.5rem;
  }
  
  .one-for-court-content {
    gap: 3rem;
  }
  
  .one-for-court-intro {
    font-size: 1.3rem;
  }
  
  .one-for-court-description,
  .one-for-court-impact {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .one-for-court-section {
    padding: 4rem 1.5rem;
  }
  
  .one-for-court-title {
    font-size: 3rem;
  }
  
  .one-for-court-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .one-for-court-text {
    order: 1;
  }
  
  .one-for-court-visual {
    order: 2;
  }
  
  .court-visual-container {
    padding: 2rem 1.5rem;
  }
  
  .court-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .one-for-court-section {
    padding: 3rem 1rem;
  }
  
  .one-for-court-title {
    font-size: 2.5rem;
  }
  
  .one-for-court-intro {
    font-size: 1.2rem;
  }
  
  .one-for-court-description,
  .one-for-court-impact {
    font-size: 1rem;
  }
  
  .court-visual-container {
    padding: 1.5rem 1rem;
  }
  
  .court-icon {
    width: 60px;
    height: 60px;
  }
  
  .court-icon i {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* RENEWABLE ENERGY SECTION */
.renewable-section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  position: relative;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
}

.renewable-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(51, 138, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(51, 138, 255, 0.03) 0%, transparent 50%);
  animation: energyPulse 4s ease-in-out infinite;
}

@keyframes energyPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.renewable-container {
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  padding: 2rem;
  position: relative;
  z-index: 2;
  margin-left: calc(-50vw + 50%);
}

.renewable-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 3rem;
  color: #ffffff;
}

.text-part {
  font-size: 3.5rem;
  font-weight: 300;
  color: #ffffff;
  opacity: 0;
  transform: translateY(50px);
  animation: textReveal 0.8s ease-out forwards;
}

.text-part:nth-child(1) { animation-delay: 0.2s; }
.text-part:nth-child(2) { animation-delay: 0.4s; }
.text-part:nth-child(3) { animation-delay: 0.6s; }
.text-part:nth-child(4) { animation-delay: 0.8s; }
.text-part:nth-child(5) { animation-delay: 1.0s; }
.text-part:nth-child(6) { animation-delay: 1.2s; }

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bold-text {
  font-weight: 700 !important;
  color: #3498db !important;
  text-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

.highlight-text {
  font-weight: 800 !important;
  background: linear-gradient(45deg, #3498db, #5dade2, #85c1e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
  from {
    filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.2));
  }
  to {
    filter: drop-shadow(0 0 25px rgba(52, 152, 219, 0.5));
  }
}

.energy-icon {
  font-size: 4rem;
  color: #3498db;
  opacity: 0;
  animation: iconFloat 3s ease-out 1.5s forwards, iconPulse 2s ease-in-out infinite 2.5s;
}

@keyframes iconFloat {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(51, 138, 255, 0.5));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(51, 138, 255, 0.8));
  }
}

/* Responsive design for renewable section */
@media (max-width: 768px) {
  .text-part {
    font-size: 2.5rem;
  }
  
  .energy-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .text-part {
    font-size: 2rem;
  }
  
  .energy-icon {
    font-size: 2.5rem;
  }
  
  .renewable-text {
    gap: 0.3rem;
  }
}

/* IMPACT GALLERY SECTION */
.impact-gallery-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  z-index: 10;
}

.gallery-title {
  font-size: 5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 1s ease-out 0.3s forwards;
}

.gallery-container {
  position: relative;
  width: 95vw;
  max-width: 1400px;
  height: 75vh;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

.gallery-container:hover {
  transform: scale(1);
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide.prev {
  transform: translateX(-100%);
}

.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.5s ease;
}

.gallery-slide.active .slide-image img {
  filter: brightness(0.7);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.slide-content {
  text-align: center;
  max-width: 900px;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out 0.3s;
}

.gallery-slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #338AFF;
  text-shadow: 0 0 30px rgba(51, 138, 255, 0.6);
  letter-spacing: 0.05em;
  transform: scale(0.9);
  transition: transform 0.6s ease-out 0.5s;
}

.gallery-slide.active .slide-title {
  transform: scale(1);
}

.slide-description {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
  color: #e0e0e0;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease-out 0.7s;
}

.gallery-slide.active .slide-description {
  transform: translateY(0);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  z-index: 10;
}

.control-btn {
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.3);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
  transform: scale(0.9);
}

.control-btn:hover {
  background: rgba(51, 138, 255, 0.3);
  border-color: #338AFF;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(51, 138, 255, 0.4);
}

.control-btn:active {
  transform: scale(0.95);
}

.control-btn i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.control-btn:hover i {
  transform: scale(1.2);
}

.slide-indicators {
  display: flex;
  gap: 1.5rem;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.8);
}

.indicator.active {
  background: #338AFF;
  border-color: #338AFF;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(51, 138, 255, 0.6);
}

.indicator:hover {
  background: rgba(51, 138, 255, 0.7);
  transform: scale(1.1);
}

/* Responsive design for gallery section */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 3rem;
  }
  
  .gallery-container {
    width: 98vw;
    height: 65vh;
  }
  
  .slide-title {
    font-size: 3rem;
  }
  
  .slide-description {
    font-size: 1.2rem;
  }
  
  .slide-overlay {
    padding: 2.5rem;
  }
  
  .control-btn {
    width: 60px;
    height: 60px;
  }
  
  .control-btn i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 2.5rem;
  }
  
  .gallery-container {
    height: 55vh;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-description {
    font-size: 1.1rem;
  }
  
  .slide-overlay {
    padding: 2rem;
  }
  
  .gallery-controls {
    gap: 2rem;
  }
  
  .control-btn {
    width: 50px;
    height: 50px;
  }
  
  .control-btn i {
    font-size: 1.2rem;
  }
}



/* Hero Section with Video Background */
.hero-section.video-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  min-width: 100vw;
  object-fit: cover;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-section .content,
.hero-section .content h1,
.hero-section .content p,
.hero-section .content .tag-box,
.hero-section .content .btn-about,

.hero-section .content {
  color: #fff !important;
}
/* .hero-section nav a {
  color: #fff !important;
} */

.parallax-process {
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.parallax-step {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.parallax-header {
  background: linear-gradient(135deg, #f7f3ee 0%, #e2c9a0 100%);
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.parallax-title {
  font-size: 4rem;
  font-weight: 800;
  color: #8c4f00;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  text-shadow: 0 4px 32px rgba(140, 79, 0, 0.08);
  text-align: center;
}

.parallax-content {
  background: rgba(255,255,255,0.82);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 rgba(140, 79, 0, 0.07);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 600px;
  width: 90vw;
  text-align: center;
  margin: 4rem 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.parallax-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8c4f00;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.parallax-content p {
  font-size: 1.2rem;
  color: #5a3a13;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .parallax-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .parallax-content {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .parallax-content h2 {
    font-size: 1.2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
  .parallax-step {
    min-height: 40vh;
  }
}

@media (max-width: 600px) {
  .parallax-title {
    font-size: 1.3rem;
  }
  .parallax-content {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
  .parallax-step {
    min-height: 30vh;
  }
}

.header-logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.orobor-logo-small {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* SVG Logo Styles */
.orobor-logo-svg {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.orobor-logo-white {
  filter: invert(1) brightness(2);
}
.orobor-logo-brown {
  filter: sepia(1) saturate(8) hue-rotate(5deg) brightness(0.7);
}

/* Horizontal Timeline Process Section */
.horizontal-timeline-section {
  width: 100vw;
  padding: 4rem 0 3rem 0;
  background: #f7f7f7;
  overflow-x: auto;
}
.process-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #000000;
  letter-spacing: 0.1em;
}
.timeline-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  overflow-x: auto;
  padding-bottom: 3rem;
}
.timeline-progress-bar {
  position: absolute;
  top: 50%;
  left: 8vw;
  right: 8vw;
  height: 6px;
  background: #e2c9a0;
  border-radius: 3px;
  z-index: 1;
  transform: translateY(-50%);
}
.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c9a063 0%, #8c4f00 100%);
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(.4,2,.6,1);
}
.timeline-cards-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding: 2rem 8vw 0 8vw;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: center;
}
.timeline-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(140, 79, 0, 0.10), 0 2px 12px 0 rgba(140, 79, 0, 0.06);
  min-width: 420px;
  max-width: 440px;
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.timeline-card-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.7rem;
  border: 5px solid #e2c9a0;
  box-shadow: 0 3px 12px 0 rgba(140, 79, 0, 0.10);
}
.timeline-card-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.7rem;
  text-align: center;
}
.timeline-card-content p {
  font-size: 1rem;
  color: #2c3e50;
  text-align: center;
}
@media (max-width: 900px) {
  .timeline-cards-wrapper {
    gap: 2rem;
    padding: 2rem 2vw 0 2vw;
  }
  .timeline-card {
    min-width: 300px;
    max-width: 320px;
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .timeline-card-img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 600px) {
  .horizontal-timeline-section {
    padding: 2rem 0 1.5rem 0;
  }
  .timeline-cards-wrapper {
    gap: 1rem;
    padding: 1rem 1vw 0 1vw;
  }
  .timeline-card {
    min-width: 180px;
    max-width: 200px;
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
  .timeline-card-img {
    width: 40px;
    height: 40px;
  }
}

/* Timeline Container Animation Hook */
.timeline-container.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s cubic-bezier(.4,2,.6,1), transform 1.2s cubic-bezier(.4,2,.6,1);
}
.timeline-container {
  opacity: 0;
  transform: translateY(60px);
}

/* Process Section - Vertical Scroll-Triggered Animation */
.process-vertical-section {
  width: 100vw;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.parallax-element {
  position: absolute;
  opacity: 0.1;
}

.parallax-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3498db 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  animation: float 20s ease-in-out infinite;
}

.parallax-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #5dade2 0%, transparent 70%);
  border-radius: 50%;
  bottom: 20%;
  left: 15%;
  animation: float 25s ease-in-out infinite reverse;
}

.parallax-line-1 {
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #3498db, transparent);
  top: 30%;
  left: 20%;
  animation: slide-vertical 15s ease-in-out infinite;
}

.parallax-line-2 {
  width: 2px;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #5dade2, transparent);
  top: 50%;
  right: 25%;
  animation: slide-vertical 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes slide-vertical {
  0%, 100% { transform: translateY(0px) scaleY(1); }
  50% { transform: translateY(-50px) scaleY(1.2); }
}

/* Process Container */
.process-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Process Header */
.process-header {
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
}

.process-title {
  font-size: 5rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.process-subtitle {
  font-size: 1.6rem;
  color: #7f8c8d;
  font-weight: 400;
  margin-bottom: 3rem;
}

/* Progress Line */
.process-progress-line {
  width: 100px;
  height: 4px;
  background: rgba(52, 152, 219, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3498db, #5dade2);
  width: 0%;
  border-radius: 2px;
  transition: width 0.8s ease-out;
}

/* Process Steps Vertical */
.process-steps-vertical {
  position: relative;
}

.process-step-vertical {
  display: flex;
  margin-bottom: 12rem;
  position: relative;
  align-items: flex-start;
  gap: 4rem;
}

.process-step-vertical:last-child {
  margin-bottom: 0;
}

/* Step Indicator */
.step-indicator {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.step-icon-morph {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.6s ease;
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.step-icon-morph i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.step-icon-morph:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.step-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3498db;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
  margin-bottom: 2rem;
}

/* Step Connector */
.step-connector {
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, #3498db, #5dade2);
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.process-step-vertical:last-child .step-connector {
  display: none;
}

/* Step Content Vertical */
.step-content-vertical {
  flex: 1;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.process-step-vertical[data-step="2"] .step-content-vertical {
  flex-direction: row-reverse;
}

/* Step Image Container */
.step-image-container {
  flex: 1;
  position: relative;
}

.step-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.6s ease;
}

.step-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.step-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.step-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Floating Icons */
.image-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.floating-icon i {
  font-size: 1.2rem;
  color: #3498db;
}

.floating-1 { top: 20%; right: 20%; animation: float-1 6s ease-in-out infinite; }
.floating-2 { bottom: 30%; left: 15%; animation: float-2 8s ease-in-out infinite; }
.floating-3 { top: 15%; left: 20%; animation: float-1 7s ease-in-out infinite; }
.floating-4 { bottom: 20%; right: 25%; animation: float-2 9s ease-in-out infinite; }
.floating-5 { top: 25%; right: 15%; animation: float-1 5s ease-in-out infinite; }
.floating-6 { bottom: 25%; left: 20%; animation: float-2 10s ease-in-out infinite; }

@keyframes float-1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
}

/* Step Text Content */
.step-text-content {
  flex: 1;
  padding: 2rem;
}

.step-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.step-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Step Features Grid */
.step-features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(52, 152, 219, 0.1);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.3rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 1rem;
  color: #7f8c8d;
  margin: 0;
  line-height: 1.5;
}

/* Animation Classes */
[data-animate] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-animate].animate-in {
  opacity: 1;
}

[data-animate="fade-up"] {
  transform: translateY(50px);
}

[data-animate="fade-up"].animate-in {
  transform: translateY(0);
}

[data-animate="slide-right"] {
  transform: translateX(-100px);
}

[data-animate="slide-right"].animate-in {
  transform: translateX(0);
}

[data-animate="slide-left"] {
  transform: translateX(100px);
}

[data-animate="slide-left"].animate-in {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-vertical-section {
    padding: 6rem 0;
  }
  
  .process-title {
    font-size: 4rem;
  }
  
  .process-header {
    margin-bottom: 6rem;
  }
  
  .process-step-vertical {
    margin-bottom: 10rem;
    gap: 3rem;
  }
  
  .step-title {
    font-size: 3rem;
  }
}

@media (max-width: 900px) {
  .process-vertical-section {
    padding: 4rem 0;
  }
  
  .process-container {
    padding: 0 1.5rem;
  }
  
  .process-title {
    font-size: 3rem;
  }
  
  .process-header {
    margin-bottom: 5rem;
  }
  
  .process-step-vertical {
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem;
    gap: 3rem;
  }
  
  .step-content-vertical {
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .step-indicator {
    order: 1;
  }
  
  .step-image-container {
    order: 2;
  }
  
  .step-text-content {
    order: 3;
    text-align: center;
    padding: 1rem;
  }
  
  .step-title {
    font-size: 2.5rem;
  }
  
  .step-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .process-vertical-section {
    padding: 3rem 0;
  }
  
  .process-title {
    font-size: 2.5rem;
  }
  
  .process-subtitle {
    font-size: 1.3rem;
  }
  
  .process-header {
    margin-bottom: 4rem;
  }
  
  .process-step-vertical {
    margin-bottom: 6rem;
  }
  
  .step-icon-morph {
    width: 60px;
    height: 60px;
  }
  
  .step-icon-morph i {
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 2rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
  
  .step-image-wrapper img {
    height: 300px;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .process-vertical-section {
    padding: 2rem 0;
  }
  
  .process-container {
    padding: 0 1rem;
  }
  
  .process-title {
    font-size: 2rem;
  }
  
  .process-subtitle {
    font-size: 1.1rem;
  }
  
  .step-title {
    font-size: 1.8rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .step-image-wrapper img {
    height: 250px;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon i {
    font-size: 1rem;
  }
}



.section-header {
  text-align: center;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  position: relative;
}

@media (max-width: 900px) {
  .section-header {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .section-header {
    font-size: 2.5rem;
  }
}

/* Environmental Impact Section - New Interactive Cards Layout */
.impact-section {
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(41, 128, 185, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.impact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.impact-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.impact-subtitle {
  font-size: 1.3rem;
  color: #2c3e50;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 2;
}
/* Impact Cards */
.impact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.impact-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #5dade2, #85c1e9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.impact-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.impact-card[data-impact="emissions"] .card-icon {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.impact-card[data-impact="carbon"] .card-icon {
  background: linear-gradient(135deg, #5dade2, #3498db);
}

.impact-card[data-impact="microplastics"] .card-icon {
  background: linear-gradient(135deg, #85c1e9, #5dade2);
}

.impact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #34495e;
  margin: 0;
}

.impact-stats {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(52, 152, 219, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3498db;
  line-height: 1;
}

.stat-unit {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2980b9;
  margin-top: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #2c3e50;
  margin-top: 0.5rem;
}
/* Progress Bars */
.progress-section {
  margin-top: auto;
}

.progress-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3498db, #5dade2);
  border-radius: 4px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  font-size: 0.85rem;
  color: #2c3e50;
  font-weight: 500;
}

/* Card Overlays */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(93, 173, 226, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 24px;
  padding: 2rem;
}

.impact-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.impact-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.overlay-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.solution-impact {
  display: flex;
  justify-content: center;
}

.impact-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}
/* Responsive Design for Impact Cards */
@media (max-width: 1200px) {
  .impact-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .impact-section {
    padding: 4rem 1.5rem;
  }
  
  .impact-title {
    font-size: 3rem;
  }
  
  .impact-subtitle {
    font-size: 1.1rem;
  }
  
  .impact-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 2rem;
  }
  
  .impact-card {
    padding: 2rem;
    min-height: 450px;
  }
  
  .card-title {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 3rem 1rem;
  }
  
  .impact-title {
    font-size: 2.5rem;
  }
  
  .impact-subtitle {
    font-size: 1rem;
  }
  
  .impact-card {
    padding: 1.5rem;
    min-height: 400px;
  }
  
  .card-header {
    margin-bottom: 1.5rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
  
  .card-description {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}
@media (max-width: 700px) {
  .impact-slide-title { font-size: 2rem; }
  .impact-slide-description { font-size: 1.1rem; }
  .impact-slide-content { padding: 1.5rem 0.5rem; }
}

.impact-section-header {
  width: 100vw;
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  color: #338AFF;
  margin: 0 auto 2rem auto;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 20;
  position: relative;
}
@media (max-width: 700px) {
  .impact-section-header {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.impact-section-header-overlay {
  position: absolute;
  top: 7vh;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 30;
  text-align: center;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 2px 8px rgba(51, 138, 255, 0.18);
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
  pointer-events: none;
}
@media (max-width: 700px) {
  .impact-section-header-overlay {
    font-size: 1.5rem;
    top: 4vh;
  }
}

/* RESPONSIVE NAVIGATION BREAKPOINTS */
@media (max-width: 1300px) {
  /* Hide desktop navigation and auth button container */
  .desktop-nav,
  .auth-button-container {
    display: none;
  }
  
  /* Show hamburger menu */
  .hamburger-btn {
    display: flex;
  }
  
  /* Ensure mobile navigation is properly styled */
  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 2rem;
  }
  
  header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1rem 1.5rem;
  }
  
  header h1 {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
  }
  
  .header-logo-title {
    gap: 0.5rem;
  }
  
  .orobor-logo-svg {
    height: 40px;
  }
  
  .mobile-nav-content a {
    font-size: 1.2rem;
    gap: 2rem;
  }
  
  .mobile-signin {
    padding: 0.8rem 1.5rem !important;
    font-size: 1.1rem;
  }
}

/* FOOTER STYLES */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-text {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

.footer-mission {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Contact Column */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item i {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 0.1rem;
  min-width: 16px;
}

.contact-item span {
  color: #ffffff;
  opacity: 0.9;
}

/* Hours Column */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hours-item {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}

.hours-item strong {
  color: #ffffff;
  font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.8;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  opacity: 1;
}

.footer-powered {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

/* Footer Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 3rem 0 0 0;
  }
  
  .footer-container {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-tagline {
    font-size: 1.2rem;
  }
  
  .footer-mission {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding: 1rem 0;
  }
  
  .footer-bottom-content {
    padding: 0 1rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
}







/* Option 4: Magazine Layout */
.about-section.magazine-layout {
  width: 100vw;
  min-height: 100vh;
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-section.magazine-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.03) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(201, 160, 99, 0.02) 50%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.about-section.magazine-layout .about-container {
  max-width: 1400px;
  width: 90vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-section.magazine-layout .about-image-col {
  position: relative;
}

.about-section.magazine-layout .about-staff-img {
  width: 100%;
  max-width: 600px;
  border-radius: 0;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  position: relative;
}

.about-section.magazine-layout .about-staff-img::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  z-index: -1;
  border-radius: 4px;
}

.about-section.magazine-layout .about-text-col {
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.about-section.magazine-layout .about-header-brown {
  font-size: 4.5rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
}

.about-section.magazine-layout .about-header-brown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
  border-radius: 3px;
}

.about-section.magazine-layout .about-underline-brown {
  display: none;
}

.about-section.magazine-layout .about-main-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #34495e;
  font-weight: 400;
  max-width: 100%;
  margin-top: 2rem;
}

.about-section.magazine-layout .about-highlight {
  color: #3498db;
  font-weight: 700;
  background: none;
  padding: 0;
  border-bottom: 2px solid rgba(52, 152, 219, 0.3);
  transition: border-color 0.3s ease;
}

.about-section.magazine-layout .about-highlight:hover {
  border-bottom-color: #3498db;
  transform: none;
}

@media (max-width: 1200px) {
  .about-section.magazine-layout .about-header-brown{
    font-size: 3.5rem;
  }
  .about-section.magazine-layout .about-main-text{
    font-size: 1.2rem;
  }
  
}

@media (max-width: 1024px) {
  .about-section.magazine-layout .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .about-section.magazine-layout .about-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-section.magazine-layout .about-header-brown {
    font-size: 3.5rem;
    text-align: center;
  }
  
  .about-section.magazine-layout .about-header-brown::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-section.magazine-layout .about-main-text {
    text-align: center;
  }

  .about-section.magazine-layout .about-staff-img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .about-section.magazine-layout {
    padding: 4rem 0;
  }
  
  .about-section.magazine-layout .about-text-col {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .about-section.magazine-layout .about-header-brown {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .about-section.magazine-layout .about-main-text {
    font-size: 1.3rem;
    text-align: center;
  }
}

