/* ================== FONT DECLARATIONS ================== */
@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Bold-BF65bb091c5ba6f.otf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Medium-BF65bb091d2b74a.otf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('./Grotesk/HostGrotesk-Regular-BF65bb091d50206.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src: url('./Suisse/Suisse_Intl_Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* ================== RESET & GLOBAL ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #0E0E0E;
  overflow-x: hidden;
  font-family: 'Figtree', sans-serif;
  min-height: 100vh;
  padding: 0;
  color: white;
}

/* ================== LENIS SMOOTH SCROLL ================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ================== HERO / VIDEO ================== */
/* ===== BASE VIDEO SECTION ===== */
.video-section {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.fullscreen-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fullscreen-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.fullscreen-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  padding: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}

.hero-heading-wrapper {
  position: absolute;
  top: clamp(24px, 4vh, 32px);
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  max-width: 90%;
  z-index: 11;
}

.hero-heading {
  font-weight: 500;
  font-size: clamp(36px, 8vw, 120px);
  line-height: 0.95;
  color: white;
  text-transform: capitalize;
  margin: 0 0 clamp(12px, 2vh, 20px) 0;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-subheading {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}

/* ===== MENU BUTTON ===== */
.menu-button {
  position: absolute;
  top: clamp(24px, 4vh, 40px);
  right: clamp(20px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 4px 4px clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.02);
}

.menu-button:active {
  transform: scale(0.98);
}

.menu-text {
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 15px);
  color: white;
  font-family: "suisse", sans-serif;
  white-space: nowrap;
}

.icon-circle {
  width: clamp(32px, 3vw, 34px);
  height: clamp(32px, 3vw, 34px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-circle i {
  font-size: clamp(16px, 1.8vw, 20px);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-button:hover .icon-circle {
  background: rgba(255, 255, 255, 0.9);
}

.menu-button:hover .icon-circle i {
  color: #000;
}

.menu-button.active .icon-circle {
  background: rgba(255, 255, 255, 0.25);
}

.menu-button.active .icon-circle i {
  transform: rotate(180deg);
  color: #ffffff;
}

.menu-button.active .icon-circle i::before {
  content: "\eb99";
}

/* ===== NAV MENU ===== */
.nav-menu {
  position: absolute;
  top: clamp(75px, 11vh, 95px);
  right: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  max-width: calc(100% - clamp(40px, 6vw, 96px));
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  width: 100%;
}

.nav-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 4px 4px clamp(12px, 2vw, 16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.5vw, 12px);
  color: white;
  font-weight: 500;
  font-size: clamp(13px, 1.6vw, 15px);
  opacity: 0;
  transform: translateY(-10px);
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "suisse", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  min-height: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(0) scale(1.02);
}



.nav-link:hover .icon-circle {
  background: rgba(255, 255, 255, 0.9);
}

.nav-link:hover .icon-circle i {
  color: #000;
}
.nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
.nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.1s; }
.nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.15s; }
.nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.2s; }
.nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.25s; }
.nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.3s; }
.nav-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* FIXED ACTIVE LINK (overrides hover) */
.nav-link.active {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  transform: scale(1.03) !important;
}

.nav-link.active span {
  color: #000 !important;
}

.nav-link.active .icon-circle {
  background: rgba(0, 0, 0, 0.85) !important;
}

.nav-link.active .icon-circle i {
  color: #fff !important;
}






/* ===== STATS ===== */
.stats-wrapper {
  position: absolute;
  bottom: clamp(24px, 4vh, 32px);
  left: clamp(20px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 40px);
  max-width: clamp(280px, 50vw, 600px);
  z-index: 11;
}

.stat-item {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
}

.stat-number {
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: clamp(70px, 10vw, 100px);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 8px);
  padding-top: clamp(2px, 0.5vh, 5px);
}

.stat-title {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: white;
  line-height: 1.3;
}

.stat-description {
  font-weight: 400;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: clamp(220px, 30vw, 280px);
}

/* ===== CTA ===== */
.cta-wrapper {
  position: absolute;
  bottom: clamp(24px, 4vh, 32px);
  right: clamp(20px, 3vw, 48px);
  text-align: right;
  max-width: clamp(300px, 40vw, 420px);
  z-index: 11;
}

.company-description {
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: white;
  line-height: 1.4;
  margin: 0 0 clamp(20px, 3vh, 32px) 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vh, 12px);
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: 4px 4px 4px clamp(14px, 1.8vw, 16px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 15px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: "suisse", sans-serif;
}

.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button.primary {
  background: #fff;
  color: #0E0E0E;
  border: 1px solid #fff;
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-label {
  flex: 1;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 3vw, 36px);
  height: clamp(32px, 3vw, 36px);
  border-radius: 50%;
  transform: rotate(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cta-button.primary .cta-icon {
  background: #0E0E0E;
}

.cta-button.primary .cta-icon i {
  color: #fff;
}

.cta-button.secondary .cta-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.cta-icon i {
  font-size: clamp(14px, 1.5vw, 16px);
  color: currentColor;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.cta-button.primary:hover {
  background: #f5f5f5;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-button.primary:hover .cta-icon {
  background: #1a1a1a;
  transform: rotate(-60deg);
}

.cta-button.secondary:hover .cta-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-60deg);
}



/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets and Below (1200px) */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: clamp(32px, 7vw, 96px);
  }
  
  .stats-wrapper {
    max-width: clamp(280px, 45vw, 500px);
  }
  
  .cta-wrapper {
    max-width: clamp(280px, 45vw, 380px);
  }

    .menu-button {
    top: clamp(32px, 5vh, 44px);
    right: clamp(28px, 3.5vw, 40px);
  }
  
  .nav-menu {
    top: clamp(84px, 10vh, 94px);
    right: clamp(28px, 3.5vw, 40px);
  }
}

/* Medium Tablets (1024px) */
@media (max-width: 1024px) {
  .video-section {
    min-height: 550px;
  }
  
  .hero-heading {
    font-size: clamp(40px, 9vw, 108px);
  }
  
  .stat-number {
    font-size: clamp(32px, 5vw, 60px);
    min-width: clamp(60px, 9vw, 90px);
  }
  
  .stat-description {
    max-width: clamp(200px, 28vw, 250px);
  }
  
  .company-description {
    font-size: clamp(16px, 2.2vw, 22px);
  }

    .menu-button {
    top: 28px;
    right: 24px;
  }
  
  .nav-menu {
    top: 78px;
    right: 24px;
  }
  
}

@media (min-width: 768px) and (max-width: 899px) {
 .menu-button {
    top: 24px;
    right: 20px;
    padding: 4px 4px 4px 14px;
  }
  
  .menu-text {
    font-size: 14px;
  }
  
  .nav-menu {
    top: 82px;
    right: 20px;
    max-width: calc(100% - 40px);
  }
  
  .nav-links {
    gap: 10px;
  }
}

/* Tablets (768px) - Switch to Stacked Layout */
@media (max-width: 768px) {
  .video-section {
    min-height: 700px;
  }
  
  .hero-content {
    padding: clamp(16px, 3vw, 30px);
  }
  
  .hero-heading-wrapper {
    top: clamp(20px, 3vh, 40px);
    left: clamp(16px, 3vw, 30px);
    right: clamp(16px, 3vw, 30px);
    max-width: calc(100% - clamp(32px, 6vw, 60px));
  }
  
  .hero-heading {
    font-size: clamp(36px, 8vw, 60px);
  }
  
  .hero-subheading {
    font-size: clamp(14px, 2.5vw, 20px);
  }
  
.menu-button {
    top: 22px;
    right: 18px;
    padding: 4px 4px 4px 12px;
    min-height: 38px;
  }
  
  .menu-text {
    font-size: 13.5px;
  }
  
  .icon-circle {
    width: 30px;
    height: 30px;
  }
  
  .icon-circle i {
    font-size: 16px;
  }
  
  .nav-menu {
    top: 68px;
    right: 18px;
    max-width: calc(100% - 36px);
  }
  
  .nav-links {
    gap: 9px;
  }
  
  .nav-link {
    padding: 4px 4px 4px 12px;
    min-height: 38px;
    font-size: 13.5px;
  }
  /* Stack stats above CTA */
  .stats-wrapper {
    bottom: auto;
    top: auto;
    left: clamp(16px, 3vw, 30px);
    right: clamp(16px, 3vw, 30px);
    max-width: 100%;
    position: absolute;
    bottom: clamp(240px, 32vh, 280px);
  }
  
  .cta-wrapper {
    bottom: clamp(20px, 4vh, 40px);
    right: clamp(16px, 3vw, 30px);
    left: clamp(16px, 3vw, 30px);
    text-align: left;
    max-width: 100%;
  }
  
  .company-description {
    font-size: clamp(16px, 2.8vw, 22px);
    margin-bottom: clamp(16px, 2vh, 24px);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: clamp(8px, 1.5vw, 12px);
  }
  
  .cta-button {
    flex: 1;
    justify-content: center;
    max-width: 50%;
  }
}

/* Mobile Landscape and Small Tablets (640px) */
@media (max-width: 640px) {
  .video-section {
    min-height: 650px;
  }
  
  .hero-heading {
    font-size: clamp(32px, 9vw, 52px);
    margin-bottom: clamp(10px, 2vh, 16px);
  }
  
  .hero-subheading {
    font-size: clamp(13px, 3vw, 18px);
  }
  
  /* Adjust stats for mobile */
  .stats-wrapper {
    gap: clamp(16px, 2.5vh, 24px);
    bottom: clamp(220px, 30vh, 260px);
  }
  
  .stat-item {
    gap: clamp(12px, 2.5vw, 16px);
  }
  
  .stat-number {
    font-size: clamp(28px, 6vw, 40px);
    min-width: clamp(60px, 12vw, 80px);
  }
  
  .stat-title {
    font-size: clamp(13px, 2vw, 15px);
  }
  
  .stat-description {
    font-size: clamp(11px, 1.8vw, 13px);
    max-width: 100%;
  }
  
  .company-description {
    font-size: clamp(15px, 3.2vw, 20px);
  }
  
  .cta-button {
    font-size: clamp(13px, 2vw, 14px);
    padding: 4px 4px 4px clamp(12px, 2vw, 14px);
  }

  
  .menu-button {
    top: 20px;
    right: 16px;
    padding: 4px 4px 4px 4px;
    min-height: 36px;
  }
  
  .menu-text {
    font-size: 13px;
  }
  
  .icon-circle {
    width: 28px;
    height: 28px;
  }
  
  .icon-circle i {
    font-size: 15px;
  }
  
  .nav-menu {
    top: 64px;
    right: 16px;
    max-width: calc(100% - 32px);
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-link {
    padding: 4px 4px 4px 11px;
    min-height: 36px;
    font-size: 13px;
  }
}

/* Standard Mobile (480px) */
@media (max-width: 480px) {
  .video-section {
    min-height: 600px;
  }
  
  .hero-heading-wrapper {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  
  .hero-heading {
    font-size: clamp(28px, 8.5vw, 44px);
    line-height: 1;
  }
  
  .hero-subheading {
    font-size: clamp(12px, 3.5vw, 16px);
  }
.menu-button {
    top: 24px;
    right: 16px;

  }
  
  .menu-text {
    display: none;
  }
  
  .nav-menu {
    top: 70px;
    right: 16px;
  }
  
  .nav-links {
    gap: 8px;
  }
  

  .icon-circle {
    width: 28px;
    height: 28px;
  }

  .icon-circle i {
    font-size: 14px;
  }

  
  

  
  .stats-wrapper {
    left: 16px;
    right: 16px;
    gap: clamp(12px, 2vh, 20px);
    bottom: clamp(200px, 28vh, 240px);
  }
  

  



  .nav-links {
    gap: 8px;
  }
  .stat-item {
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 12px);
  }
  
  .stat-number {
    font-size: clamp(24px, 7vw, 36px);
    min-width: auto;
  }
  
  .stat-title {
    font-size: 13px;
  }
  
  .stat-description {
    font-size: 11px;
  }
  
  .cta-wrapper {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  
  .company-description {
    font-size: clamp(14px, 3.8vw, 18px);
    margin-bottom: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-button {
    max-width: 100%;
    font-size: 13px;
    min-height: 44px;
  }
  
  .icon-circle {
    width: 32px;
    height: 32px;
  }
  
  .icon-circle i {
    font-size: 16px;
  }
  
  .cta-icon {
    width: 32px;
    height: 32px;
  }
  
  .cta-icon i {
    font-size: 14px;
  }
}

/* Extra Small Devices (375px) */
@media (max-width: 375px) {
  .video-section {
    min-height: 550px;
  }
  
  .hero-heading-wrapper {
    top: 12px;
    left: 12px;
    right: 12px;
  }
  
  .hero-heading {
    font-size: clamp(24px, 7.5vw, 38px);
  }
  
  .hero-subheading {
    font-size: 12px;
  }
  

  
 
  
  .stats-wrapper {
    left: 12px;
    right: 12px;
    gap: 12px;
    bottom: clamp(180px, 26vh, 220px);
  }
  
  .stat-number {
    font-size: clamp(22px, 6.5vw, 32px);
  }
  
  .stat-title {
    font-size: 12px;
  }
  
  .stat-description {
    font-size: 10px;
  }
  
  .cta-wrapper {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  
  .company-description {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .cta-button {
    font-size: 12px;
    padding: 3px 3px 3px 10px;
  }
}

/* Landscape Mobile Optimization (Short Height) */
@media (max-height: 600px) and (orientation: landscape) {
  .video-section {
    min-height: 100vh;
  }
  
  .hero-heading-wrapper {
    top: clamp(12px, 2vh, 20px);
  }
  
  .hero-heading {
    font-size: clamp(24px, 6vh, 48px);
    margin-bottom: 6px;
  }
  
  .hero-subheading {
    font-size: clamp(11px, 2.5vh, 16px);
  }
  
  .menu-button {
    top: 20px;
  }
  

  .stats-wrapper {
    bottom: clamp(12px, 2vh, 20px);
    gap: clamp(10px, 2vh, 16px);
  }
  
  .stat-item {
    flex-direction: row;
    gap: 12px;
  }
  
  .stat-number {
    font-size: clamp(20px, 4vh, 36px);
    min-width: clamp(50px, 8vw, 70px);
  }
  
  .stat-title {
    font-size: clamp(11px, 2vh, 14px);
  }
  
  .stat-description {
    font-size: clamp(10px, 1.8vh, 12px);
    display: -webkit-box;
  
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .cta-wrapper {
    bottom: clamp(12px, 2vh, 20px);
    max-width: clamp(280px, 35vw, 360px);
  }
  
  .company-description {
    font-size: clamp(13px, 3vh, 20px);
    margin-bottom: clamp(10px, 2vh, 16px);
  }
  
  .cta-buttons {
    flex-direction: row;
    gap: 8px;
  }
  
  .cta-button {
    flex: 1;
    font-size: clamp(11px, 2vh, 13px);
    min-height: 40px;
    padding: 3px 3px 3px 10px;
  }
}



/* ================== TEXT SECTIONS ================== */
/* ===== TEXT SECTION - FULLY RESPONSIVE ===== */
.text-section {
  background-color: #0E0E0E;
  min-height: 100vh;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 5vw, 20rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-family: 'Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.text-section p {
  font-size: clamp(1.125rem, 2.5vw, 3rem);
  line-height: clamp(1.5, 1.6, 1.7);
  font-weight: 300;
  max-width: min(1200px, 90vw);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  word-wrap: break-word;
  hyphens: auto;
}

/* ===== ABOUT US BUTTON - FULLY RESPONSIVE ===== */
#about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: clamp(10px, 1.2vh, 14px) clamp(20px, 3vw, 32px);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-family: 'Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 48px;
  white-space: nowrap;
  
  /* Smooth transitions */
  transition: 
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  
  /* Touch optimization */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

#about-btn i {
  font-size: clamp(1rem, 2vw, 1.75rem);
  flex-shrink: 0;
  
  /* Smooth arrow movement */
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover interaction - Desktop only */
@media (hover: hover) and (pointer: fine) {
  #about-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  }

  #about-btn:hover i {
    transform: translateX(6px);
  }
}

/* Active state for touch devices */
#about-btn:active {
  transform: translateY(-1px) scale(0.98);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Focus state for accessibility */
#about-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (min-width: 1440px) {
  .text-section {
    padding: clamp(4rem, 10vh, 8rem) clamp(8rem, 15vw, 22rem);
  }
  
  .text-section p {
    max-width: 1400px;
  }
}

/* Desktop to Tablet Transition */
@media (max-width: 1200px) {
  .text-section {
    padding: clamp(3rem, 8vh, 5rem) clamp(2rem, 8vw, 12rem);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .text-section {
    padding: clamp(3rem, 7vh, 5rem) clamp(2rem, 6vw, 8rem);
  }
  
  .text-section p {
    font-size: clamp(1.125rem, 2.8vw, 2.5rem);
    max-width: 85vw;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .text-section {
    min-height: auto;
    padding: clamp(4rem, 10vh, 6rem) clamp(1.5rem, 5vw, 3rem);
  }
  
  .text-section p {
    font-size: clamp(1.125rem, 3.5vw, 2rem);
    line-height: 1.5;
    margin-bottom: clamp(2rem, 5vh, 3rem);
    max-width: 95vw;
  }
  
  #about-btn {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    padding: clamp(12px, 1.5vh, 16px) clamp(24px, 4vw, 36px);
  }
  
  #about-btn i {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .text-section {
    padding: clamp(3rem, 8vh, 5rem) clamp(1.25rem, 4vw, 2rem);
  }
  
  .text-section p {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .text-section {
    padding: 3rem 1.25rem;
    min-height: 80vh;
    justify-content: center;
  }
  
  .text-section p {
    font-size: clamp(1rem, 4.5vw, 1.375rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  #about-btn {
    font-size: 1rem;
    padding: 12px 24px;
    gap: 8px;
    width: auto;
    max-width: 90vw;
  }
  
  #about-btn i {
    font-size: 1rem;
  }
  
  /* Enhanced touch feedback for mobile */
  #about-btn:active {
    transform: scale(0.96);
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .text-section {
    padding: 2.5rem 1rem;
  }
  
  .text-section p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
  }
  
  #about-btn {
    font-size: 0.9375rem;
    padding: 10px 20px;
    gap: 6px;
  }
  
  #about-btn i {
    font-size: 0.9375rem;
  }
}

/* Very Small Screens */
@media (max-width: 320px) {
  .text-section {
    padding: 2rem 0.875rem;
  }
  
  .text-section p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  #about-btn {
    font-size: 0.875rem;
    padding: 10px 18px;
  }
  
  #about-btn i {
    font-size: 0.875rem;
  }
}

/* Landscape Orientation on Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .text-section {
    min-height: auto;
    padding: 2rem clamp(1.5rem, 5vw, 3rem);
  }
  
  .text-section p {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  #about-btn {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    padding: 8px 20px;
  }
  
  #about-btn i {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  }
}

/* Ultra-wide Screens */
@media (min-width: 1920px) {
  .text-section {
    padding: clamp(5rem, 12vh, 10rem) clamp(12rem, 18vw, 24rem);
  }
  
  .text-section p {
    max-width: 1600px;
    font-size: clamp(2rem, 2.5vw, 3.5rem);
  }
  
  #about-btn {
    font-size: clamp(1.5rem, 2vw, 2rem);
    padding: 14px 36px;
  }
  
  #about-btn i {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #about-btn {
    border-width: 1.5px;
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  #about-btn,
  #about-btn i {
    transition: none;
  }
  
  #about-btn:hover {
    transform: none;
  }
  
  #about-btn:hover i {
    transform: none;
  }
  
  #about-btn:active {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .text-section {
    background-color: white;
    color: black;
    min-height: auto;
    padding: 2rem;
  }
  
  .text-section p {
    color: black;
  }
  
  #about-btn {
    border-color: black;
    color: black;
  }
}


/* ================== CARDS ================== */
.cardscontainer {
  max-width: 1300px;
  margin: 2vh auto;
  height: auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}



.cardsheading {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: 900px;
  color: #ffffff;
}

.itscards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.itscard {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.itscard:hover {
  background-color: #fff;
  border-color: #fff;
}

.itscard-icon {
  font-size: 32px;
  margin-bottom: auto;
  color: #fff;
  transition: color 0.3s ease;
}

.itscard:hover .card-icon { color: #000; }

.itscard-content { margin-top: 40px; }

.itscard-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fff;
  font-family: 'Suisse';
  transition: color 0.3s ease;
}

.itscard:hover .itscard-title { color: #000; }

.itscard-description {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.itscard:hover .itscard-description { color: rgba(0, 0, 0, 0.7); }

/* Responsive */
@media (max-width: 768px) {
  .itscards-container { grid-template-columns: 1fr; }
  .heading { margin-bottom: 40px; }
}

/* ================== TESTIMONIALS ================== */

.container {
  max-width: 1300px;
  margin: 0 auto;
  height: auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 60px;
  padding-left: 20px;
 
}

.section-heading .dim { color: #666; }

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial {
  display: flex;

  align-items: stretch;
  overflow: hidden;
  gap: 24px;
  background-color: #0e0e0e;
}

.testimonial-image {
  flex: 0 0 320px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.logo-overlay img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.testimonial-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff0d;
  border: 1px solid hsla(0, 0%, 100%, 0.28);
  border-radius: 16px;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #b0b0b0;

}

.testimonial-company {
  font-size: 0.85rem;
  color: #808080;
  font-weight: 400;
}

/* Alternate Layout */
.testimonial:nth-child(even) { flex-direction: row-reverse; }

/* Responsive */
@media (max-width: 968px) {
  .testimonial { flex-direction: column !important; }
  .testimonial-image { flex: 0 0 250px; width: 100%; }
  .testimonial-content { padding: 35px; }
  .section-heading { padding-left: 0; }
}

@media (max-width: 640px) {
  .testimonial-image { flex: 0 0 200px; }
  .testimonial-content { padding: 25px; }
  .logo-overlay img { width: 100px; }
}


















.hww-section-wrapper {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: clamp(1rem, 2.5vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 5rem) clamp(1rem, 3.5vw, 4rem);
    overflow: hidden;
    margin-top: 6vh;
    margin-bottom: 12vh;
}

.hww-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: start;
}

/* LEFT SUBSECTION */
.hww-left-column {
    width: 100%;
}

.hww-eyebrow-text {
    font-size: clamp(0.613rem, 1vw + 0.4rem, 0.8rem);
    font-weight: 400;
    font-family: "Grotesk";
    color: #a0a0a0;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
    letter-spacing: 0.02em;
}

.hww-primary-heading {
    font-size: clamp(1.25rem, 3vw + 0.3rem, 3rem);
    font-weight: 500;
      font-family: "Grotesk";
    line-height: 1.15;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.5rem);
    letter-spacing: -0.02em;
}

.hww-intro-description {
    font-size: clamp(0.675rem, 1vw + 0.25rem, 1.025rem);
    font-weight: "Suisse";
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
    max-width: 100%;
}

.hww-toggle-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(1.5rem, 2vw, 2rem);
    padding: 0.25rem;
    gap: 0.25rem;
    width: 100%;
    max-width: max-content;
}

.hww-toggle-button {
    padding: clamp(0.625rem, 1.2vw, 0.75rem) clamp(1rem, 2.5vw, 1.75rem);
    border: none;
    border-radius: clamp(1.25rem, 2vw, 1.75rem);
    font-size: clamp(0.813rem, 1vw + 0.3rem, 1rem);
    font-weight: 500;
      font-family: "Grotesk";
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: #a0a0a0;
    white-space: nowrap;
    flex: 1;
}

.hww-toggle-button:hover {
    color: #ffffff;
}

.hww-toggle-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.hww-toggle-button.hww-active-toggle {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* RIGHT SUBSECTION */
.hww-right-column {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 4rem);
    width: 100%;
}

.hww-process-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
}

.hww-icon-circle {
    width: clamp(3rem, 6vw, 4.5rem);
    height: clamp(3rem, 6vw, 4.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hww-icon-circle i {
    font-size: clamp(1rem, 2.4vw, 1.75rem);
    color: #ffffff;
}

.hww-process-text-block {
    padding-top: clamp(0.25rem, 0.5vw, 0.5rem);
    min-width: 0;
}

.hww-process-heading {
    font-size: clamp(1.025rem, 2vw + 0.2rem, 1.5rem);
    font-weight: 500;
      font-family: "Grotesk";
    margin-bottom: clamp(0.375rem, 1vw, 0.75rem);
    letter-spacing: -0.01em;
    word-wrap: break-word;
}

.hww-process-paragraph {
    font-size: clamp(0.775rem, 1.2vw + 0.1rem, 1.0425rem);
    line-height: 1.65;
    color: #a0a0a0;
    word-wrap: break-word;
      font-family: "Suisse";
}

/* RESPONSIVE BREAKPOINTS */

/* Small Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    body {
        padding: clamp(0.75rem, 2vw, 1rem);
    }

    .hww-section-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }

    .hww-grid-container {
        gap: 2rem;
    }

    .hww-toggle-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .hww-toggle-button {
        font-size: 0.813rem;
        padding: 0.625rem 0.875rem;
    }

    .hww-process-card {
        gap: 0.875rem;
    }

    .hww-icon-circle {
        width: 3rem;
        height: 3rem;
    }

    .hww-icon-circle i {
        font-size: 1.25rem;
    }

    .hww-primary-heading {
        font-size: 1.5rem;
    }
}

/* Medium Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hww-section-wrapper {
        padding: 2rem 1.5rem;
    }

    .hww-grid-container {
        gap: 2.5rem;
    }

    .hww-toggle-wrapper {
        max-width: 100%;
    }

    .hww-primary-heading {
        font-size: 1.875rem;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hww-section-wrapper {
        padding: 3rem 2.5rem;
    }

    .hww-grid-container {
        gap: 3rem;
    }

    .hww-intro-description {
        max-width: 90%;
    }

    .hww-primary-heading {
        font-size: 2.5rem;
    }
}

/* Tablet Landscape & Small Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hww-grid-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }

    .hww-left-column {
        position: sticky;
        top: 2rem;
    }

    .hww-intro-description {
        max-width: 95%;
    }

    .hww-toggle-wrapper {
        max-width: max-content;
    }

    .hww-primary-heading {
        font-size: 2.75rem;
    }
}

/* Medium Desktop (1280px - 1599px) */
@media (min-width: 1280px) and (max-width: 1599px) {
    .hww-grid-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }

    .hww-left-column {
        position: sticky;
        top: 2rem;
    }

    .hww-intro-description {
        max-width: 90%;
    }

    .hww-toggle-wrapper {
        max-width: max-content;
    }

    .hww-section-wrapper {
        padding: 4rem 3rem;
    }

    .hww-primary-heading {
        font-size: 3rem;
    }
}

/* Large Desktop (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .hww-grid-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
    }

    .hww-left-column {
        position: sticky;
        top: 2rem;
    }

    .hww-intro-description {
        max-width: 85%;
    }

    .hww-section-wrapper {
        padding: 4.5rem 3.5rem;
    }

    .hww-primary-heading {
        font-size: 3.25rem;
    }
}

/* Extra Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .hww-grid-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 6rem;
    }

    .hww-left-column {
        position: sticky;
        top: 2rem;
    }

    .hww-intro-description {
        max-width: 80%;
    }

    .hww-section-wrapper {
        max-width: 1400px;
        padding: 5rem 4rem;
    }

    .hww-primary-heading {
        font-size: 3.5rem;
    }

    .hww-right-column {
        gap: 4rem;
    }
}

/* Ultra Wide Screens (2560px+) */
@media (min-width: 2560px) {
    .hww-section-wrapper {
        max-width: 1600px;
    }

    .hww-primary-heading {
        font-size: 4rem;
    }

    .hww-process-heading {
        font-size: 2rem;
    }

    .hww-process-paragraph {
        font-size: 1.25rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hww-left-column {
        position: static;
    }

    .hww-section-wrapper {
        padding: 2rem 1.5rem;
    }

    .hww-grid-container {
        gap: 2rem;
    }
}














/* =========================================
   FAQ CONTAINER
========================================= */
.faq-container {
  width: min(92vw, 1400px);
  border: 1px solid #ffffff47;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 60px);
  background-color: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(10px);

  /* PERFECT CENTERING */
  margin: 0 auto clamp(8vh, 12vh, 16vh);
  margin-top: 2vh;
}


/* =========================================
   WRAPPER GRID
========================================= */
.faq-container {
  width: min(92vw, 1400px);
  border: 1px solid #ffffff47;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 60px);
  background-color: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(10px);

  /* PERFECT CENTERING */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(8vh, 12vh, 16vh);
}


/* =========================================
   WRAPPER GRID
========================================= */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* LEFT COLUMN (Sticky Heading) */
.faq-left {
  position: sticky;
  top: clamp(60px, 12vh, 100px);
}

.faq-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
}


/* =========================================
   RIGHT COLUMN
========================================= */
.faq-right {
  display: flex;
  flex-direction: column;
}


/* =========================================
   FAQ ITEMS
========================================= */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(20px, 3vw, 28px) 0;
  transition: border-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Question Row */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  cursor: pointer;
  user-select: none;
}

/* Question Text */
.faq-question-text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #fff;
  flex: 1;
  line-height: 1.4;
}


/* =========================================
   ICON (+) WITH CLEAN ANIMATION
========================================= */
.faq-icon {
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

/* Perfect alignment of + sign */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

/* Make + become – on open */
.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.active .faq-icon {
  background-color: rgba(255, 255, 255, 0.15);
}


/* =========================================
   FAQ ANSWER (Accordion)
========================================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-text {
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 18px;
}


/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Tablets + Small Laptops */
@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 50px);
  }

  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-heading {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .faq-container {
    width: min(94vw, 1400px);
    padding: clamp(40px, 5vw, 60px);
    margin-left: auto;
    margin-right: auto;
  }
}


/* Mobile Phones */
@media (max-width: 640px) {
  .faq-container {
    width: min(92vw, 1400px);
    border-radius: 20px;
    padding: clamp(28px, 6vw, 40px);
    
    /* EXPLICIT centering for mobile */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(8vh, 12vh, 16vh);
  }

  .faq-wrapper {
    gap: 28px;
  }

  .faq-item {
    padding: clamp(16px, 4vw, 20px) 0;
  }

  .faq-question-text {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .faq-icon {
    width: clamp(24px, 6vw, 28px);
    height: clamp(24px, 6vw, 28px);
  }

  .faq-icon::before {
    width: 12px;
  }

  .faq-icon::after {
    height: 12px;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .faq-container {
    width: min(90vw, 1400px);
    padding: clamp(24px, 6vw, 32px);
    border-radius: 16px;
  }

  .faq-question-text {
    font-size: clamp(0.9375rem, 4.5vw, 1.125rem);
  }

  .faq-answer-text {
    font-size: clamp(0.875rem, 4vw, 1rem);
  }
}

#crestwood-section {
  display: flex;
  justify-content: center;  
  align-items: center;       
  min-height: 100vh;
  padding: 0 clamp(2vw, 4vw, 5vw);
  box-sizing: border-box;
  margin-top: clamp(4vh, 8vh, 8vh);
  margin-bottom: clamp(4vh, 8vh, 8vh);
}

.crestwood-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* ================== HEADER ================== */
.crestwood-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 60px);
}

.crestwood-title {
  font-family: 'Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  margin-bottom: clamp(6px, 1vh, 8px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.crestwood-fade {
  color: #999;
}

.crestwood-subtitle {
  font-family: 'Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ================== PANELS CONTAINER ================== */
.crestwood-panels {
  display: flex;
  gap: clamp(12px, 1.5vw, 16px);
  height: clamp(400px, 50vh, 500px);
  position: relative;
  width: 100%;
}

.crestwood-panel {
  position: relative;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 20%;
  min-width: 0;
}

.crestwood-panel.crestwood-active {
  width: 40%;
}

/* ================== PANEL BACKGROUND ================== */
.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.crestwood-panel:hover .panel-bg {
  transform: scale(1.05);
}

.panel-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.7) 100%
  );
  transition: background 0.3s ease;
}

.crestwood-panel.crestwood-active .panel-shade {
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* ================== PANEL CONTENT ================== */
.panel-info {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.crestwood-panel.crestwood-active .panel-info {
  opacity: 1;
}

.panel-head {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: clamp(12px, 2vh, 20px);
  line-height: 1.2;
  color: #fff;
}

.panel-text {
  font-size: clamp(0.875rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
}

/* ================== BACKGROUND IMAGES ================== */
.crestwood-panel:nth-child(1) .panel-bg {
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1200&h=800&fit=crop&q=80');
}

.crestwood-panel:nth-child(2) .panel-bg {
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1200&h=800&fit=crop&q=80');
}

.crestwood-panel:nth-child(3) .panel-bg {
  background-image: url('https://images.unsplash.com/photo-1505483531331-fc3cf89fd382?w=1200&h=800&fit=crop&q=80');
}

.crestwood-panel:nth-child(4) .panel-bg {
  background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1200&h=800&fit=crop&q=80');
}

/* ================== RESPONSIVE BREAKPOINTS ================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .crestwood-wrapper {
    max-width: 1100px;
  }

  .crestwood-panels {
    height: clamp(380px, 48vh, 480px);
    gap: 14px;
  }

  .panel-head {
    font-size: clamp(1.375rem, 2.8vw, 2.25rem);
  }

  .panel-text {
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
  }
}

/* Tablets */
@media (max-width: 1024px) {
  #crestwood-section {
    min-height: auto;
    padding: 0 4vw;
  }

  .crestwood-panels {
    flex-direction: column;
    height: auto;
    gap: clamp(16px, 2.5vh, 20px);
  }

  .crestwood-panel {
    width: 100% !important;
    height: clamp(280px, 35vh, 320px);
  }

  .panel-info {
    opacity: 1;
    justify-content: flex-end;
  }

  .panel-shade {
    background: linear-gradient(
      to bottom, 
      rgba(0, 0, 0, 0.4) 0%, 
      rgba(0, 0, 0, 0.75) 100%
    );
  }

  .panel-text {
    max-width: 100%;
  }

  .crestwood-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
  }

  .crestwood-subtitle {
    font-size: clamp(1.0625rem, 2.8vw, 1.625rem);
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  #crestwood-section {
    margin-top: 6vh;
    margin-bottom: 6vh;
    padding: 0 5vw;
  }

  .crestwood-header {
    margin-bottom: clamp(35px, 5vh, 45px);
  }

  .crestwood-title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    margin-bottom: 8px;
  }

  .crestwood-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .crestwood-panels {
    gap: 16px;
  }

  .crestwood-panel {
    height: clamp(300px, 38vh, 340px);
    border-radius: 20px;
  }

  .panel-info {
    padding: clamp(28px, 4.5vw, 35px);
  }

  .panel-head {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
    margin-bottom: 14px;
  }

  .panel-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.65;
  }
}

/* Mobile portrait */
@media (max-width: 640px) {
  #crestwood-section {
    margin-top: 4vh;
    margin-bottom: 4vh;
    padding: 0 5vw;
  }

  .crestwood-header {
    margin-bottom: 30px;
  }

  .crestwood-title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.9375rem, 3.5vw, 1.375rem);
  }

  .crestwood-panels {
    gap: 14px;
  }

  .crestwood-panel {
    height: clamp(320px, 42vh, 360px);
  }

  .panel-info {
    padding: 30px;
  }

  .panel-head {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: 12px;
  }

  .panel-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  #crestwood-section {
    padding: 0 4vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .crestwood-header {
    margin-bottom: 25px;
  }

  .crestwood-title {
    font-size: clamp(1.375rem, 6.5vw, 2rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.875rem, 4vw, 1.25rem);
  }

  .crestwood-panels {
    gap: 12px;
  }

  .crestwood-panel {
    height: clamp(280px, 45vh, 340px);
    border-radius: 16px;
  }

  .panel-info {
    padding: 24px;
  }

  .panel-head {
    font-size: clamp(1.125rem, 4.5vw, 1.625rem);
    margin-bottom: 10px;
  }

  .panel-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  #crestwood-section {
    padding: 0 3vw;
  }

  .crestwood-title {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.8125rem, 4.5vw, 1.125rem);
  }

  .crestwood-panel {
    height: clamp(260px, 48vh, 320px);
  }

  .panel-info {
    padding: 20px;
  }

  .panel-head {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .panel-text {
    font-size: 0.8125rem;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  #crestwood-section {
    min-height: auto;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  .crestwood-header {
    margin-bottom: 20px;
  }

  .crestwood-title {
    font-size: clamp(1.375rem, 4vh, 2rem);
  }

  .crestwood-subtitle {
    font-size: clamp(0.875rem, 2.5vh, 1.25rem);
  }

  .crestwood-panels {
    gap: 12px;
  }

  .crestwood-panel {
    height: clamp(200px, 35vh, 280px);
  }

  .panel-info {
    padding: 20px 25px;
  }

  .panel-head {
    font-size: clamp(1.125rem, 3.5vh, 1.625rem);
    margin-bottom: 8px;
  }

  .panel-text {
    font-size: clamp(0.8125rem, 2vh, 0.9375rem);
    line-height: 1.5;
  }
}

/* Very tall screens (portrait tablets) */
@media (min-height: 900px) and (max-width: 1024px) {
  .crestwood-panel {
    height: clamp(320px, 32vh, 380px);
  }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
  .crestwood-wrapper {
    max-width: 1400px;
  }

  .crestwood-panels {
    height: 550px;
  }

  .crestwood-title {
    font-size: 3.75rem;
  }

  .crestwood-subtitle {
    font-size: 2rem;
  }

  .panel-head {
    font-size: 2.75rem;
  }

  .panel-text {
    font-size: 1.2rem;
  }
}

/* Short screens */
@media (max-height: 700px) and (min-width: 1025px) {
  #crestwood-section {
    min-height: auto;
  }

  .crestwood-panels {
    height: clamp(350px, 55vh, 450px);
  }
}



.panel-wrapper {
    position: relative;
    width: 100%;
    max-width: 96vw;
    height: auto;
    min-height: clamp(500px, 80vh, 80vh);
    border-radius: clamp(16px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 0 clamp(20px, 3vw, 40px) rgba(0, 0, 0, 0.5);
    margin: 0 auto clamp(4vh, 8vh, 8vh);
   
}

/* ====== PANEL ====== */
.panel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(500px, 80vh, 80vh);
    padding: clamp(1.5rem, 3vw, 3rem);
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(2rem, 4vh, 3rem);
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.panel > * {
    position: relative;
    z-index: 2;
}

/* ====== TOP SECTION ====== */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

#common-heading {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    opacity: 0.7;
    line-height: 1.3;
    flex: 1;
    min-width: 150px;
}

.panel-number {
    font-weight: 500;
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 0.9;
    opacity: 0.15;
    letter-spacing: -0.02em;
}

/* ====== BOTTOM SECTION ====== */
.bottom-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: clamp(1.5rem, 3vh, 2rem);
}

.content {
    max-width: 600px;
    width: 100%;
}

#content-heading {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 1.5vh, 1rem);
    letter-spacing: -0.01em;
}

#content-paragraph {
    font-size: clamp(0.9375rem, 1.4vw, 1.25rem);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 550px;
}

/* ====== NAVIGATION BUTTONS ====== */
.nav-buttons {
    display: flex;
    gap: clamp(0.75rem, 1.2vw, 1rem);
    align-items: center;
    align-self: flex-end;
}

.nav-icon {
    width: clamp(52px, 6vw, 64px);
    height: clamp(52px, 6vw, 64px);
    min-width: 52px;
    min-height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 24%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-icon i {
    font-size: clamp(20px, 2.2vw, 24px);
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.nav-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 24%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon:hover:not(.disabled)::before {
    transform: scale(1);
}

.nav-icon:hover:not(.disabled) {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 1);
}

.nav-icon:active:not(.disabled) {
    transform: scale(0.95);
}

.nav-icon.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-icon.disabled:hover {
    transform: none;
}

/* ================== RESPONSIVE BREAKPOINTS ================== */

/* Large tablets and small desktops */
@media (min-width: 768px) {
    .panel-wrapper {
        max-width: 94vw;
    }

    .bottom-section {
        flex-direction: row;
        align-items: flex-end;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .content {
        flex: 1;
    }

    .nav-buttons {
        align-self: auto;
        flex-shrink: 0;
    }

    .panel-number {
        opacity: 0.2;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .panel-wrapper {
        max-width: 92vw;
        min-height: clamp(550px, 75vh, 75vh);
    }

    .panel {
        min-height: clamp(550px, 75vh, 75vh);
        padding: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    #common-heading {
        font-size: clamp(0.9375rem, 2vw, 1.125rem);
    }

    .panel-number {
        font-size: clamp(5rem, 18vw, 10rem);
    }

    #content-heading {
        font-size: clamp(1.625rem, 5vw, 2.5rem);
    }

    #content-paragraph {
        font-size: clamp(0.875rem, 1.6vw, 1.125rem);
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .panel-wrapper {
        max-width: 90vw;
        min-height: clamp(500px, 70vh, 70vh);
        border-radius: 16px;
        margin-bottom: 6vh;
    }

    .panel {
        min-height: clamp(500px, 70vh, 70vh);
        padding: 2rem 1.5rem;
        gap: 1.75rem;
    }

    .top-section {
        gap: 1rem;
    }

    #common-heading {
        font-size: 1rem;
    }

    .panel-number {
        font-size: clamp(4rem, 20vw, 8rem);
        opacity: 0.12;
    }

    .bottom-section {
        gap: 1.5rem;
    }

    #content-heading {
        font-size: clamp(1.5rem, 5.5vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    #content-paragraph {
        font-size: clamp(0.875rem, 1.8vw, 1rem);
        line-height: 1.5;
    }

    .nav-buttons {
        gap: 0.875rem;
    }

    .nav-icon {
        width: 54px;
        height: 54px;
    }

    .nav-icon i {
        font-size: 22px;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .panel-wrapper {
        max-width: 88vw;
        min-height: clamp(550px, 75vh, 75vh);
    }

    .panel {
        min-height: clamp(550px, 75vh, 75vh);
        padding: 1.75rem 1.25rem;
    }

    .top-section {
        flex-direction: column;
        gap: 0.5rem;
    }

    #common-heading {
        font-size: 0.9375rem;
        order: 1;
    }

    .panel-number {
        font-size: clamp(3.5rem, 22vw, 7rem);
        align-self: flex-end;
        order: 2;
    }

    .bottom-section {
        gap: 1.25rem;
    }

    #content-heading {
        font-size: clamp(1.375rem, 6vw, 2rem);
    }

    #content-paragraph {
        font-size: 0.875rem;
    }

    .nav-buttons {
        align-self: flex-start;
        width: 100%;
        justify-content: flex-end;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .panel-wrapper {
        max-width: 92vw;
        min-height: clamp(500px, 80vh, 80vh);
        border-radius: 14px;
        margin-bottom: 4vh;
    }

    .panel {
        min-height: clamp(500px, 80vh, 80vh);
        padding: 1.5rem 1.125rem;
        gap: 1.5rem;
    }

    .panel::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    #common-heading {
        font-size: 0.875rem;
    }

    .panel-number {
        font-size: clamp(3rem, 24vw, 6rem);
    }

    #content-heading {
        font-size: clamp(1.25rem, 6.5vw, 1.75rem);
        margin-bottom: 0.625rem;
    }

    #content-paragraph {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .nav-icon {
        width: 52px;
        height: 52px;
        border-width: 1.5px;
    }

    .nav-icon i {
        font-size: 20px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .panel-wrapper {
        min-height: clamp(480px, 85vh, 85vh);
    }

    .panel {
        min-height: clamp(480px, 85vh, 85vh);
        padding: 1.25rem 1rem;
    }

    #common-heading {
        font-size: 0.8125rem;
    }

    .panel-number {
        font-size: clamp(2.5rem, 26vw, 5rem);
    }

    #content-heading {
        font-size: clamp(1.125rem, 7vw, 1.5rem);
    }

    #content-paragraph {
        font-size: 0.75rem;
    }

    .nav-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .nav-icon i {
        font-size: 18px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .panel-wrapper {
        min-height: 90vh;
        margin-bottom: 3vh;
    }

    .panel {
        min-height: 90vh;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
    }

    .top-section {
        flex-direction: row;
        gap: 1.5rem;
    }

    #common-heading {
        font-size: clamp(0.875rem, 2.5vh, 1rem);
    }

    .panel-number {
        font-size: clamp(3rem, 15vh, 6rem);
        opacity: 0.15;
    }

    .bottom-section {
        flex-direction: row;
        align-items: flex-end;
        gap: 1.5rem;
    }

    #content-heading {
        font-size: clamp(1.25rem, 4.5vh, 2rem);
        margin-bottom: 0.5rem;
    }

    #content-paragraph {
        font-size: clamp(0.75rem, 2.5vh, 1rem);
        line-height: 1.4;
    }

    .nav-icon {
        width: 48px;
        height: 48px;
    }

    .nav-icon i {
        font-size: 20px;
    }
}

/* Very tall screens (portrait tablets) */
@media (min-height: 900px) and (max-width: 768px) {
    .panel-wrapper {
        min-height: 70vh;
    }

    .panel {
        min-height: 70vh;
    }

    #content-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    #content-paragraph {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.65;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .panel-wrapper {
        max-width: 1840px;
    }

    .panel {
        padding: 3.5rem;
    }

    #common-heading {
        font-size: 1.375rem;
    }

    .panel-number {
        font-size: 13rem;
    }

    #content-heading {
        font-size: 3.25rem;
    }

    #content-paragraph {
        font-size: 1.375rem;
    }

    .nav-icon {
        width: 68px;
        height: 68px;
    }

    .nav-icon i {
        font-size: 26px;
    }
}

/* Short screens */
@media (max-height: 700px) and (min-width: 769px) {
    .panel-wrapper {
        min-height: 85vh;
    }

    .panel {
        min-height: 85vh;
        padding: 2rem 2.5rem;
    }

    #content-heading {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .panel-number {
        font-size: clamp(6rem, 12vw, 9rem);
    }
}


 

       
 .footer-wrapper {
    width: 92%;
    max-width: 1400px;
    margin-left: 4%;

    border: 1px solid #ffffff47;
    border-radius: 32px;
    padding: 60px 50px;
    background-color: rgba(20, 20, 20, 0.5);
    margin-top: 24vh;
    box-sizing: border-box;
}

/* Upper Section */
.footer-upper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    font-family: "grotesk";
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "suisse";
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    font-family: "suisse";
    font-weight: 400;
}

.footer-column a:hover {
    color: #fff;
}

.contact-info p {
    margin-bottom: 12px;
}

.map-container {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Divider Line */
.footer-divider {
    width: 92%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 40px auto;
}

/* Lower Section */
.footer-lower {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-section {
    flex: 1;
}

.newsletter-section h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "suisse";
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 6px 6px 24px;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 0;
    font-family: "suisse";
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 32px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "suisse";
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.social-links-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "suisse";
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "suisse";
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 10px;
    font-family: "suisse";
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 50px 40px;
        border-radius: 24px;
        margin-top: clamp(6vh, 8vh, 10vh);
    }
    
    .footer-upper {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom-row {
        gap: 30px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .footer-wrapper {
        width: 90%;
        margin-left: 5%;
        padding: 40px 30px;
        border-radius: 20px;
        margin-top: -12vh;
    }
    
    .footer-upper {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .social-links-section {
        align-items: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-divider {
        width: 100%;
        margin: 0 0 30px 0;
    }
    
    .map-container {
        height: 160px;
    }
}

/* Mobile Landscape & Small Tablets (640px and below) */
@media (max-width: 640px) {
    .footer-wrapper {
        width: 88%;
        margin-left: 6%;
        padding: 35px 25px;
        border-radius: 16px;
        margin-top: 5vh;
    }
    
    .footer-upper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 180px;
        border-radius: 10px;
    }
    
    .newsletter-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        padding: 5px 5px 5px 20px;
    }
    
    .newsletter-form input {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .newsletter-form button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-lower {
        gap: 25px;
    }
    
    .footer-divider {
        margin-bottom: 25px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .footer-wrapper {
        width: 86%;
        margin-left: 7%;
        padding: 30px 20px;
        border-radius: 14px;
        margin-top: 4vh;
    }
    
    .footer-upper {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-brand h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .map-container {
        height: 160px;
        border-radius: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .newsletter-form input {
        padding: 12px 0;
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 14px 24px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .footer-wrapper {
        width: 84%;
        margin-left: 8%;
        padding: 25px 15px;
        border-radius: 12px;
        margin-top: 4vh;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
    }
    
    .footer-column p,
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .newsletter-section h3 {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 140px;
        border-radius: 8px;
    }
}

        .process-section-wrapper {
    padding: clamp(1vh, 2vh, 2vh) clamp(1vw, 2vw, 2vw);
    position: relative;
}

.process-section {
    width: 100%;
    max-width: 96vw;
    height: auto;
    min-height: clamp(700px, 96vh, 96vh);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: clamp(16px, 2.5vw, 32px);
    padding: clamp(30px, 4.5vw, 60px) clamp(25px, 5.5vw, 80px);
    display: flex;
    gap: clamp(30px, 5.5vw, 80px);
    overflow: hidden;
}

/* ================== LEFT SIDE ================== */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: clamp(0px, 3vw, 40px);
    min-height: 400px;
}

.section-label {
    font-family: 'Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: clamp(0.3px, 0.04vw, 0.5px);
    margin-bottom: clamp(15px, 2vh, 0px);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(16px, 2vw, 24px);
    max-width: 540px;
}

.main-heading {
    font-family: 'Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.1;
    color: white;
    margin-bottom: clamp(6px, 0.6vw, 8px);
}

.main-description {
    font-family: 'Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: clamp(10px, 1.2vw, 16px);
}









/* ================== RIGHT SIDE ================== */
.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(30px, 3.5vw, 48px);
    padding-left: clamp(0px, 3vw, 40px);
    position: relative;
    min-height: 400px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 3.5vw, 48px);
}

.process-item {
    display: flex;
    gap: clamp(18px, 1.8vw, 24px);
    align-items: flex-start;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-icon {
    width: clamp(56px, 4.8vw, 64px);
    height: clamp(56px, 4.8vw, 64px);
    min-width: clamp(56px, 4.8vw, 64px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 2vw, 28px);
    color: white;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-item:hover .process-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.process-text {
    flex: 1;
    padding-top: clamp(2px, 0.3vw, 4px);
}

.process-title {
    font-family: 'Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 1.8vw, 24px);
    color: white;
    margin-bottom: clamp(8px, 0.9vw, 12px);
    line-height: 1.3;
}

.process-description {
    font-family: 'Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* ================== SCROLL INDICATOR ================== */
.scroll-indicator {
    display: none;
}

/* ================== RESPONSIVE ================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .process-section {
        flex-direction: column;
        padding: clamp(45px, 5vw, 60px) clamp(40px, 5vw, 60px);
        gap: clamp(50px, 6vh, 70px);
        min-height: auto;
    }

    .left-content,
    .right-content {
        padding: 0;
        min-height: auto;
    }

    .left-content {
        gap: clamp(20px, 3vh, 30px);
    }

    .main-content {
        max-width: 100%;
    }

    .main-heading {
        font-size: clamp(42px, 6vw, 64px);
    }

    .main-description {
        font-size: clamp(16px, 1.8vw, 18px);
    }
}

/* Tablets */
@media (max-width: 968px) {
    .process-section-wrapper {
        padding: 2vh 3vw;
    }

    .process-section {
        max-width: 94vw;
        padding: 45px 40px;
        gap: 45px;
    }

    .main-heading {
        font-size: clamp(38px, 7vw, 56px);
    }

    .toggle-buttons {
        gap: 10px;
         background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .process-steps {
        gap: 35px;
    }

    .process-item {
        gap: 20px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .process-section-wrapper {
        padding: 1.5vh 3vw;
    }

    .process-section {
        max-width: 92vw;
        padding: 35px 28px;
        gap: 35px;
        border-radius: 20px;
    }

    .section-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .main-heading {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 8px;
    }

    .main-description {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .toggle-buttons {
        gap: 10px;
        margin-top: 6px;
    }

    .toggle-btn {
        padding: 11px 22px;
        font-size: 13px;
    }

    .process-steps {
        gap: 30px;
    }

    .process-item {
        gap: 18px;
    }

    .process-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 23px;
    }

    .process-title {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .process-description {
        font-size: 14px;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .process-section {
        padding: 30px 24px;
        gap: 30px;
    }

    .main-heading {
        font-size: clamp(28px, 9vw, 42px);
    }

    .toggle-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .toggle-btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }

    .process-steps {
        gap: 28px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .process-section-wrapper {
        padding: 1vh 4vw;
    }

    .process-section {
        max-width: 92vw;
        padding: 25px 20px;
        gap: 25px;
        border-radius: 16px;
    }

    .section-label {
        font-size: 12px;
    }

    .main-heading {
        font-size: clamp(26px, 9.5vw, 38px);
    }

    .main-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .toggle-btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    .process-steps {
        gap: 24px;
    }

    .process-item {
        gap: 16px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .process-title {
        font-size: 17px;
        margin-bottom: 7px;
    }

    .process-description {
        font-size: 13.5px;
        line-height: 1.55;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .process-section {
        padding: 22px 16px;
        gap: 22px;
    }

    .main-heading {
        font-size: clamp(24px, 10vw, 34px);
    }

    .main-description {
        font-size: 13px;
    }

    .toggle-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .process-title {
        font-size: 16px;
    }

    .process-description {
        font-size: 13px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .process-section-wrapper {
        padding: 1vh 2vw;
    }

    .process-section {
        min-height: auto;
        padding: 30px 40px;
        flex-direction: row;
        gap: 50px;
    }

    .left-content {
        flex: 0.9;
        min-height: auto;
    }

    .right-content {
        flex: 1.1;
        min-height: auto;
    }

    .main-heading {
        font-size: clamp(28px, 5vh, 48px);
    }

    .main-description {
        font-size: clamp(13px, 2.5vh, 16px);
    }

    .process-steps {
        gap: 25px;
    }

    .process-item {
        gap: 16px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .process-title {
        font-size: clamp(16px, 3vh, 20px);
        margin-bottom: 6px;
    }

    .process-description {
        font-size: clamp(13px, 2.5vh, 15px);
    }

    .toggle-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .toggle-btn {
        width: auto;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Very tall screens (portrait tablets) */
@media (min-height: 900px) and (max-width: 768px) {
    .process-section {
        min-height: 85vh;
    }

    .left-content,
    .right-content {
        min-height: 350px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .process-section {
        max-width: 1840px;
        margin: 0 auto;
    }

    .main-heading {
        font-size: 72px;
    }

    .main-description {
        font-size: 19px;
    }
}

       /* ===================== CASE STUDIES WRAPPER ===================== */
.case-studies-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(4vh, 8vh, 8vh);
  margin-bottom: clamp(4vh, 8vh, 8vh);
  padding: 0 2vw;
}

/* ===================== MAIN SECTION ===================== */
.case-studies-section {
  width: 100%;
  max-width: 96vw;
  height: auto;
  min-height: clamp(600px, 96vh, 96vh);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: clamp(16px, 3vw, 32px);
  padding: clamp(20px, 4vw, 50px) clamp(14px, 5vw, 70px);
  display: flex;
  gap: clamp(20px, 4vw, 0px);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}

/* ===================== LEFT SIDE ===================== */
.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.section-label {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: clamp(1px, 0.15vw, 2px);
  text-transform: uppercase;
  font-size: clamp(12px, 1.2vw, 15px);
  margin-bottom: clamp(20px, 3vh, 0px);
}

.companies-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(24px, 0.2vw, 32px);
  flex-grow: 1;
}

.company-name {
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 36px);
  color: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  line-height: 1.1;
  white-space: nowrap;
}

.company-name.active,
.company-name:hover {
  color: white;
  font-size: clamp(20px, 3.2vw, 48px);
}

/* ===================== RIGHT SIDE ===================== */
.right-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.image-container {
  width: 100%;
  height: 560px;
  position: relative;
  border-radius: clamp(12px, 2vw, 24px);
  overflow: hidden;
  background: #00000000;
}

/* ===================== IMAGE LAYERS ===================== */
/* FIX — prevent inactive images from blocking clicks */
.case-study-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none; /* FADE-IN LAYERS CANNOT BLOCK CLICKS ANYMORE */
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.case-study-image.active {
  opacity: 1;
  pointer-events: auto; /* ONLY ACTIVE IMAGE CAN BE CLICKED */
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.case-study-image.active img {
  transform: scale(1);
}

/* ===================== BUTTON ===================== */
.case-study-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}

/* Enable full clickability inside active button */
.case-study-image.active .case-study-button,
.case-study-button *,
.case-study-link {
  pointer-events: auto !important;
}

.case-study-image.active .case-study-button {
  opacity: 1;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  padding: clamp(14px, 1.8vw, 20px) clamp(28px, 3.5vw, 42px);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 60px;
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 16px);
  color: #000;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}

.case-study-link:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
}

/* ===================== TABLET BREAKPOINT ===================== */
@media (max-width: 1024px) {
  .case-studies-wrapper {
    margin-top: 36vh;
    margin-bottom: 28vh;
  }
  .case-studies-section {
    padding: clamp(40px, 5vw, 60px) clamp(30px, 5vw, 50px);
  }
  .company-name {
    font-size: clamp(36px, 6vw, 64px);
  }
  .company-name.active,
  .company-name:hover {
    font-size: clamp(40px, 7vw, 72px);
  }
  
}

/* ===================== MOBILE BREAKPOINT ===================== */
@media (max-width: 768px) {
  .case-studies-wrapper {
    margin-top: 56vh;
    padding: 0 4vw;
    margin-bottom: 48vh;
  }
  
  .case-studies-section {
    flex-direction: column;
    padding: clamp(35px, 6vw, 50px) clamp(25px, 5vw, 40px);
    gap: clamp(30px, 6vh, 40px);
    min-height: auto;
    max-width: 92vw;
  }
  
  .left-content {
    min-height: auto;
    gap: clamp(15px, 3vh, 25px);
  }
  
  .section-label {
    margin-bottom: 10px;
  }
  
  .companies-list {
    gap: clamp(6px, 1.5vh, 10px);
  }
  
  .company-name {
    font-size: clamp(28px, 7vw, 44px);
    white-space: normal;
    word-break: break-word;
  }
  
  .company-name.active,
  .company-name:hover {
    font-size: clamp(32px, 8vw, 52px);
  }
  
  .right-content {
    min-height: clamp(400px, 55vh, 550px);
  }
}


/* ===================== SMALL MOBILE ===================== */
@media (max-width: 480px) {
  .case-studies-wrapper {
    margin-top:56vh;
    margin-bottom: 40vh;
  }
  
  .case-studies-section {
    border-radius: 16px;
    padding: 25px 18px;
    gap: 20px;
  }
  
  .companies-list {
    gap: 8px;
  }
  
  .company-name {
    font-size: clamp(24px, 8vw, 38px);
  }
  
  .company-name.active,
  .company-name:hover {
    font-size: clamp(28px, 9vw, 44px);
  }
  
  .right-content {
    min-height: clamp(350px, 45vh, 450px);
  }
  
  .case-study-link {
    padding: 12px 24px;
    font-size: 13px;
    gap: 8px;
  }
}

/* ===================== EXTRA SMALL ===================== */
@media (max-width: 360px) {
  .case-studies-section {
    padding: 20px 15px;
    gap: 18px;
  }
  .company-name {
    font-size: clamp(22px, 9vw, 34px);
  }
  .right-content {
    min-height: 320px;
    height: 40vh;
  }
  .case-study-link {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ===================== LANDSCAPE MOBILE ===================== */
@media (max-height: 600px) and (orientation: landscape) {
  .case-studies-wrapper {
    margin-top: 2vh;
  }
  .case-studies-section {
    flex-direction: row;
    padding: 25px 35px;
    gap: 30px;
  }
  .company-name {
    font-size: clamp(20px, 4.5vh, 40px);
  }
  .right-content {
    min-height: 280px;
    height: 70vh;
  }
}



/* WRAPPER */
/* ============================================
   CONTACT SECTION - FULLY RESPONSIVE
   ============================================ */

/* MAIN WRAPPER */
 .contact-wrapper {
    width: min(90%, 1400px);
    margin:  16vh auto 12vh auto;
    
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(16px, 3vw, 28px);
    
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
    backdrop-filter: blur(12px);
}

/* FLEX CONTAINER */
.contact-container {
    display: flex;
    gap: clamp(30px, 5vw, 60px);
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ============================================
   LEFT SIDE - CONTENT
   ============================================ */
.contact-left {
    flex: 1 1 min(100%, 400px);
    max-width: 520px;
}

.contact-heading {
    font-size: clamp(1.75rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.contact-description {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 18vh;
}

.toggle-note {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(10px, 1.5vw, 16px);
    padding-left: 4px;
}

/* ============================================
   TOGGLE BUTTONS
   ============================================ */
.toggle-wrapper {
    margin: clamp(20px, 3vw, 25px) 0;
}

.toggle-container {
    background: #1a1a1a;
    padding: 5px;
    border-radius: 40px;
    display: inline-flex;
    width: 100%;
    max-width: 320px;
    gap: 12px;
}

.toggle-btn {
    flex: 1;
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
    border: none;
    background: transparent;
    border-radius: 56px;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn.active {
    background: #fff;
    color: #000;
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RIGHT SIDE - FORM
   ============================================ */
.contact-right {
    flex: 1 1 min(100%, 420px);
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.5vw, 20px);
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1 1 min(100%, 200px);
}

/* ============================================
   FORM INPUTS & TEXTAREA
   ============================================ */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 16px) clamp(14px, 2.5vw, 18px);
    
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: clamp(8px, 1.5vw, 12px);
    
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

#company-field {
    opacity: 1;
    max-height: 100px;
    transition: opacity 0.25s ease, max-height 0.25s ease;
}

#company-field.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}


.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.form-textarea {
    min-height: clamp(100px, 15vw, 130px);
    resize: vertical;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* SELECT DROPDOWN ARROW */
.form-select {
    appearance: none;
    width: 100%;
    padding: clamp(12px, 1.2vw, 16px) clamp(14px, 1.8vw, 20px);
    padding-right: clamp(40px, 5vw, 48px);

    font-family: 'Grotesk', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-opacity='0.7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right clamp(14px, 2vw, 18px) center;

    cursor: pointer;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

/* Better hover + focus */
.form-select:hover,
.form-select:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

/* STYLE FOR DROPDOWN OPTIONS */
.form-select option {
    background-color: #1a1a1a; /* dark dropdown background */
    color: white;
    padding: 12px;       /* ensures readable spacing */
    font-size: 15px;     /* consistent readability */
}


/* SUBMIT BUTTON */
.submit-btn {
    padding: clamp(14px, 2.5vw, 18px) clamp(24px, 4vw, 40px);
    background: #fff;
    color: #000;
    border: none;
    border-radius: clamp(8px, 1.5vw, 12px);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 500;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    align-self: flex-start;
}

.submit-btn svg {
    width: clamp(18px, 2vw, 20px);
    height: auto;
}

.submit-btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* TABLET & BELOW */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: clamp(35px, 5vw, 45px);
    }
    
    .contact-left {
        max-width: 100%;
    }
    
    .toggle-container {
        max-width: 100%;
    }
}

/* MOBILE LANDSCAPE & PORTRAIT */
@media (max-width: 600px) {
    .contact-wrapper {
        padding: clamp(25px, 5vw, 40px) clamp(16px, 4vw, 25px);
        margin-bottom: 8vh;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row input,
    .form-row select {
        flex: 1 1 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .toggle-btn {
        font-size: 0.85rem;
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 400px) {
    .contact-wrapper {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    
    .form-textarea {
        min-height: 90px;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
}

/* LARGE SCREENS - OPTIMIZATION */
@media (min-width: 1400px) {
    .contact-container {
        gap: 80px;
    }
    
    .contact-left {
        flex: 1 1 480px;
    }
    
    .contact-right {
        flex: 1 1 500px;
    }
}

/* ============================================
   ACCESSIBILITY & DARK MODE SUPPORT
   ============================================ */

/* Focus visible for keyboard navigation */
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible,
.submit-btn:focus-visible,
.toggle-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


 /* ===== INDEX VIEW ===== */
#index-view {
  display: flex;
  min-height: 100vh;
  align-items: center;
}

.index-left {
  width: 50%;
  background: linear-gradient(135deg, #0f0f0f 0%, #141414 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 5rem);
  position: relative;
}

.index-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.01) 0%, transparent 50%);
  pointer-events: none;
}

.index-label {
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  text-transform: uppercase;
    font-family: "Grotesk";
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
}

.company-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 3.2rem, 4rem);
}

.company-item {
  font-size: clamp(1.6rem, 2rem, 3rem);
  font-weight: 600;
  font-family: "Grotesk";
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.2;
}

.company-item:hover {
  color: rgba(255,255,255,1);

}

.company-item.active {
  color: rgba(255,255,255,1);
}

.index-right {
  width: 62%;
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 -40px 60px rgba(0,0,0,0.3);
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.case-image.active {
  opacity: 1;
}

.cta-pill {
  position: absolute;
  width: fit-content;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: clamp(0.8rem, 0.9vw, 1.1rem) clamp(1rem, 1.6vw, 1.6rem);
  border-radius: 50px;
  color: #0a0a0a;
  font-size: clamp(0.8rem, 0.95vw, 1.05rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-decoration: none;
    font-family: "Grotesk";
  display: inline-block;
}

.cta-pill:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.cta-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-pill:hover .cta-arrow {
  transform: translateX(4px);
}

/* ===== DETAIL VIEW ===== */
#detail-view {
  min-height: 100vh;
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}

.detail-nav {
  width: 340px;
  background: linear-gradient(135deg, #141414 0%, #181818 100%);
  border-radius: 24px;
  padding: clamp(2rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: sticky;
  top: clamp(2rem, 4vw, 4rem);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  margin-bottom: clamp(2rem, 2.5vw, 2.5rem);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
   font-family: "Grotesk";
}

.back-link:hover {
  color: rgba(255,255,255,0.9);
}

.nav-title {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
   font-family: "Grotesk";
  color: #ffffff;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 1.2vw, 1.2rem);
}

.nav-item {
  font-size: clamp(0.75rem, 0.95vw, 1rem);
  font-weight: 400;
   font-family: "Grotesk";
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: clamp(0.3rem, 0.5vw, 0.5rem) 0;
  line-height: 1.5;
}

.nav-item:hover {
  color: rgba(255,255,255,0.9);
}

.nav-item.active {
  color: #ffffff;
  font-weight: 500;
}

.detail-content {
  flex: 1;
  max-width: 900px;
}

.detail-hero {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 -40px 60px rgba(0,0,0,0.3);
  position: relative;
}

.detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.detail-image.active {
  opacity: 1;
}

.detail-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: clamp(2rem, 2.5vw, 2.5rem);
  color: #ffffff;
  letter-spacing: -0.02em;
   font-family: "Grotesk";
}

.detail-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.bullet-item {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
   font-family: "Grotesk";
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.bullet-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #index-view {
    flex-direction: column;
  }

  .index-left,
  .index-right {
    width: 100%;
    min-height: auto;
  }

  .index-left {
    padding: 3rem 2rem;
  }

  .index-right {
    padding: 2rem;
  }

  #detail-view {
    flex-direction: column;
  }

  .detail-nav {
    width: 100%;
    position: static;
  }

  .detail-content {
    max-width: 100%;
  }
}


/* Section Container */
.specialisms-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(1rem, 5vw, 4rem);
}

/* The Track - MOVEMENT HANDLED BY JS */
.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    /* No transition here - JS handles the physics */
}

/* Card Structure */
.card {
    min-width: 100%;
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    /* Only opacity is handled by CSS, position is handled by track */
    opacity: 0.4;
    transform: scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.card.active {
    opacity: 1;
    transform: scale(1);
}

/* Background & Overlays */
.card-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

/* Image - PARALLAX HANDLED BY JS */
.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(0.9);
    will-change: transform;
    transform: scale(1.1); /* Start zoomed in for parallax room */
    /* No transition here - JS handles the parallax */
}

/* Noise Texture (Grain) */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* Cinematic Vignette/Gradient */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0) 40%, 
        rgba(0,0,0,0.8) 80%,
        rgba(0,0,0,0.95) 100%
    );
}

/* Card Content Layout */
.card-content {
    position: absolute;
    inset: 0;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Meta Header (Top) */
.meta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: "Grotesk";
}

.index {
    font-size: clamp(5rem, 10vw, 10rem);
     font-family: "Grotesk";
    line-height: 0.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 1); /* Watermark style */
    font-family: 'Inter', sans-serif;
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.active .index {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Text Block (Bottom Left) */
.text-block {
    max-width: 600px;
    margin-bottom: 2rem;
}

.heading {
 font-family: "Suisse";
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.description {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Staggered Animations on Active */
.card.active .heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.card.active .description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Controls (Bottom Right - Fixed Overlay) */
.slider-ui {
    position: absolute;
    bottom: clamp(1rem, 5vw, 4rem);
    right: clamp(1rem, 5vw, 4rem);
    z-index: 10;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    pointer-events: none;
}

.slider-controls {
    display: flex;
    gap: 0.6rem;
    pointer-events: auto;
}

.nav-btn {
    width: clamp(44px, 5vw, 64px);
    height: clamp(44px, 5vw, 64px);
    border-radius: 20%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.5);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: transparent;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .text-block {
        max-width: 100%;
        margin-bottom: 5rem;
    }
    
    .slider-ui {
        padding: 0;
        bottom: calc(clamp(1rem, 5vw, 4rem) + 2rem);
        right: calc(clamp(1rem, 5vw, 4rem) + 1.5rem);
    }
    
    .index {
        font-size: 3rem;
    }
}