/*!
Theme Name: alpha-ai
Theme URI: http://alpha-ai/
Author: alpha-ai
Author URI: http://alpha-ai/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: alpha-ai
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

alpha-ai is based on alpha-ai https://alpha-ai/, (C) 2012-2020 Automattic, Inc.
alpha-ai is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
@font-face {
  font-family: "Causten";
  src: url("./fonts/Causten-Bold.otf?v=1") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Causten";
  src: url("./fonts/Causten-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Causten", system-ui, sans-serif;
}

body {
  font-family: "Causten", system-ui, sans-serif;
  font-style: normal;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
/* Navigation Container */
.nav-container {
  width: 85vw;
  max-width: calc(100% - 40px);
  margin: auto;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 20px;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

/* Navigation Bar */
nav {
  background-color: rgba(0, 0, 0, 0.7);
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background-color 0.3s ease;
  position: relative;
}

/* Enhanced blur effect when scrolled */
.nav-container.scrolled {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(60px);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}

.nav-container.scrolled nav {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Logo Section */
.logo-top {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s ease;
}

.logo-top:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation Links */
.desktop-nav-links {
  display: flex;
  list-style: none;
  gap: 55px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.desktop-nav-links > li {
  position: relative;
}

.desktop-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 8px 0px;
  position: relative;
  display: block;
}

.desktop-nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #37c491, #1489ad);
  transition: width 0.3s ease;
}

.desktop-nav-links > li > a:hover::after {
  width: 100%;
}
.desktop-nav-links > li > a.active::after {
  width: 100%;
  background: linear-gradient(to right, #37c491, #1489ad);
}
/* First Level sub-menu */
.sub-menu {
  position: absolute;
  top: calc(100% + 30px);
  left: 170%;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px 30px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 101;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Inner glow effect */
.sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.2) 0%, transparent 40%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.08) 0%, transparent 40%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Show sub-menu on hover */
.desktop-nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* sub-menu item styling */
.menu-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  display: flex;
  align-items: left;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: translateX(5px);
}

#menu-item-16 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px !important;
  margin-bottom: 20px;
  max-width: 220px;
  cursor: default;
  display: flex;
  align-items: left;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}

#menu-item-16:hover {
  transform: translateX(0px) !important;
}

.menu-item-16::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #37c491, #1489ad);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 149;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu - Updated to slide from right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 32px;
  right: 25px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.close-btn svg {
  width: 22px;
  height: 22px;
}

/* Mobile Navigation Links */
.nav-links {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
}

.nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-links li:last-child {
  border-bottom: none;
}

.nav-links a {
  display: block;
  padding: 24px 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

/* Mobile sub-menu toggle */
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 30px;
  border: none;
  background: none;
  color: white;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-dropdown-toggle .chevron {
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-dropdown-toggle.active .chevron {
  transform: rotate(180deg);
}

/* Mobile dropdown content */
.nav-links .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.3);
  position: static;
  opacity: 1;
  visibility: visible;
  /* backdrop-filter: none; */
  -webkit-backdrop-filter: none;
  padding: 0;
  min-width: auto;
  box-shadow: none;
  border: none;
  transform: none;
}

.nav-links .sub-menu.active {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

/* Inner glow effect for active mobile submenu */
.nav-links .sub-menu.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.2) 0%, transparent 40%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.08) 0%, transparent 40%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.nav-links .sub-menu li {
  padding: 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links .sub-menu li:last-child {
  border-bottom: none;
}

.nav-links .sub-menu a {
  padding: 16px 40px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  border-bottom: none;
  position: relative;
  z-index: 1;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-dropdown-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-links a:hover::before,
.mobile-dropdown-toggle:hover::before {
  left: 100%;
}

.nav-links a:hover,
.mobile-dropdown-toggle:hover {
  color: #ffffff;
  transform: translateX(10px);
}

/* Logo in mobile menu */
.mobile-menu-logo {
  padding: 40px 30px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
  height: 30px;
  width: auto;
  opacity: 0.9;
}

/* Animated entrance for menu items - Updated for right to left */
.mobile-menu.active .nav-links li {
  animation: slideInFromRight 0.5s ease forwards;
}

.mobile-menu.active .nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu.active .nav-links li:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-menu.active .nav-links li:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-menu.active .nav-links li:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-menu.active .nav-links li:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-menu.active .nav-links li:nth-child(6) {
  animation-delay: 0.35s;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo-wrapper {
  position: fixed;
  top: 16px;
  width: 180px;
  height: 42px;
}

svg {
  width: 100%;
  height: 100%;
}

/* Initial state - full logo visible */
.alpha-text path {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: right center; /* Compress towards the left from right edge */
}

/* Compression (scroll down) timing - right to left */
.letter-a2 {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.letter-h {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.letter-p {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.letter-l {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.letter-a {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.ai-text {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  fill: url(#ai-gradient);
}

/* Compressed state - alpha letters compress towards left, ai moves left */
.logo-wrapper.compressed .letter-a2 {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0s;
}

.logo-wrapper.compressed .letter-h {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.1s;
}

.logo-wrapper.compressed .letter-p {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.2s;
}

.logo-wrapper.compressed .letter-l {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.3s;
}

.logo-wrapper.compressed .letter-a {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.4s;
}

/* Expansion (scroll up) timing - left to right */
.logo-wrapper:not(.compressed) .letter-a {
  transition-delay: 0s;
}

.logo-wrapper:not(.compressed) .letter-l {
  transition-delay: 0.1s;
}

.logo-wrapper:not(.compressed) .letter-p {
  transition-delay: 0.2s;
}

.logo-wrapper:not(.compressed) .letter-h {
  transition-delay: 0.3s;
}

.logo-wrapper:not(.compressed) .letter-a2 {
  transition-delay: 0.4s;
}

.logo-wrapper.compressed .ai-text {
  fill: white;
  transform: translateX(-130px);
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media Queries */
@media (max-width: 1330px) {
  .desktop-nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Responsive adjustments */
@media (max-width: 1240px) {
  .nav-container {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1899px) {
  .nav-container {
    width: 85vw !important;
  }
}
@media screen and (min-width: 1900px) {
  .nav-container {
    width: 85vw !important;
  }
}
@media (max-width: 767px) {
  .nav-container {
    width: 85vw !important;
  }
}

.hero-section {
  width: 85vw;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Left Content - 60% */
.content-wrapper {
  width: 80%;
  z-index: 2;
  position: relative;
}

/* Right Animation Container - 40% */
.hero-animation {
  width: 40%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-animation canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.main-heading {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;

  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.main-part {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  flex-direction: column;
}

.word-carousel {
  position: relative;
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.word-list {
  animation: wordSlide 9s ease-in-out infinite;
  position: relative;
}

.word-list span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
  background: linear-gradient(180deg, #ffffff 0%, #6b7280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes wordSlide {
  0%,
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  33%,
  63% {
    transform: translateY(-1.2em);
    opacity: 1;
  }
  66%,
  96% {
    transform: translateY(-2.4em);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.sub-heading {
  font-size: 36px !important;
  font-weight: 400;
  color: #ffffff;
  margin-left: 0;
  margin-bottom: 10px;
  margin-top: 10px;
}

.subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 48px;
  max-width: 85%;
}

.subtitle b {
  font-weight: 500 !important;
}

.buttons-container {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}

.hero-button {
  padding: 12px 28px;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: 0px;
}

.hero-button:hover::before {
  width: 100%;
}

.button-primary {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.35) 0%, rgba(55, 196, 145, 0.35) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(20, 137, 173, 0.3);
  border-radius: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(20, 137, 173, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.button-primary:hover::before {
  transform: translateX(100%);
}

.button-primary:hover {
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.35) 0%, rgba(55, 196, 145, 0.35) 100%);
  border-color: rgba(20, 137, 173, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 137, 173, 0.4), 0 0 40px rgba(55, 196, 145, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-primary:active {
  transform: translateY(0);
}

.button-primary:active::after {
  opacity: 0;
}

.button-secondary {
  background-color: #121212;
  color: #ffffff;
  border: 1px solid white;
  position: relative;
  font-size: 20px;
  font-weight: 400;
}

.button-secondary::before {
  background: #ffffff;
  border-color: linear-gradient(to right, #37c491, #1489ad);
}

.button-secondary:hover {
  color: #000000;
  transform: translateY(-2px);
}

.button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for larger screens */
@media (min-width: 1400px) {
  .hero-section {
    width: 85vw;
  }

  .main-heading {
    font-size: 70px;
  }

  /* .sub-heading {
    font-size: 42px !important;
  } */

  .subtitle {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .hero-section {
    width: 85vw;
  }

  .main-heading {
    font-size: 50px;
  }

  .sub-heading {
    font-size: 36px !important;
  }

  .subtitle {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    width: 90vw;
  }

  .hero-animation {
    width: 45%;
  }

  .main-heading {
    font-size: 50px;
  }

  /* .sub-heading {
    font-size: 24px !important;
  } */

  .subtitle {
    font-size: 22px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero-section {
    width: 95vw;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
  }

  .hero-container {
    flex-direction: column;
    height: 80vh;
    gap: 0px !important;
    justify-content: unset;
  }

  /* Video at top */
  /* Default styles */
  .hero-animation {
    width: 100%;
    order: 1;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* space below navbar */
  }

  .hero-animation video {
    width: 250px;
    height: 250px;
  }

  /* iPhone specific media query */
  @supports (-webkit-touch-callout: none) {
    @media only screen and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) {
      .hero-animation {
        margin-top: 60px; /* more space on iPhones */
      }
    }
  }

  /* Content below video */
  .content-wrapper {
    width: 100%;
    order: 2;
    text-align: center;
    padding: 0 15px;
  }

  /* Mobile font sizes as requested */
  .main-heading {
    margin-bottom: 15px;
    gap: 15px;
  }

  .main-part {
    font-size: 50px;
    font-weight: 400;
    justify-content: center;
  }

  .sub-heading {
    font-weight: 400;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
  }

  /* Buttons remain in one row */
  .buttons-container {
    justify-content: center;
    margin-bottom: 40px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    width: 100%;
    padding: 65px 0;
  }

  .content-wrapper {
    padding: 0 10px;
  }

  .buttons-container {
    gap: 10px;
  }
}

.trusted-by-section {
  background-color: #000000;
  padding: 0px 0 140px;
  width: 100%;
  /* margin-top: -220px; */
  overflow: hidden;
}

.trusted-by-container {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.trusted-by-heading {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 550;
  margin-bottom: 100px;
}

/* Desktop & Tablet Layout */
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-item {
  flex: 1;
  min-width: 120px;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%) brightness(0) invert(1);
}

.logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Mobile Slider Styles */
.mobile-slider {
  display: none;
  position: relative;
  /* overflow: hidden; */
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  height: 80px;
}

.slider-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: continuousScroll 20s linear infinite;
}

.slider-item {
  flex: 0 0 auto;
  width: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(100%) brightness(0) invert(1);
  transition: opacity 0.3s ease;
  margin-left: 10px;
  margin-right: 10px;
}

.slider-item:hover {
  opacity: 1;
}

.slider-item img {
  max-width: 85px;
  max-height: 40px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Continuous scroll animation */
@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-931px); /* 7 items * 133px */
  }
}

/* Pause on hover */
.mobile-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .logos-grid {
    gap: 40px;
  }

  .logo-item {
    max-width: 120px;
  }
}

@media (max-width: 992px) {
  .trusted-by-section {
    padding: 100px 0 90px;
    margin-top: -150px;
  }

  .trusted-by-heading {
    margin-bottom: 60px;
  }

  .logos-grid {
    gap: 30px;
  }

  .logo-item {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 80px 0 70px;
    margin-top: -100px;
  }

  .trusted-by-heading {
    margin-bottom: 40px;
    margin-top: 30px;
  }

  .logos-grid {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}

@media (max-width: 480px) {
  .trusted-by-container {
    padding: 0 10px;
  }

  .trusted-by-section {
    padding: 60px 0 45px;
  }

  .mobile-slider {
    max-width: 350px;
  }

  .slider-item {
    width: 116px;
  }

  @keyframes continuousScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-812px); /* 7 items * 116px */
    }
  }
}

/* About Us Section Styles */
.about-container {
  max-width: 85vw;
  width: 100%;
  margin: 0 auto;
  margin-top: -30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
  position: relative;
  z-index: 1;
}

/* Left Section - Sticky */
.left-section {
  color: #ffffff;
  position: sticky;
  top: 140px;
  height: fit-content;
  animation: slideInLeft 0.8s ease-out;
  flex: 0 0 auto;
  width: 45%;
  /* max-width: 550px; */
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-section p {
  font-size: 42px;
  line-height: 1.3;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 150;
  /* max-width: 630px; */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  /* padding: 30px; */
}

.left-section p b {
  color: #ffffff;
  font-weight: 500;
}

/* Right Section - Scrollable Cards */
.right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  animation: slideInRight 0.8s ease-out;
  flex: 1 1 auto;
  width: 45%;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border-radius: 0;
  padding: 30px;
  padding-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(20, 137, 173, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 400px;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

/* Inner gradient glow for cards */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}
.card:nth-child(2) {
  animation-delay: 0.4s;
}
.card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The glowing border effect for team boxes */
.about-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card.glow-active::after {
  opacity: 1;
}

/* Card Top Section */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

.card-title {
  flex: 1;
}

.card-title p {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  text-transform: capitalize;
  max-width: 600px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* cursor: pointer; */
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  color: white;
}

.arrow-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.arrow-icon:hover {
  transform: scale(1.1) translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 30px rgba(255, 255, 255, 0.08);
}

.arrow-icon:hover svg {
  stroke: #ffffff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
}

/* Card Bottom Section */
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.explanation {
  flex: 1;
  padding-right: 15px;
}

.explanation p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
}

/* Mobile Slider Styles (Hidden by default) */
.about-mobile-slider-container {
  display: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  padding: 0;
}

.about-slider-wrapper {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  padding: 0;
}

.about-slider-card {
  flex: 0 0 100%;
  /* padding: 0 20px; */
}

.about-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  padding-bottom: 20px;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
  .about-container {
    max-width: 85vw;
    gap: 200px;
  }
}

/* Large Screens (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  .about-container {
    gap: 150px;
  }
}

/* Medium Screens (1200px - 1599px) */
@media (max-width: 1599px) {
  .about-container {
    gap: 80px;
    /* padding: 30px; */
  }

  .card {
    width: 100%;
    padding: 30px;
  }
}

/* Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .about-container {
    gap: 60px;
    width: 85vw;
    /* padding: 30px; */
  }

  .left-section {
    width: 500px;
  }

  .left-section p {
    font-size: 36px;
  }

  .card {
    width: 100%;
    padding: 30px;
    min-height: 450px;
  }

  .card-title p {
    font-size: 36px;
  }

  .explanation p {
    font-size: 22px;
  }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1046px) {
  .nav-container {
    width: 85vw !important;
    max-width: 85vw !important;
  }

  .about-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 95vw;
    padding: 0px;
  }

  .left-section {
    position: relative;
    top: 0;
    width: 100%;
    max-width: auto;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .left-section p {
    font-size: 32px;
    /* padding-top: 20px; */
    text-align: left;
  }

  #how-it-works {
    display: block;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  /* Hide normal right section on tablet */
  .right-section {
    display: none;
  }

  /* Show mobile slider on tablet */
  .about-mobile-slider-container {
    display: block;
    width: 100%;
    max-width: 85vw;
    margin: 20px auto;
    /* padding: 20px 0; */
  }

  .about-slider-card .card {
    width: 85vw;
    margin: 0 auto;
    height: auto;
    min-height: 300px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    /* padding: 40px; */
    animation: none;
  }

  .feature-row,
  .scroll-stack-card:nth-child(even) .feature-row,
  .scroll-stack-card:nth-child(odd) .feature-row {
    flex-direction: column !important;
    padding: 40px;
    gap: 20px;
    width: 85vw;
    max-width: 85vw;
  }

  .feature-content {
    max-width: 100%;
  }

  .header-pill {
    margin-bottom: 0;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  body {
    font-size: 18px;
  }

  section {
    /* padding: 45px 0; */
  }

  .header-pill {
    position: sticky;
    top: 20px;
    z-index: 40;
    margin-bottom: 0;
    /* margin-top: 70px; */
  }
  .carousel-section {
    padding: 50px 0 !important;
  }
  .nav-container.scrolled nav {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .about-container {
    gap: 40px !important;
    padding: 0px;
    max-width: 95vw;
  }

  .left-section {
    padding: 0 20px;
    margin-bottom: 0 !important;
  }

  .left-section p {
    font-size: 18px;
    padding-top: 40px;
    text-align: left;
  }
  #how-it-works {
    display: none;
  }

  /* Hide normal right section on mobile */
  .right-section {
    display: none;
  }

  /* Show mobile slider */
  .about-mobile-slider-container {
    display: block;
  }

  .about-slider-card .card {
    width: 85vw;
    margin: 0 auto;
    height: auto;
    min-height: auto;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    /* padding: 30px; */
    /* margin: 0; */
    animation: none;
  }

  .card-title p {
    font-size: 36px;
  }

  .arrow-icon {
    width: 60px;
    height: 60px;
  }

  .arrow-icon svg {
    width: 28px;
    height: 28px;
  }

  .explanation p {
    font-size: 18px;
    padding-top: 20px;
  }

  .content-description {
    font-size: 18px;
  }

  .member-description {
    font-size: 18px;
  }

  .bullet-item {
    font-size: 18px;
  }

  /* 70px spacing adjustments for all header pills to match FAQ */
  .team-title {
    margin-top: 40px;
  }

  .section-heading {
    margin-top: 40px !important;
  }

  .section-title {
    margin-top: 40px;
  }

  .about-container {
    margin-top: 40px;
  }
}

/* Features Section Styles */
.features-section {
  background-color: #000000;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-top: 140px;
}

.features-container {
  width: 100%;
  /* max-width: 1400px; */
  /* padding: 0 40px; */
  margin: 0 auto;
  position: relative;
  max-width: 85vw;
}

.section-title {
  font-size: clamp(40px, 2.2vw, 32px);
  font-weight: 550;
  text-align: center;
  /* padding: 25px 0; */
  color: #ffffff;
  position: relative;
  z-index: 10;
  padding: 0px 0 45px 0;
  margin-top: -30px;
}

/* Stack wrapper for pinning */
.stack-wrapper {
  position: relative;
  /* min-height: 400vh;
  margin-bottom: 100px; */

  margin-bottom: 100px;
}

/* Stack Card Styles */
.scroll-stack-card {
  position: sticky;
  top: 140px;
  transform-origin: center center;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  margin-top: 50px;
}

/* Set z-index for proper stacking order */
.scroll-stack-card[data-card-index="0"] {
  z-index: 1;
}
.scroll-stack-card[data-card-index="1"] {
  z-index: 2;
}
.scroll-stack-card[data-card-index="2"] {
  z-index: 3;
}
.scroll-stack-card[data-card-index="3"] {
  z-index: 4;
}
.scroll-stack-card[data-card-index="4"] {
  z-index: 5;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  background-color: #000000;
  border: 1px solid #454545;
  border-radius: 0px;
  padding: 60px;
  min-height: 550px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  /* CSS variables for dynamic glow positioning*/
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 400px;
  max-width: 70.52vw;
  margin: 0 auto;
}

/* The glowing border effect for feature rows */
.feature-row::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-row.glow-active::after {
  opacity: 1;
}

.feature-row:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
  position: relative;
  z-index: 2;
}

.feature-number {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex-shrink: 0;

  /* White glassmorphism effect with lighter opacity */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  color: white;
  font-size: 20px;
}

.feature-number:hover {
  transform: scale(1.1) translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 15px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 30px rgba(255, 255, 255, 0.08);
}

.feature-row:hover .feature-number {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

.feature-title {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  /* margin-bottom: 8px; */
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.feature-description {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.feature-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  z-index: 2;
}

.feature-video {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

#case-prep-video {
  margin-left: -40px;
}

/* Alternating layout for even items */
.scroll-stack-card:nth-child(even) .feature-row {
  flex-direction: row-reverse;
}

/* Why AlphaAI Section Styles */
.why-alphaai-section {
  background-color: #000000;
  color: white;
  padding: 15px 0;
  max-width: 85vw;
  margin: 0 auto;
}

.why-alphaai-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000;
}

.partner-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 40px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.partner-section:hover {
  background-color: #111111;
}

.partner-section:not(:last-child) {
  border-bottom: 1px solid #333;
}

.partner-label {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #888;
  width: 150px;
  flex-shrink: 0;
  margin-top: 10px;
  transition: transform 0.2s ease;
}

.partner-content {
  flex: 1;
  max-width: 900px;
  margin-left: 60px;
  transition: transform 0.2s ease;
}

.partner-text {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}

.partner-description {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #a0a0a0;
}

.partner-arrow {
  flex-shrink: 0;
  margin-left: 40px;
  margin-top: 10px;
}

.partner-arrow svg {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
  stroke-width: 1.5;
  transition: transform 0.2s ease;
}

.partner-section:hover .partner-label {
  transform: translateX(6px);
}

.partner-section:hover .partner-content {
  transform: translateX(6px);
}

.partner-section:hover .partner-arrow svg {
  transform: translateX(-6px);
}

/* Team Section Styles */
.team-section {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  flex-direction: column;
  padding-top: 140px;
}

.team-container {
  /* max-width: 1500px; */
  max-width: 85vw;
  margin: 0 auto;
  width: 100%;
}

.team-title {
  font-size: clamp(40px, 2.2vw, 32px);
  font-weight: 550;
  text-align: center;
  padding: 0px 0 50px 0;
  color: #ffffff;
  position: relative;
  margin: 0;
  margin-top: -30px;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  position: relative;
  width: 100%;
}

.team-member-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  position: relative;
  /* min-width: calc((85vw - 110px) / 3);   */
  max-width: calc((85vw - 110px) / 3);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
  overflow: hidden;
  flex: 1;
  /* CSS variables for dynamic glow positioning */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

/* The glowing border effect for team boxes */
.team-member-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Inner glow effect */
.team-member-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 0%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.08) 0%, transparent 40%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.01) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.team-member-box.glow-active::after {
  opacity: 1;
}

.member-photo {
  width: 130px;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  border-radius: 0;
}

/* .member-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
} */

.member-name {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}

.member-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.team-member-box:hover .member-description {
  opacity: 1;
  max-height: 120px;
  margin-top: 6px;
}
/* Team Section Styles */
.team-section {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  flex-direction: column;
  padding-top: 140px;
}

.team-container {
  max-width: 85vw;
  margin: 0 auto;
  width: 100%;
}

.team-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 550;
  text-align: center;
  padding: 0px 0 50px 0;
  color: #ffffff;
  position: relative;
  margin: 0;
  margin-top: -20px;
}

.team-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 55px;
  position: relative;
  /* flex-wrap: wrap; */
}

.team-member-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  position: relative;
  /* min-width: calc((85vw - 110px) / 3);  */
  max-width: calc((85vw - 110px) / 3);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
  overflow: hidden;
  flex: 1 1 450px;

  /* CSS variables for dynamic glow positioning */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

/* The glowing border effect for team boxes */
.team-member-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Inner glow effect */
.team-member-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 0%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.08) 0%, transparent 40%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.01) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.team-member-box.glow-active::after {
  opacity: 1;
}

.member-photo {
  width: 130px;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  position: relative;
  z-index: 2;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  border-radius: 0;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  font-size: 22px;
}

.member-name {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}

.member-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.team-member-box:hover .member-description {
  opacity: 1;
  max-height: 200px;
  margin-top: 6px;
}

/* Responsive Styles */

/* Extra Large Screens (2000px+) */
@media (min-width: 2000px) {
  .team-container {
    max-width: 85vw;
  }

  .team-grid {
    gap: 70px;
  }

  .team-member-box {
    /* min-width: 300px; */
    max-width: 550px;
    min-height: 500px;
    padding: 32px;
  }

  .member-photo {
    width: 150px;
    height: 150px;
  }
  /* 
  .member-name {
    font-size: 40px;
  } */

  .member-description {
    font-size: 22px;
  }
  .team-member-box:hover .member-description {
    opacity: 1;
    max-height: 200px;
    margin-top: 6px;
  }
}

/* Medium Desktop (1200px - 1599px) */
@media (max-width: 1599px) {
  .team-container {
    max-width: 85vw;
  }

  .team-grid {
    gap: 40px;
    flex-wrap: wrap !important;
  }

  .team-member-box {
    /* min-width: 300px; */
    max-width: calc((85vw - 80px) / 3);
    min-height: 400px;
  }

  .member-name {
    font-size: 36px;
  }

  .member-description {
    font-size: 18px;
  }
}

/* Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
  .team-container {
    max-width: 90vw;
  }

  .team-grid {
    gap: 30px;
  }

  .team-member-box {
    /* min-width: 300px; */
    max-width: 350px;
    min-height: 380px;
    padding: 20px;
  }

  .member-photo {
    width: 110px;
    height: 110px;
  }

  /* .member-name {
    font-size: 28px;
  } */

  .member-description {
    font-size: 18px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .team-section {
    padding-top: 100px;
  }

  .team-container {
    max-width: 92vw;
  }

  .team-title {
    padding-bottom: 40px;
  }

  .team-grid {
    gap: 25px;
    justify-content: space-around;
  }

  .team-member-box {
    min-width: 320px;
    max-width: 85vw;
    min-height: 350px;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  /* .member-name {
    font-size: 26px;
  } */
}

/* Large Mobile (6
   



        /* Carousel Section Styles */
.carousel-section {
  width: 100%;
  padding: 80px 0;
  background-color: #000000;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.carousel-heading {
  font-size: clamp(40px, 2.2vw, 32px);
  font-weight: 550;
  text-align: center;
  padding: 40px 0;
  color: #ffffff;
  position: relative;
  z-index: 9;
  max-width: 85vw;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  width: calc(240px * 24);
  animation: scroll 60s linear infinite;
}

.logo-slide {
  flex: 0 0 240px;
  height: 160px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-slide-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  border-radius: 0px;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.15) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  /* CSS variables for dynamic glow positioning */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

/* The glowing border effect for logo slides */
.logo-slide-inner::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 3px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-slide-inner.glow-active::after {
  opacity: 1;
}

.logo-slide-inner:hover {
  border-color: #555;
  /* background-color: #151515; */
}

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0) invert(1);
}

/* Individual logo size adjustments */
.logo-img[alt*="Amazon"] {
  width: 120px;
  height: auto;
  padding-top: 5px;
}
.logo-img[alt*="Antler"] {
  width: 100px;
  height: auto;
}
.logo-img[alt*="AV"] {
  width: 160px;
  height: 40px;
}
.logo-img[alt*="Bagallery"] {
  width: 140px;
  height: 50px;
}
.logo-img[alt*="Capgemini"] {
  width: 250px;
  height: 65px;
}
.logo-img[alt*="Egen"] {
  width: 110px;
  height: auto;
}
.logo-img[alt*="Hitachi"] {
  width: 200px;
  height: 40px;
}
.logo-img[alt*="xloop"] {
  width: 300px;
  height: 40px;
}
.logo-img[alt*="Plus972"] {
  width: 140px;
  height: 35px;
}
.logo-img[alt*="proqura"] {
  width: 300px;
  height: 50px;
}
.logo-img[alt*="pythian"] {
  width: 120px;
  height: auto;
}
.logo-img[alt*="Rockwell"] {
  width: 210px;
  height: auto;
}

.logo-slide-inner:hover .logo-img {
  opacity: 1;
  transform: scale(1.05);
}

/* Gradient overlays for smooth edges */
.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, #000000, transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, #000000, transparent);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 12));
  }
}

/* FAQ Section Styles */
.faq-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0px;
  position: relative;
  overflow-x: hidden;
  max-width: 85vw;
  margin: 0 auto;
}

.faq-container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px !important;
  font-weight: 500;
  background: transparent;
  color: #ffffff;
  margin: 0;
}

.faq-grid {
  gap: 50px;
  /* padding: 5px 20px; */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
  margin: 0 auto;
  width: 100%;
}

.faq-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  /* gap: 20px; */
  min-width: unset;
  max-width: calc(50% - 25px);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  /* CSS variables for dynamic glow positioning */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
  width: 100%;
}

/* The glowing border effect for FAQ items */
.faq-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: 8px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.glow-active::before {
  opacity: 1;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* When FAQ is active/opened - apply gradient background */
.faq-item.active {
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.15) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-question h3 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  margin-right: 20px;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-arrow svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2;
  fill: none;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease, padding 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-answer p {
  padding: 0px 24px 24px 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}
.pricing-section {
  /* padding: 0 20px; */
  width: 85vw;
  position: relative;
  margin: 0 auto;
}

/* Responsive Styles */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
  .faq-section {
    /* max-width: 1600px; */
  }

  .faq-container {
    width: 85vw;
    /* max-width: 1400px; */
  }

  .faq-grid {
    gap: 60px;
  }

  .faq-question h3 {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 22px;
  }
}

/* Large Desktop (1600px - 1919px) */
@media (min-width: 1600px) and (max-width: 1919px) {
  .faq-container {
    width: 85vw;
  }
}

/* Medium Desktop (1200px - 1599px) */
@media (max-width: 1599px) {
  .faq-container {
    width: 75%;
  }

  .faq-grid {
    gap: 40px;
  }
}

/* Small Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
  .faq-section {
    max-width: 85vw;
  }

  .faq-container {
    width: 85%;
  }

  .faq-grid {
    gap: 0px;
    padding: 40px 15px;
  }

  .faq-question h3 {
    font-size: 22px;
  }

  .faq-answer p {
    font-size: 18px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1042px) {
  .faq-section {
    max-width: 85vw;
    padding: 50px 0px;
  }

  .faq-container {
    width: 85vw;
  }

  .faq-grid {
    flex-direction: column;
    /* gap: 20px; */
    padding: 20px 0;
    display: flex;
  }

  .faq-column {
    max-width: 100%;
    width: 100%;
  }

  .faq-question h3 {
    font-size: 20px;
  }

  .faq-answer p {
    font-size: 18px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .faq-section {
    max-width: 85vw;
    padding: 50px 0px;
  }

  .faq-container {
    padding: 0;
    width: 85vw;
  }

  .faq-header {
    margin-bottom: 50px;
  }
  .left-section-new {
    flex: 0 0 300px !important;
  }

  .faq-grid {
    flex-direction: column;
    padding: 20px 0;
    gap: 0px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 22px;
    margin-right: 15px;
  }

  .faq-answer p {
    padding: 0px 20px 20px 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
  }

  .faq-arrow {
    width: 20px;
    height: 20px;
  }

  .faq-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* Global spotlight effect */
.global-spotlight {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, rgba(255, 133, 51, 0.04) 15%, rgba(255, 255, 255, 0.02) 30%, transparent 60%);
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.global-spotlight.active {
  opacity: 0.5;
}

/* Ripple animation */
@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 1240px) {
  .nav-container {
    width: 85vw;
  }

  .trusted-by-container {
    width: 85vw;
  }

  .hero-container {
    padding: 0 15px;
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .left-section {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .card {
    height: auto;
    padding: 30px;
    min-height: 400px;
  }

  .section-title {
    font-size: 36px;
    padding: 0px 0;
    margin: 0;
  }

  /* .scroll-stack-card {
                top: 50px;
            } */

  .feature-row,
  .scroll-stack-card:nth-child(even) .feature-row {
    flex-direction: column;
    padding: 40px;
    gap: 20px;
  }

  .feature-content {
    max-width: 100%;
  }

  .feature-title {
    font-size: 36px;
  }

  .feature-description {
    font-size: 18px;
  }

  .feature-visual {
    width: 100%;
    min-height: 200px;
  }

  /* Team responsive styles */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 30px;
  }

  .desktop-nav-links {
    gap: 25px;
  }

  .desktop-nav-links a {
    font-size: 14px;
  }

  .sub-heading {
    margin-left: 0;
  }

  .subtitle {
    max-width: 100%;
  }

  .logos-grid {
    gap: 30px;
  }

  .logo-item {
    min-width: 120px;
  }

  .logo-item img,
  .logo-item svg {
    max-width: 100px;
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .desktop-nav-links {
    display: none;
  }

  .logo-text {
    font-size: 17px;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
  .logo {
    gap: 10px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .subtitle {
    max-width: 100%;
  }

  .main-heading {
    font-size: clamp(32px, 8vw, 36px); /* More responsive scaling */
  }

  .sub-heading {
    font-size: 36px;
    margin-left: 0;
  }
  .hero-button {
    width: 200px;
  }

  /* Why AlphaAI responsive styles */
  .partner-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .partner-label {
    width: auto;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .partner-content {
    margin-left: 0;
  }

  .partner-text {
    font-size: 24px;
  }

  .partner-description {
    font-size: 14px;
  }

  .partner-arrow {
    margin-left: 0;
    margin-top: 20px;
    align-self: flex-start;
  }

  .partner-arrow svg {
    width: 30px;
    height: 30px;
  }

  .carousel-track {
    width: calc(200px * 24);
    animation: scrollMobile 50s linear infinite;
  }

  .logo-slide {
    flex: 0 0 200px;
    height: 140px;
  }

  .logo-content {
    padding: 15px;
  }

  @keyframes scrollMobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 12));
    }
  }

  /* FAQ responsive styles */
  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    padding: 0px 0;
  }

  /* Team responsive styles */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-title {
    font-size: 32px;
  }

  .team-member-box {
    min-height: 280px;
    padding: 20px;
    width: 85vw;
  }

  .member-photo {
    width: 80px;
    height: 80px;
  }

  /* .member-name {
    font-size: 28px;
  } */
}

/* Pause animation when reduced motion is preferred */
@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation-play-state: paused;
  }
}
/* For screens LESS than 1900px */
@media screen and (max-width: 1899px) {
  .nav-container {
    width: 70.52vw !important;
  }
  .trusted-by-container {
    width: 85vw;
  }
}

/* For screens GREATER than 1900px */
@media screen and (min-width: 1900px) {
  .nav-container {
    width: 70.52vw !important;
  }
  .trusted-by-container {
    width: 67.71vw;
  }
}

/* Tablet specific override for nav-container */
@media screen and (max-width: 1046px) {
  .nav-container {
    width: 85vw !important;
    max-width: 85vw !important;
  }

  .team-container {
    width: 85vw !important;
    max-width: 85vw !important;
  }

  .team-member-box {
    max-width: calc((85vw - 60px) / 3) !important;
    /* min-width: auto; */
  }

  /* 60px spacing adjustments for all header pills */
  .team-title {
    margin-top: -40px;
  }

  .section-heading {
    margin-top: -40px;
  }

  .section-title {
    margin-top: -40px;
  }

  .about-container {
    margin-top: -40px;
  }
}

.pricing-container {
  /* max-width: 85vw; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Title */
.section-heading {
  text-align: center;
  margin: 0px 0 50px 0;
  margin-top: -30px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-heading p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Tab Navigation - Enhanced Glass effect */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  width: 70.52vw;
  margin: 0 auto;
}

.tab-button {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.tab-button:hover::before {
  transform: translateX(100%);
}

.tab-button.active {
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.25) 0%, rgba(55, 196, 145, 0.25) 100%);
  color: #ffffff;
  border: 1px solid rgba(20, 137, 173, 0.3);
  box-shadow: 0 4px 15px rgba(20, 137, 173, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tab Content Container - Premium Glass effect */
.tab-content-container {
  position: relative;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(20, 137, 173, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 56px;
  margin: 0 auto;
  width: 70.52vw;
}

/* Inner glow effect */
.tab-content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}
.tab-content-container::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show glow on hover */
.tab-content-container:hover {
  --glow-intensity: 1;
}
.tab-content-container:hover::after {
  opacity: 1;
}

/* Tab Panel */
.tab-panel {
  position: absolute;
  width: 100%;
  /* padding: 40px 56px; */
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Content Layout - Two columns */
.tab-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 48px;
  width: 100%;
}

.content-text {
  flex: 1;
  text-align: left;
  max-width: 450px;
}

/* Bullet Points Styles - Simple */
.content-bullets {
  /* flex: 0 0 auto; */
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
  /* padding-top: 30px; */
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);

  font-size: 22px;
  line-height: 1.4;
}

.bullet-item:hover {
  color: rgba(255, 255, 255, 1);
}

.bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bullet-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bullet-icon::after {
  content: url('data:image/svg+xml,%3Csvg id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"%3E%3C!-- Generator: Adobe Illustrator 29.7.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 8) --%3E%3Cdefs%3E%3Cstyle%3E .st0 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class="st0" d="M20,6l-11,11-5-5"/%3E%3C/svg%3E');
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: bold;
  height: 16px;
  width: 16px;
}

.bullet-icon span {
  font-size: 20px !important;
}

.content-label {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #1489ad, #37c491);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.content-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content-description {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .section-heading h2 {
    font-size: 28px;
  }

  .tab-content-container {
    justify-content: left;
    padding: 0;
    align-items: flex-start;
  }

  .tab-navigation {
    /* flex-direction: column; */
    gap: 6px;
    width: 85vw;
  }

  .tab-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 22px;
  }

  .tab-panel {
    padding: 32px;
    height: 100%;
  }

  .tab-navigation,
  .tab-content-container,
  .tab-panel {
    width: 85vw;
  }

  .tab-content {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    align-items: flex-start;
  }

  .content-text {
    text-align: left;
    max-width: 100%;
  }

  .content-title {
    font-size: 36px;
  }

  .content-description {
    font-size: 22px;
    text-align: left;
  }

  .content-label {
    font-size: 22px;
  }

  .content-bullets {
    width: 100%;
    min-width: unset;
  }

  .bullet-item {
    font-size: 22px;
  }
  h2 {
    font-size: 38px !important;
    font-weight: 400 !important;
  }
}

/* Mobile override for content description */
@media (max-width: 767px) {
  .content-description {
    font-size: 18px !important;
  }

  .content-label {
    font-size: 18px;
  }

  .bullet-item {
    font-size: 18px;
  }
}

.main-card {
  /* max-width: 85vw; */
  margin: 0 auto;
  width: 100%;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
  border-radius: 0;
  padding: 56px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 140px;
  justify-content: center;
}

/* Left Section - Orbital Animation */
.left-section-new {
  flex: 0 0 400px;
  /* display: flex;
            justify-content: center;
            align-items: center; */
  position: relative;
  z-index: 1;
}

.orbit-container {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background grid effect */
.background-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Orbital system */
.orbital-system {
  position: absolute;
  width: 250px;
  height: 250px;
  animation: orbitRotation 20s linear infinite;
}

@keyframes orbitRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Energy trails SVG */
.energy-trail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* Connection lines */
.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.connection-line {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5, 5;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.3;
    stroke-width: 1;
  }
  50% {
    opacity: 0.6;
    stroke-width: 1.5;
  }
}

/* Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(20, 137, 173, 1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(20, 137, 173, 0.8);
}

/* Logo containers */
.logo {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
}

/* Orbiting logos */
.logo.orbiting {
  animation: counterRotation 20s linear infinite;
}

@keyframes counterRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.logo.orbiting::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 137, 173, 0.2) 0%, transparent 70%);
  transform: scale(1.5);
  animation: trailPulse 1s ease-in-out infinite;
  z-index: -1;
}

@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1.5);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.8);
  }
}

/* Center logo */
.center {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.3) 0%, rgba(55, 196, 145, 0.3) 100%);
  border: 2px solid rgba(20, 137, 173, 0.4);
  box-shadow: 0 0 50px rgba(20, 137, 173, 0.4), 0 0 100px rgba(55, 196, 145, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

/* Position orbiting logos */
.logo-top {
  top: -35px;
  left: 90px;
}

.logo-right {
  top: 90px;
  right: -35px;
}

.logo-bottom {
  bottom: -35px;
  left: 90px;
}

.logo-left {
  top: 90px;
  left: -35px;
}

/* Logo content */
.alpha-logo {
  font-size: 42px;
  font-weight: 300;
  background: linear-gradient(135deg, #1489ad, #37c491);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.3) drop-shadow(0 0 10px rgba(20, 137, 173, 0.5));
}

.ai-bold {
  font-size: 26px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.openai-simple {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.ms-grid {
  display: grid;
  grid-template-columns: 16px 16px;
  gap: 2px;
}

.ms-square {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

.google-grid {
  width: 45px;
  height: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1px;
}

.g-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0.9;
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background: linear-gradient(135deg, #1489ad, #37c491);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Typography */
h2 {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Form Container */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  margin: 20px 0;
}

/* Input Fields Container */
.input-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

/* Error Hint Styling */
.error-hint {
  font-size: 14px;
  color: #ff5757;
  margin-top: -8px;
  margin-left: 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-hint.show {
  opacity: 1;
  transform: translateY(0);
}

/* Input Styling */
input {
  width: 500px !important;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

input:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 137, 173, 0.5);
  box-shadow: 0 4px 15px rgba(20, 137, 173, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Submit Button */
.newsletter-button {
  width: 500px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.25) 0%, rgba(55, 196, 145, 0.25) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(20, 137, 173, 0.3);
  border-radius: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(20, 137, 173, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.newsletter-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.newsletter-button:hover::before {
  transform: translateX(100%);
}

.newsletter-button:hover {
  background: linear-gradient(135deg, rgba(20, 137, 173, 0.35) 0%, rgba(55, 196, 145, 0.35) 100%);
  border-color: rgba(20, 137, 173, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 137, 173, 0.4), 0 0 40px rgba(55, 196, 145, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.newsletter-button:active {
  transform: translateY(0);
}

.newsletter-button span {
  position: relative;
  z-index: 1;
}

/* Success Message */
.success-message {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(55, 196, 145, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(55, 196, 145, 0.3);
  padding: 10px 20px;
  border-radius: 0;
  color: #37c491;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(55, 196, 145, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.success-message.show {
  opacity: 1;
  top: -50px;
}

/* Privacy Text */
.privacy-text {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.privacy-text span {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .left-section {
    flex: 0 0 auto;
  }

  .orbit-container {
    width: 300px;
    height: 300px;
  }

  .orbital-system {
    width: 220px;
    height: 220px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .center {
    width: 90px;
    height: 90px;
  }

  .logo-top {
    top: -30px;
    left: 80px;
  }

  .logo-right {
    top: 80px;
    right: -30px;
  }

  .logo-bottom {
    bottom: -30px;
    left: 80px;
  }

  .logo-left {
    top: 80px;
    left: -30px;
  }
}

@media (max-width: 768px) {
  .main-card {
    padding: 32px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
  }

  input {
    padding: 14px 18px;
    font-size: 14px;
  }

  button {
    padding: 10px 24px;
    font-size: 15px;
  }

  .orbit-container {
    width: 250px;
    height: 250px;
  }

  .orbital-system {
    width: 240px;
    height: 240px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }
  .logo img {
    width: 30px;
    height: 30px;
  }
  .logo-bottom img,
  .logo-left img {
    width: 45px;
    height: 45px;
  }
  .center {
    width: 120px;
    height: 120px;
  }

  .alpha-logo {
    font-size: 32px;
  }

  .ai-bold {
    font-size: 20px;
  }
}

.header-pill {
  /* margin-top: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  margin-bottom: 100px;
}
footer {
  /* background-image: url('images/footer-image.avif'); */
  padding: 60px 40px 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden; /* ensures the blur doesn’t bleed outside */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 30%;
  bottom: 0%;
  filter: blur(60px);
  transform-style: preserve-3d;
  background-image: linear-gradient(135deg, rgba(20, 137, 173, 0.2) 0%, rgba(55, 196, 145, 0.2) 100%);
  border-radius: 50%;
  width: 80vw;
  height: 45vw;
  position: absolute;
  transform: translateY(10%) scaleX(1.9);
}

.footer-container {
  background-image: url("images/footer-image.avif");
  max-width: 80vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

.logo-icon-footer {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-footer img {
  width: 100%;
  height: 100%;
}

.contact-email {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 22px;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.legal-links a:hover {
  color: #ffffff;
}

/* Tablet Footer Styles - Same as Mobile */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-links {
    flex-direction: row;
    gap: 15px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .legal-links {
    flex-direction: row;
    gap: 15px;
    font-size: 12px;
  }
}
.content {
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h2 {
  font-size: 50px !important;
  font-weight: 400 !important;
}
p {
  font-size: 20px;
}
.getintouch {
  margin-bottom: 20px;
  font-size: 22px;
}

.dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 204, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.2);
  animation: float 30s infinite ease-in-out;
}

.dot.large {
  width: 3px;
  height: 3px;
  background: rgba(0, 255, 204, 0.1);
  animation-duration: 35s;
}

.dot.small {
  width: 1px;
  height: 1px;
  background: rgba(0, 255, 204, 0.2);
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) scale(0.5);
    opacity: 0;
  }
}

/* Pulse animation for some dots */
.dot.pulse {
  animation: float 30s infinite ease-in-out, pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.2);
    opacity: 0.4;
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.3), 0 0 18px rgba(0, 255, 204, 0.15);
    opacity: 0.7;
  }
}
.default-animation {
  position: relative;
  width: 80;
  aspect-ratio: 1 / 1;
  height: auto;
  min-width: 520px;
  max-width: 1040px;
  opacity: 0.4;
}

.default-animation--scene {
  display: grid;
  width: 100%;
  height: 100%;
  column-gap: var(--col-gap);
  row-gap: var(--row-gap);
  perspective: var(--cube-perspective);
  grid-auto-rows: 1fr;
}

.cube {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
}

.cube::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  bottom: -36px;
  left: -36px;
}

.default-animation .cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px dotted white;
  opacity: 1;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.default-animation .cube-face--top {
  transform: translateY(-50%) rotateX(90deg);
}

.default-animation .cube-face--bottom {
  transform: translateY(50%) rotateX(-90deg);
}

.default-animation .cube-face--left {
  transform: translateX(-50%) rotateY(-90deg);
}

.default-animation .cube-face--right {
  transform: translateX(50%) rotateY(90deg);
}

.default-animation .cube-face--back,
.default-animation .cube-face--front {
  transform: rotateY(-90deg) translateX(50%) rotateY(90deg);
}

@media (max-width: 768px) {
  .default-animation {
    width: 90%;
  }
}

.star-border {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.1px 0;
  background: transparent;
  border: none;
}

.star-gradient-bottom {
  position: absolute;
  width: 400%;
  height: 50%;
  opacity: 0.7;
  bottom: -22px;
  right: -250%;
  background: radial-gradient(circle, #37c491, transparent 10%);
  animation: star-movement-bottom 5s linear infinite alternate;
  z-index: 0;
}

.star-gradient-top {
  position: absolute;
  width: 400%;
  height: 50%;
  opacity: 0.7;
  top: -22px;
  left: -250%;
  background: radial-gradient(circle, #1489ad, transparent 10%);
  animation: star-movement-top 5s linear infinite alternate;
  z-index: 0;
}

.star-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* border-radius: 50px; */
  font-size: 20px !important;
  font-weight: 400;
  background: transparent;
  color: #ffffff;
  margin: 0;
}

@keyframes star-movement-bottom {
  0% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-100%, 0%);
    opacity: 0;
  }
}

@keyframes star-movement-top {
  0% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(100%, 0%);
    opacity: 0;
  }
}

.product-overview {
  max-width: 85vw;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.main-headline {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4rem;
  color: white;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 85vw;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

.features-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.features-grid::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features-grid:hover {
  --glow-intensity: 1;
}

.features-grid:hover::after {
  opacity: 1;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  position: relative;
  overflow: hidden;
  /* min-height: 270px; */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, calc(var(--glow-intensity) * 1)) 0%, rgba(255, 255, 255, calc(var(--glow-intensity) * 0.6)) 20%, rgba(255, 255, 255, calc(var(--glow-intensity) * 0.4)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card.glow-active::after {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title-new {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: white;
  position: relative;
  z-index: 2;
}

.feature-description-new {
  font-size: 22px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  text-align: left;
}

.feature-stat {
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 85vw;
  margin: 0 auto;
}

.stat-number {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 0.25rem;
  display: block;
  color: white;
}

.stat-label {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  font-weight: 400;
}

/* Responsive Styles */

/* Extra Large Screens (1600px+) */
@media (min-width: 1600px) {
  .features-grid {
    max-width: 85vw;
  }
}

/* Large Screens (1200px - 1599px) */
@media (max-width: 1599px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 85vw;
  }

  .feature-card {
    /* min-height: 400px; */
    padding: 35px;
  }
}

/* Medium-Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 85vw;
  }

  .feature-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* .feature-card:nth-last-child(-n+2) {
                border-bottom: none;
            } */

  .feature-title-new {
    font-size: 36px;
  }

  .feature-description-new {
    font-size: 22px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 20px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 1042px) {
  .product-overview {
    max-width: 85vw;
  }

  .main-headline {
    font-size: 36px;
    margin-bottom: 3rem;
  }

  .feature-card {
    /* min-height: 350px; */
    padding: 30px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .product-overview {
    max-width: 85vw;
    /* padding: 10px; */
  }

  .main-headline {
    font-size: 38px;
    margin-bottom: 2.5rem;
    padding: 0 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 0;
  }

  .feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    min-height: auto;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    width: 85vw; /* Explicitly set width */
    max-width: 85vw;
    margin: 0 auto;
    border-top: none;
  }
  .features-section {
    padding-top: 45px;
  }

  .feature-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-title-new {
    font-size: 36px;
    margin-bottom: 0.5rem;
  }

  .feature-description-new {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .feature-stat {
    margin-top: 1rem;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 18px;
  }
  .button-primary {
    font-size: 18px;
  }
  .how-it {
    margin-bottom: 70px !important;
    margin-top: 120px !important;
  }
}

video {
  width: 580px;
  overflow: hidden;
  z-index: -1; /* Puts the video behind the content */
  filter: brightness(100%) contrast(130%) grayscale(0%);
  opacity: 0.8;
}
#background-video {
  /* width: 100%;
            height: 100%; */
  object-fit: cover;
  z-index: -1;
  filter: brightness(100%) contrast(130%) grayscale(0%);
  opacity: 0.8;
  pointer-events: none; /* Disable all interactions */
  -webkit-user-select: none; /* Disable selection */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@supports (-webkit-touch-callout: none) {
  #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
  }
}

.features-container-new {
  background-color: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  padding: 40px;
}
.feature-new-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}
.feature-new-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.features-container-new {
  max-width: 350px;
  /* background-color: wheat; */
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: baseline;
}
.stat-number {
  text-align: left;
}
.main-features-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: fit-content;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 250px;
}

.main-features-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(20, 137, 173, 0.1) 0%, transparent 60%), radial-gradient(circle at bottom right, rgba(55, 196, 145, 0.1) 0%, transparent 50%), radial-gradient(ellipse at right center, rgba(55, 196, 145, 0.03) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

.main-features-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 4px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: subtract;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-height: 500px;
}

/* Show glow on hover */
.main-features-box:hover {
  --glow-intensity: 1;
}
.main-features-box:hover::after {
  opacity: 1;
}

.feature-description-new {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .logo-icon {
    width: 120px;
    height: 120px;
  }
  .main-heading {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-part {
    flex-direction: column;
    /* align-items: flex-start; */
    /* gap: 0.2em; */
    gap: 0.05px;
    align-items: center;
  }
  .buttons-container {
    /* flex-direction: column; */
    align-items: center;
  }
  .trusted-by-container {
    width: unset;
  }
  .feature-number {
    width: 50px;
    height: 50px;
  }
  .carousel-heading {
    font-size: 38px !important;
  }
  .nav-container {
    width: 85vw !important;
    max-width: 100%;
  }
  .feature-row {
    max-width: 85vw;
  }
  .team-member-box {
    width: 85vw !important;
    max-width: 85vw !important;
  }
  .member-description {
    font-size: 18px;
  }
  input,
  .newsletter-button {
    width: auto !important;
  }

  .newsletter-button {
    width: 200px !important;
    padding: 14px 18px;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  .input-fields {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .getintouch {
    text-align: center;
  }
  .main-card {
    gap: 0;
  }
  .pricing-section {
    margin-top: 0px;
    padding-top: 0;
  }
  .section-heading {
    margin-bottom: 40px;
    margin-top: 50px;
  }
  .logo-wrapper {
    left: 12px;
  }
  .team-section {
    padding-top: 90px;
  }
  .feature-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .video-shadow {
    display: none;
  }
}

.logo-wrapper {
  position: fixed;
  top: 16px;
  width: 180px;
  height: 42px;
}

svg {
  width: 100%;
  height: 100%;
}

/* Initial state - full logo visible */
.alpha-text path {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: right center; /* Compress towards the left from right edge */
}

/* Compression (scroll down) timing - right to left */
.letter-a2 {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.letter-h {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.letter-p {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.letter-l {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.letter-a {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.ai-text {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  fill: url(#ai-gradient);
}

/* Compressed state - alpha letters compress towards left, ai moves left */
.logo-wrapper.compressed .letter-a2 {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0s;
}

.logo-wrapper.compressed .letter-h {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.1s;
}

.logo-wrapper.compressed .letter-p {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.2s;
}

.logo-wrapper.compressed .letter-l {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.3s;
}

.logo-wrapper.compressed .letter-a {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.4s;
}

/* Expansion (scroll up) timing - left to right */
.logo-wrapper:not(.compressed) .letter-a {
  transition-delay: 0s;
}

.logo-wrapper:not(.compressed) .letter-l {
  transition-delay: 0.1s;
}

.logo-wrapper:not(.compressed) .letter-p {
  transition-delay: 0.2s;
}

.logo-wrapper:not(.compressed) .letter-h {
  transition-delay: 0.3s;
}

.logo-wrapper:not(.compressed) .letter-a2 {
  transition-delay: 0.4s;
}

.logo-wrapper.compressed .ai-text {
  fill: white;
  transform: translateX(-130px);
}

/* Mobile styles */
@media (max-width: 768px) {
  .slider-item img {
    max-width: 95px;
    max-height: 70px;
  }
  .slider-item:first-child img,
  .aws-logo img {
    max-width: 60px !important;
    max-height: 60px !important;
  }
  .inc {
    max-width: 100px;
    height: 100px;
  }
  .hero-section {
    width: 95vw;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    overflow: auto !important;
  }

  .hero-container {
    flex-direction: column;
    height: 80vh;
    gap: 0px !important;
    justify-content: unset;
    overflow: visible !important;
  }

  /* Video at top */
  .hero-animation {
    width: 85%;
    order: 1;
    justify-content: center;
    align-items: center;
    margin-top: 0px !important; /* default space below navbar */
    padding-top: 0px !important; /* additional padding */
    overflow: visible !important;
  }

  .hero-animation video {
    width: 250px;
    height: 250px;
  }
  .feature-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* iPhone specific styles - more comprehensive approach */
@supports (-webkit-touch-callout: none) {
  /* Target all iOS devices */
  @media only screen and (max-device-width: 926px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero-animation {
      /* margin-top: 60px !important; increased space on iPhones */
      /* padding-top: 2000; remove extra padding since margin is sufficient */
    }

    /* Additional safety margin for newer iPhone models with notches */
    @supports (padding-top: env(safe-area-inset-top)) {
      .hero-animation {
        margin-top: calc(20px + env(safe-area-inset-top)) !important;
      }
    }
  }

  /* Specific for iPhone SE and older models */
  @media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero-animation {
      margin-top: 30px !important;
    }
  }
}

@media screen and (min-width: 2500px) {
  h1 {
    font-size: 70px !important;
  }
  h2 {
    font-size: 60px !important;
  }
  h3 {
    font-size: 55px !important;
  }
  p {
    font-size: 22px !important;
  }
  .left-section p {
    font-size: 52px !important;
  }
  .card {
    width: 900px !important;
  }
  .tab-content-container {
    min-height: 500px !important;
  }
  span {
    font-size: 30px;
  }
  .main-part span {
    font-size: 70px;
  }
  .faq-question h3 {
    font-size: 22px !important;
  }
}
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-shadow {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; /* Increased from 60% to 90% for wider oval */
  height: 80px; /* Reduced height to create more oval shape */
  background: radial-gradient(ellipse at center bottom, rgba(20, 137, 173, 0.4) 0%, rgba(55, 196, 145, 0.2) 40%, rgba(20, 137, 173, 0.2) 60%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: shadowPulse 4s ease-in-out infinite;
  border-radius: 50%; /* Ensures proper elliptical shape */
}

button[disabled] {
  cursor: not-allowed;
}

.copyright p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .copyright {
    order: 2;
  }
}

/* Firefox-specific linear glow effect */
@-moz-document url-prefix() {
  .feature-row::after,
  .team-member-box::after,
  .about-card::after,
  .faq-item::before,
  .logo-slide-inner::after,
  .tab-content-container::after,
  .main-features-box::after,
  .features-grid::after,
  .feature-card::after {
    /* Override with radial gradient for Firefox to match other browsers */
    background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(20, 137, 173, calc(var(--glow-intensity) * 0.9)) 0%, rgba(30, 167, 159, calc(var(--glow-intensity) * 0.7)) 20%, rgba(55, 196, 145, calc(var(--glow-intensity) * 0.5)) 40%, transparent 70%) !important;
  }

  /* Fix mask-composite for Firefox */
  .feature-row::after,
  .team-member-box::after,
  .about-card::after,
  .faq-item::before,
  .logo-slide-inner::after,
  .tab-content-container::after,
  .main-features-box::after,
  .features-grid::after,
  .feature-card::after {
    mask-composite: exclude !important; /* Firefox syntax */
  }
}
/* 
@media screen and (min-width: 1920px) {
  .about-container, 
  .features-container,
  .features-grid,
  .faq-section,
  .feature-stat,
  .product-overview,
  .about-mobile-slider-container,
  .about-slider-card .card,
  .feature-row,
  .nav-container,
  .team-member-box,
  .feature-card,
  .tab-navigation,
  .tab-content-container,
  .tab-panel,
  .hero-section,
  .nav-container,
  .trusted-by-container,
  .team-container,
  .faq-container,
  .about-slider-card .card,
  .team-member-box,
  .feature-card,
  .tab-navigation,
  .tab-content-container,
  .tab-panel,
  .pricing-section
   {
    max-width: 1920px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
} */
