* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* letter-spacing: -0.02em; */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", */
    /* "Helvetica Neue", Arial, sans-serif; */
     font-family: "Share Tech Mono", monospace;
  overflow-x: hidden;
  background-color: #000;
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  background: #000000;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ); */
  z-index: 1;
}

nav {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-size: 1rem;
  z-index: 101;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: black;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #333;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #333;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 3rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white;
}

/* 
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
 
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;

}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.cta-button:hover .arrow {
  transform: rotate(45deg);
} */

/* Split Layout Container */
.hero-split-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 4rem 5rem;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Left Side - Content */
.hero-content-side {
  padding-right: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title i {
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.cta-button:hover .arrow {
  transform: rotate(45deg);
}

/* Right Side - Image */
.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-container:hover img {
  transform: scale(1.05);
}

/* Image overlay */
.hero-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Glow effect */
.hero-image-container::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(
    135deg,
    rgba(100, 100, 255, 0.15),
    rgba(255, 100, 100, 0.15)
  );
  border-radius: 40px;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.6;
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
  .hero-split-container {
    padding: 3rem 3rem;
    gap: 50px;
  }

  .hero-content-side {
    padding-right: 1rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  }

  .hero-image-side {
    min-height: 450px;
  }

  .cta-button {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
  }
}

/* Tablet Portrait (900px and below) */
@media (max-width: 900px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 2.5rem 3rem;
  }

  .hero-content-side {
    padding-right: 0;
    text-align: center;
  }

  .hero-image-side {
    order: -1;
    min-height: 400px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
  }

  .cta-button {
    margin: 0 auto;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .hero-split-container {
    padding: 1.5rem 2rem 3rem;
    gap: 2.5rem;
  }

  .hero-image-side {
    min-height: 350px;
  }

  .hero-image-container {
    border-radius: 24px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .arrow {
    width: 36px;
    height: 36px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-split-container {
    padding: 1rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .hero-image-side {
    min-height: 280px;
  }

  .hero-image-container {
    border-radius: 20px;
  }

  .hero-image-container::after {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    filter: blur(30px);
  }

  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 4.5vw, 1rem);
    margin-bottom: 1.8rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    gap: 0.8rem;
  }

  .arrow {
    width: 32px;
    height: 32px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero-split-container {
    padding: 1rem 1rem 2rem;
  }

  .hero-image-side {
    min-height: 240px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
}

/* Landscape Mobile Fix */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-split-container {
    padding: 2rem 3rem;
  }

  .hero-image-side {
    min-height: 300px;
  }
}

/* About Section */
.about-section {
  padding: 100px 20px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f5f5f5;
}

.container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.about-title {
  font-size: 48px;
  font-weight: 400;
  color: #2c2c2c;
  padding-top: 10px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.description {
  font-size: 48px;
  line-height: 1.4;
  color: #2c2c2c;
  font-weight: 300;
}

.description .gray-text {
  color: #b0b0b0;
}

.description .highlight {
  font-weight: 600;
  color: #2c2c2c;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 64px;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1;
}

.stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #666;
}

.stat-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why Kodex Section */
.why-kodex-section {
  background: #000000;
  padding: 150px 60px;
  color: white;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-kodex-container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-kodex-title {
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.why-kodex-description {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  max-width: 1300px;
}

/* Animation Classes */
.animate-in {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* Tablet styles */
@media (max-width: 1024px) {
  nav {
    padding: 1.5rem 3rem;
  }

  .nav-links {
    gap: 2rem;
    padding: 0.8rem 2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
  }

  .container {
    grid-template-columns: 150px 1fr;
    gap: 50px;
  }

  .about-title {
    font-size: 36px;
  }

  .description {
    font-size: 36px;
  }

  .stat-number {
    font-size: 48px;
  }

  .why-kodex-section {
    padding: 120px 40px;
  }
  .why-kodex-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 50px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

  nav {
    padding: 1.5rem 2rem;
  }

  .logo {
    font-size: 0.9rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    background: transparent;
    padding: 0;
    gap: 2.5rem;
    text-align: center;
  }

  .nav-links a {
    color: #222;
    font-size: 1.3rem;
    padding: 0.5rem;
    font-weight: 500;
    display: block;
  }

  .nav-links a:hover {
    color: #000;
  }

  .enroll-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    width: 80%;
    background: #000;
    color: white;
    border: 2px solid #000;
  }

  .enroll-btn:hover {
    background: #333;
    border-color: #333;
  }

  .hero-content {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .arrow {
    width: 35px;
    height: 35px;
  }

  .about-section {
    padding: 40px 20px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-title {
    font-size: 32px;
  }

  .description {
    font-size: 28px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .why-kodex-section {
    padding: 100px 30px;
  }
  .why-kodex-title {
    font-size: clamp(3.5rem, 11vw, 6rem);
    margin-bottom: 45px;
  }
  .why-kodex-description {
    font-size: clamp(1.3rem, 4.5vw, 2rem);
  }
}

/* Small mobile styles */
@media (max-width: 480px) {
  nav {
    padding: 1.2rem 1rem;
  }

  /* .nav-menu {
    width: 80%;
  } */

  .logo {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    gap: 2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .enroll-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    width: 90%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    gap: 0.8rem;
  }

  .arrow {
    width: 32px;
    height: 32px;
  }

  .hero-content {
    padding: 2rem 1rem 1.5rem;
  }

  .about-section {
    padding: 30px 15px;
  }

  .about-title {
    font-size: 28px;
  }

  .description {
    font-size: 22px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 16px;
  }

  .why-kodex-section {
    padding: 80px 20px;
  }
  .why-kodex-title {
    font-size: clamp(3rem, 13vw, 5rem);
    margin-bottom: 40px;
  }
  .why-kodex-description {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
    line-height: 1.5;
  }
}
/* ========================================
   FEATURES SHOWCASE SECTION
   ======================================== */

.features-section {
  background: #000;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 150, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.features-header {
  text-align: center;
  margin-bottom: 100px;
}

.features-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.features-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.features-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Feature Item - Alternating Layout */
.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Alternate layout for even items */
.feature-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.feature-item:nth-child(even) .feature-image-wrapper {
  order: 2;
}

.feature-item:nth-child(even) .feature-content-wrapper {
  order: 1;
}

.feature-item:last-child {
  margin-bottom: 0;
}

/* Feature Image */
.feature-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: all 0.6s ease;
}

.feature-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.feature-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.feature-image-wrapper:hover::before {
  opacity: 0.5;
}

/* Glow effect */
.feature-image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 150, 255, 0.2));
  border-radius: 30px;
  z-index: -1;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.feature-image-wrapper:hover::after {
  opacity: 0.8;
}

.feature-image {
  width: 100%;
  height: 500px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Placeholder styling */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  font-size: 6rem;
}

/* Feature Content */
.feature-content-wrapper {
  padding: 20px;
}

.feature-number {
  font-size: 1rem;
  font-weight: 600;
  color: #ff0080;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-content-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-description {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  font-weight: 300;
}

.feature-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.feature-highlights li::before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Animation delays */
.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }
.feature-item:nth-child(5) { transition-delay: 0.5s; }
.feature-item:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   RESPONSIVE STYLES FOR FEATURES SECTION
   ======================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .features-section {
    padding: 100px 40px;
  }

  .features-header {
    margin-bottom: 80px;
  }

  .feature-item {
    gap: 60px;
    margin-bottom: 100px;
  }

  .feature-image {
    height: 450px;
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .features-section {
    padding: 80px 30px;
  }

  .features-header {
    margin-bottom: 60px;
  }

  .feature-item {
    grid-template-columns: 1fr !important;
    gap: 40px;
    margin-bottom: 80px;
  }

  .feature-item:nth-child(even) .feature-image-wrapper,
  .feature-item:nth-child(even) .feature-content-wrapper {
    order: 0;
  }

  .feature-image {
    height: 400px;
  }

  .feature-content-wrapper {
    padding: 10px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 25px;
  }

  .features-header {
    margin-bottom: 50px;
  }

  .feature-item {
    gap: 30px;
    margin-bottom: 60px;
  }

  .feature-image {
    height: 350px;
  }

  .feature-content-title {
    margin-bottom: 15px;
  }

  .feature-description {
    margin-bottom: 25px;
  }

  .feature-highlights {
    gap: 12px;
    margin-bottom: 25px;
  }

  .feature-highlights li {
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .features-section {
    padding: 50px 15px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .feature-item {
    gap: 25px;
    margin-bottom: 50px;
  }

  .feature-image {
    height: 280px;
  }

  .feature-number {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .feature-highlights {
    gap: 10px;
    margin-bottom: 20px;
  }

  .feature-highlights li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .feature-highlights li::before {
    font-size: 1.1rem;
  }

  .feature-tags {
    gap: 8px;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .feature-image {
    height: 240px;
  }

  .placeholder-image {
    font-size: 4rem;
  }
}

/* ========================================
   COURSES SECTION - COMPACT & ATTRACTIVE
   ======================================== */

.courses-section {
  background: #ffffff;
  padding: 80px 60px;
  position: relative;
}

.courses-container {
  max-width: 1200px;
  margin: 0 auto;
}

.courses-title {
  font-size: 4rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: -0.02em;
}

.courses-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #2c2c2c, #000); */
    background: linear-gradient(135deg, #ff0080 0%, #7928ca 50%, #00d4ff 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: #2c2c2c;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  color: #2c2c2c;
}

.course-icon svg {
  width: 32px;
  height: 32px;
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
  
}

.course-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.course-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 12px;
  font-style: italic;
}

.course-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.course-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-features li {
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  color: #2c2c2c;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.course-features li:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.1);
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
}

/* FIXED: Proper link styling */
.course-btn {
  /* background: #2c2c2c; */
    background: linear-gradient(135deg, #ff0080 0%, #7928ca 50%, #00d4ff 100%);
  color: white !important;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  /* Critical for mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.course-btn:hover,
.course-btn:active {
  /* background: #000; */
    background: linear-gradient(135deg, #ff0080 0%, #7928ca 50%, #00d4ff 100%);
  transform: translateX(3px);
  color: white !important;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
  .courses-section {
    padding: 50px 25px;
  }

  .courses-title {
    font-size: 2rem;
  }

  .courses-subtitle {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card {
    padding: 25px;
  }

  .course-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    /* Extra mobile touch area */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .course-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .courses-section {
    padding: 40px 15px;
  }

  .courses-title {
    font-size: 1.8rem;
  }

  .course-card {
    padding: 20px;
  }

  .course-btn {
    font-size: 0.95rem;
    padding: 16px 20px;
  }
}

/* ========================================
   CURRICULUM SECTION
   ======================================== */

.curriculum-section {
  background: #000;
  padding: 100px 60px;
  position: relative;
}

.curriculum-container {
  max-width: 1200px;
  margin: 0 auto;
}

.curriculum-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  margin-bottom: 60px;
  align-items: start;
}

.curriculum-title {
  font-size: 4rem;
  font-weight: 400;
  color: white;
  letter-spacing: -0.02em;
}

.curriculum-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.curriculum-description {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #888;
  font-weight: 300;
}

.curriculum-description strong {
  color: white;
  font-weight: 500;
}

.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: #222;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-icon {
  width: 50px;
  height: 50px;
  background: #2a2a2a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.accordion-item:hover .accordion-icon {
  background: #333;
  transform: scale(1.05);
}

.accordion-title {
  flex: 1;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}

.accordion-arrow {
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 30px 30px 30px;
}

.curriculum-topics {
  list-style: none;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curriculum-topics li {
  font-size: 1rem;
  color: #999;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 20px;
}

.curriculum-topics li:last-child {
  border-bottom: none;
}

.curriculum-topics li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
  font-size: 1.2rem;
}

.curriculum-topics li:hover {
  color: white;
  padding-left: 25px;
}

.curriculum-topics li:hover::before {
  color: white;
}

/* Curriculum Responsive Styles */

/* TABLET LANDSCAPE (1024px and below) */
@media (max-width: 1024px) {
  .curriculum-section {
    padding: 80px 40px;
  }

  .curriculum-header {
    grid-template-columns: 250px 1fr;
    gap: 60px;
    margin-bottom: 50px;
  }

  .curriculum-title {
    font-size: 3rem;
  }

  .curriculum-description {
    font-size: 1.5rem;
  }

  .accordion-title {
    font-size: 1.2rem;
  }
}

/* TABLET PORTRAIT (900px and below) */
@media (max-width: 900px) {
  .curriculum-section {
    padding: 70px 30px;
  }

  .curriculum-header {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .curriculum-title {
    font-size: 2.5rem;
  }

  .curriculum-description {
    font-size: 1.3rem;
  }

  .accordion-header {
    padding: 20px 25px;
  }

  .accordion-icon {
    width: 45px;
    height: 45px;
  }

  .accordion-title {
    font-size: 1.1rem;
  }

  .curriculum-topics {
    padding-left: 0;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .curriculum-section {
    padding: 60px 25px;
  }

  .curriculum-title {
    font-size: 2rem;
  }

  .curriculum-description {
    font-size: 1.1rem;
  }

  .accordion-accordion {
    gap: 15px;
  }

  .accordion-header {
    padding: 18px 20px;
    gap: 15px;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

  .accordion-icon svg {
    width: 20px;
    height: 20px;
  }

  .accordion-title {
    font-size: 1rem;
  }

  .accordion-item.active .accordion-content {
    padding: 0 20px 25px 20px;
  }

  .curriculum-topics li {
    font-size: 0.9rem;
    padding: 10px 0 10px 18px;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .curriculum-section {
    padding: 50px 15px;
  }

  .curriculum-header {
    margin-bottom: 30px;
  }

  .curriculum-title {
    font-size: 1.8rem;
  }

  .curriculum-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .accordion-header {
    padding: 15px;
    gap: 12px;
  }

  .accordion-icon {
    width: 36px;
    height: 36px;
  }

  .accordion-title {
    font-size: 0.95rem;
  }

  .accordion-arrow {
    width: 20px;
    height: 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 15px 20px 15px;
  }

  .curriculum-topics li {
    font-size: 0.85rem;
    padding: 8px 0 8px 16px;
  }
}

/* ========================================
   CONTACT/STAY UPDATED SECTION
   ======================================== */

.contact-section {
  background: #000000;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-content {
  background: #e8e8e8;
  border-radius: 40px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(200, 200, 200, 0.1) 100%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(0, 0, 0, 0.02) 35px,
      rgba(0, 0, 0, 0.02) 70px
    );
  pointer-events: none;
}

.contact-text {
  position: relative;
  z-index: 2;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-form {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.email-input {
  flex: 1;
  padding: 18px 25px;
  background: #000;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
  border-color: #333;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.subscribe-btn {
  padding: 18px 40px;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-note {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
}

/* NEW: Media Visual Container */
.contact-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.media-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  background: #000;
}

/* Video Styling */
.media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Image Styling */
.media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.media-container:hover img {
  transform: scale(1.05);
}

/* Overlay effect */
.media-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.media-container:hover::before {
  opacity: 1;
}

/* Glowing border effect */
.media-container::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    rgba(255, 0, 150, 0.5),
    rgba(0, 150, 255, 0.5),
    rgba(150, 255, 0, 0.5),
    rgba(255, 0, 150, 0.5)
  );
  border-radius: 24px;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.6;
    filter: blur(15px);
  }
  50% {
    opacity: 0.8;
    filter: blur(20px);
  }
}

/* Play button overlay for video */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-overlay:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.play-overlay.playing {
  display: none;
}

/* Contact Responsive Styles */

/* TABLET LANDSCAPE (1024px and below) */
@media (max-width: 1024px) {
  .contact-section {
    padding: 70px 40px;
  }

  .contact-content {
    padding: 60px;
    gap: 50px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .media-container {
    max-width: 450px;
    height: 350px;
  }
}

/* TABLET PORTRAIT (900px and below) */
@media (max-width: 900px) {
  .contact-section {
    padding: 60px 30px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    padding: 50px;
    gap: 40px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-visual {
    min-height: 350px;
  }

  .media-container {
    max-width: 100%;
    height: 350px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 25px;
  }

  .contact-content {
    border-radius: 30px;
    padding: 40px 30px;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-description {
    font-size: 0.95rem;
  }

  .contact-form {
    flex-direction: column;
    gap: 12px;
  }

  .email-input,
  .subscribe-btn {
    width: 100%;
    padding: 16px 20px;
  }

  .contact-visual {
    min-height: 300px;
  }

  .media-container {
    height: 300px;
    border-radius: 20px;
  }

  .play-overlay {
    width: 60px;
    height: 60px;
  }

  .play-overlay::after {
    border-left-width: 15px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-content {
    border-radius: 25px;
    padding: 30px 20px;
  }

  .contact-label {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }

  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .email-input,
  .subscribe-btn {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .contact-note {
    font-size: 0.85rem;
  }

  .contact-visual {
    min-height: 250px;
  }

  .media-container {
    height: 250px;
    border-radius: 18px;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  background: #000;
  padding: 120px 60px;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  font-size: 5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #202020;
}

.faq-item.active {
  background: #252525;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
  line-height: 1.4;
  padding-right: 20px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: white;
}

.faq-item:hover .faq-question span {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 35px 30px 35px;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

/* FAQ Responsive Styles */

/* TABLET LANDSCAPE (1024px and below) */
@media (max-width: 1024px) {
  .faq-section {
    padding: 100px 40px;
  }

  .faq-title {
    font-size: 4rem;
    margin-bottom: 60px;
  }

  .faq-question {
    padding: 25px 30px;
  }

  .faq-question span {
    font-size: 1.2rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

/* TABLET PORTRAIT (900px and below) */
@media (max-width: 900px) {
  .faq-section {
    padding: 80px 30px;
  }

  .faq-title {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }

  .faq-question {
    padding: 22px 25px;
  }

  .faq-question span {
    font-size: 1.1rem;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 25px;
  }

  .faq-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  .faq-accordion {
    gap: 15px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 20px 22px;
  }

  .faq-question span {
    font-size: 1.05rem;
    padding-right: 15px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 22px 20px 22px;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
    line-height: 1.2;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
    max-height: 400px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer-section {
  background: #000000;
  padding: 80px 60px 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 80px;
  /* margin-bottom: 20px; */
  position: relative;
  z-index: 2;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 300;
  transition: color 0.3s ease;
  display: block;
}

.footer-links li a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.4;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-logo svg {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover svg {
  opacity: 1;
}

.footer-brand {
  position: relative;
  text-align: center;
  margin-top: 40px;
}

.footer-brand h2 {
  font-size: 10rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  user-select: none;
  pointer-events: none;
}

/* Footer Responsive Styles */

/* TABLET LANDSCAPE (1024px and below) */
@media (max-width: 1024px) {
  .footer-section {
    padding: 70px 40px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .footer-logo {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-brand h2 {
    font-size: 10rem;
  }

  .footer-links li a {
    font-size: 1rem;
  }

  .contact-value {
    font-size: 1rem;
  }
}

/* TABLET PORTRAIT (900px and below) */
@media (max-width: 900px) {
  .footer-section {
    padding: 60px 30px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand h2 {
    font-size: 8rem;
  }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 25px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links li a {
    font-size: 0.95rem;
  }

  .contact-item {
    gap: 3px;
  }

  .contact-label {
    font-size: 0.9rem;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .footer-logo {
    display: none;
  }

  .footer-brand h2 {
    font-size: 6rem;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 15px 20px;
  }

  .footer-content {
    gap: 35px;
    margin-bottom: 30px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links li a {
    font-size: 0.9rem;
  }

  .contact-label {
    font-size: 0.85rem;
  }

  .contact-value {
    font-size: 0.9rem;
  }

  .footer-brand h2 {
    font-size: 4rem;
  }
}

/* Showcase Section Styles */
.showcase-section {
  background: #000;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(100, 100, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 100, 100, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.showcase-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.showcase-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Single Line Images Container */
.showcase-images-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
  margin-bottom: 60px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.showcase-images-line::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Rectangular Floating Images */
.floating-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  flex-shrink: 0;
  /* Uniform size for all images in the line */
  width: 280px;
  height: 180px;
}

.floating-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.floating-image:hover::before {
  opacity: 1;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-image:hover img {
  transform: scale(1.15);
  filter: grayscale(0%) brightness(1.05) contrast(1.2);
}

.floating-image:hover {
  transform: translateY(-15px) rotate(0deg) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 60px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

/* Individual Image Animations */
.img-1 {
  transform: rotate(-5deg) translateY(-10px);
  animation: float1 6s ease-in-out infinite;
}

.img-2 {
  transform: rotate(3deg) translateY(15px);
  animation: float2 7s ease-in-out infinite;
}

.img-3 {
  transform: rotate(-8deg) translateY(-5px);
  animation: float3 5s ease-in-out infinite;
}

.img-4 {
  transform: rotate(5deg) translateY(-20px);
  animation: float4 8s ease-in-out infinite;
}

.img-5 {
  transform: rotate(-3deg) translateY(10px);
  animation: float5 6.5s ease-in-out infinite;
}

.img-6 {
  transform: rotate(2deg) translateY(-15px);
  animation: float6 7.5s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float1 {
  0%,
  100% {
    transform: rotate(-5deg) translateY(-10px);
  }
  50% {
    transform: rotate(-5deg) translateY(-25px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: rotate(3deg) translateY(15px);
  }
  50% {
    transform: rotate(3deg) translateY(0px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: rotate(-8deg) translateY(-5px);
  }
  50% {
    transform: rotate(-8deg) translateY(-20px);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: rotate(5deg) translateY(-20px);
  }
  50% {
    transform: rotate(5deg) translateY(-35px);
  }
}

@keyframes float5 {
  0%,
  100% {
    transform: rotate(-3deg) translateY(10px);
  }
  50% {
    transform: rotate(-3deg) translateY(-5px);
  }
}

@keyframes float6 {
  0%,
  100% {
    transform: rotate(2deg) translateY(-15px);
  }
  50% {
    transform: rotate(2deg) translateY(-30px);
  }
}

.showcase-tagline {
  text-align: center;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .showcase-images-line {
    gap: 25px;
  }

  .floating-image {
    width: 240px;
    height: 160px;
  }
}

@media (max-width: 1024px) {
  .showcase-section {
    padding: 100px 30px;
  }

  .showcase-images-line {
    gap: 20px;
  }

  .floating-image {
    width: 220px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .showcase-images-line {
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .floating-image {
    width: 200px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .showcase-section {
    padding: 80px 20px;
    min-height: auto;
  }

  .showcase-images-line {
    gap: 15px;
  }

  .floating-image {
    width: 180px;
    height: 130px;
    border-radius: 10px;
  }

  .floating-image:hover {
    transform: translateY(-10px) rotate(0deg) !important;
  }
}

@media (max-width: 480px) {
  .showcase-section {
    padding: 60px 15px;
  }

  .showcase-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .showcase-subtitle,
  .showcase-tagline {
    font-size: 1.1rem;
  }

  .showcase-images-line {
    gap: 12px;
  }

  .floating-image {
    width: 160px;
    height: 120px;
  }

  /* Reduce animation intensity on mobile */
  @keyframes float1 {
    0%,
    100% {
      transform: rotate(-5deg) translateY(-5px);
    }
    50% {
      transform: rotate(-5deg) translateY(-15px);
    }
  }

  @keyframes float2 {
    0%,
    100% {
      transform: rotate(3deg) translateY(8px);
    }
    50% {
      transform: rotate(3deg) translateY(-2px);
    }
  }

  @keyframes float3 {
    0%,
    100% {
      transform: rotate(-8deg) translateY(-3px);
    }
    50% {
      transform: rotate(-8deg) translateY(-13px);
    }
  }

  @keyframes float4 {
    0%,
    100% {
      transform: rotate(5deg) translateY(-10px);
    }
    50% {
      transform: rotate(5deg) translateY(-20px);
    }
  }

  @keyframes float5 {
    0%,
    100% {
      transform: rotate(-3deg) translateY(5px);
    }
    50% {
      transform: rotate(-3deg) translateY(-5px);
    }
  }

  @keyframes float6 {
    0%,
    100% {
      transform: rotate(2deg) translateY(-8px);
    }
    50% {
      transform: rotate(2deg) translateY(-18px);
    }
  }
}

/* ========================================
           OFFER POPUP STYLES
           ======================================== */

.offer-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.offer-popup-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.offer-popup-overlay.active .offer-popup-card {
  transform: scale(1) translateY(0);
}

/* Animated gradient border */
.offer-popup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, #7928ca, #0070f3, #ff0080);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.popup-close svg {
  color: #2c2c2c;
  width: 18px;
  height: 18px;
}

.popup-content {
  padding: 40px 25px 25px;
}

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff0080 0%, #7928ca 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.popup-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.popup-offer {
  background: linear-gradient(135deg, #2c2c2c 0%, #000 100%);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.popup-offer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.offer-percentage {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-text {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

.popup-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
}

.popup-benefits {
  list-style: none;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #2c2c2c;
  text-align: left;
  line-height: 1.4;
}

.popup-benefits svg {
  color: #0070f3;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.popup-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.popup-btn {
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.popup-btn.primary {
  background: linear-gradient(135deg, #2c2c2c 0%, #000 100%);
  color: white;
}

.popup-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.popup-btn.secondary {
  background: transparent;
  color: #2c2c2c;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.popup-btn.secondary:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.02);
}

.popup-timer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.popup-timer svg {
  color: #ff0080;
  width: 14px;
  height: 14px;
}

.popup-timer span {
  font-weight: 600;
  color: #2c2c2c;
}

/* Body overflow handling */
body.popup-open {
  overflow: hidden;
}

/* ========================================
           RESPONSIVE STYLES
           ======================================== */

/* Small tablets and large phones */
@media (min-width: 481px) {
  .offer-popup-card {
    border-radius: 24px;
    max-width: 450px;
  }

  .popup-content {
    padding: 45px 30px 30px;
  }

  .popup-title {
    font-size: 2rem;
  }

  .offer-percentage {
    font-size: 2.75rem;
  }

  .popup-badge {
    font-size: 0.75rem;
    padding: 7px 15px;
  }

  .popup-btn {
    padding: 15px 24px;
    font-size: 1rem;
  }

  .popup-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .popup-close svg {
    width: 20px;
    height: 20px;
  }
}

/* Tablets and small desktops */
@media (min-width: 768px) {
  .offer-popup-overlay {
    padding: 20px;
  }

  .offer-popup-card {
    max-width: 500px;
    border-radius: 28px;
  }

  .popup-content {
    padding: 50px 40px 35px;
  }

  .popup-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .offer-percentage {
    font-size: 3rem;
  }

  .offer-text {
    font-size: 1.1rem;
  }

  .popup-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .popup-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .popup-offer {
    padding: 25px;
    margin-bottom: 25px;
  }

  .popup-benefits {
    margin-bottom: 30px;
    gap: 12px;
  }

  .popup-benefits li {
    font-size: 0.95rem;
    gap: 12px;
  }

  .popup-benefits svg {
    width: 20px;
    height: 20px;
  }

  .popup-cta {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
  }

  .popup-btn {
    padding: 16px 24px;
  }

  .popup-timer {
    font-size: 0.9rem;
  }

  .popup-close {
    top: 20px;
    right: 20px;
  }
}

/* Large desktops */
@media (min-width: 1024px) {
  .offer-popup-card {
    max-width: 550px;
  }

  .popup-title {
    font-size: 2rem;
  }

  .offer-percentage {
    font-size: 3.5rem;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .offer-popup-card {
    max-height: 85vh;
  }

  .popup-content {
    padding: 30px 25px 20px;
  }

  .popup-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .popup-offer {
    padding: 15px;
    margin-bottom: 15px;
  }

  .offer-percentage {
    font-size: 2rem;
  }

  .popup-benefits {
    margin-bottom: 15px;
    gap: 8px;
  }

  .popup-benefits li {
    font-size: 0.85rem;
  }
}

/* ========================================
   ENHANCED SCROLL ANIMATIONS
   ======================================== */

/* Base animation classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced fade animations */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-in.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide animations with perspective */
.scroll-slide-left {
  opacity: 0;
  transform: translateX(-80px) rotateY(20deg);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.scroll-slide-left.animate-in {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(80px) rotateY(-20deg);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.scroll-slide-right.animate-in {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

/* Scale animations with blur */
.scroll-scale {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
  filter: blur(10px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-scale.animate-in {
  opacity: 1;
  transform: scale(1) rotate(0);
  filter: blur(0);
}

/* Flip animations */
.scroll-flip {
  opacity: 0;
  transform: perspective(1000px) rotateX(90deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.scroll-flip.animate-in {
  opacity: 1;
  transform: perspective(1000px) rotateX(0);
}

/* Bounce animations */
.scroll-bounce {
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-bounce.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glitch effect */
.scroll-glitch {
  opacity: 0;
  position: relative;
}

.scroll-glitch.animate-in {
  opacity: 1;
  animation: glitch-anim 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes glitch-anim {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
  }
  40% {
    transform: translate(-5px, -5px);
  }
  60% {
    transform: translate(5px, 5px);
  }
  80% {
    transform: translate(5px, -5px);
  }
  100% {
    transform: translate(0);
  }
}

/* Typewriter effect for text */
.scroll-typewriter {
  opacity: 0;
}

.scroll-typewriter.animate-in {
  opacity: 1;
  animation: typewriter 1s steps(40) both;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Gradient reveal */
.scroll-gradient-reveal {
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  background-position: -200% 0;
  transition: opacity 0.6s ease, background-position 1.2s ease;
}

.scroll-gradient-reveal.animate-in {
  opacity: 1;
  background-position: 200% 0;
}

/* Staggered animations for grid items */
.stagger-animate > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animate.animate-in > * {
  opacity: 1;
  transform: translateY(0);
}

/* Apply enhanced animations to specific sections */

/* About Section */
.about-section .about-content {
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

  /* transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */

.cta-button::before, .course-btn::before, .popup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before, .course-btn:hover::before, .popup-btn:hover::before {
  left: 100%;
}

/* Matrix rain enhancement */


@keyframes matrixPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* ----------------------------------------- */

/* Centered Hero Section */
.hero-center-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.hero-content-center {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.hero-content-center .hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-content-center .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.hero-content-center .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.hero-content-center .cta-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-content-center .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.hero-content-center .cta-button:hover .arrow {
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-center-container {
    min-height: calc(100vh - 100px);
    padding: 1.5rem;
  }
  
  .hero-content-center .hero-title {
    font-size: clamp(2rem, 10vw, 4rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-content-center .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
  }
  
  .hero-content-center .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-center-container {
    padding: 1rem;
  }
  
  .hero-content-center .hero-title {
    font-size: clamp(1.8rem, 12vw, 3rem);
  }
  
  .hero-content-center .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
  
  .hero-content-center .arrow {
    width: 35px;
    height: 35px;
  }
}

/* ========================================
   RESTORED & NEW SECTIONS
   ======================================== */

.about-section .description {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.about-section.animate-in .description {
  opacity: 1;
  transform: translateX(0);
}

/* Why Hackeon Section */
.why-kodex-section .why-kodex-container {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-kodex-section.animate-in .why-kodex-container {
  opacity: 1;
  transform: scale(1);
}

/* Journey Section */
.journey-section {
  padding: 100px 20px;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.journey-container {
  max-width: 1400px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  margin-bottom: 80px;
}

.journey-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 20px;
  font-weight: 300;
}

.journey-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.journey-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 255, 0, 0.1);
}

.journey-card:hover::before {
  opacity: 1;
}

.card-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
  transition: all 0.4s ease;
}

.journey-card:hover .card-number {
  color: rgba(0, 255, 0, 0.1);
  transform: scale(1.2);
}

.card-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.card-tags span {
  font-size: 0.85rem;
  color: #0f0;
  background: rgba(0, 255, 0, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

@media (max-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
  
  .journey-card {
    padding: 30px 20px;
  }
}

/* Showcase Section */
.showcase-section .showcase-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-section.animate-in .showcase-container {
  opacity: 1;
  transform: translateY(0);
}

.floating-image {
  opacity: 0;
  transform: scale(0.8) rotate(10deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-image.animate-in {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Courses Section */
.courses-section .courses-container {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.courses-section.animate-in .courses-container {
  opacity: 1;
  transform: translateY(0);
}

.course-card {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.course-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.course-card:hover {
  transform: translateY(-15px) scale(1.02);
}

/* Contact Section */
.contact-section .contact-container {
  opacity: 0;
  transform: perspective(1000px) rotateX(15deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-section.animate-in .contact-container {
  opacity: 1;
  transform: perspective(1000px) rotateX(0);
}

/* FAQ Section */
.faq-section .faq-container {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.faq-section.animate-in .faq-container {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stats animation */
.stat-item {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-item.animate-in .stat-number {
  animation: numberCount 1s ease-out;
}

@keyframes numberCount {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced hover effects */
.course-card:hover .course-icon {
  transform: scale(1.1) rotate(10deg);
  /* background: linear-gradient(135deg, #2c2c2c 0%, #000 100%); */
    background: linear-gradient(135deg, #ff0080 0%, #7928ca 50%, #00d4ff 100%);
  color: white;
}

/* Animation delays for enhanced staggered effects */
.course-card:nth-child(1) { transition-delay: 0.1s; }
.course-card:nth-child(2) { transition-delay: 0.2s; }
.course-card:nth-child(3) { transition-delay: 0.3s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }

.floating-image:nth-child(1) { transition-delay: 0.1s; }
.floating-image:nth-child(2) { transition-delay: 0.2s; }
.floating-image:nth-child(3) { transition-delay: 0.3s; }
.floating-image:nth-child(4) { transition-delay: 0.4s; }
.floating-image:nth-child(5) { transition-delay: 0.5s; }
.floating-image:nth-child(6) { transition-delay: 0.6s; }

/* Parallax scrolling effect for hero */
.hero::before {
  transform: translateZ(-1px) scale(2);
}

/* Loading animation for images */
.floating-image img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.floating-image.animate-in img {
  animation: imageReveal 1s ease-out;
}

@keyframes imageReveal {
  0% {
    transform: scale(1.1);
    filter: brightness(0.5) blur(10px);
  }
  100% {
    transform: scale(1);
    filter: brightness(1) blur(0);
  }
}

/* Text glow effect for important elements */
.hero-title, .courses-title, .journey-title {
  position: relative;
}

.hero-title.animate-in::after,
.courses-title.animate-in::after,
.journey-title.animate-in::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Journey Grid Animations */
.journey-section .journey-container {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.journey-section.animate-in .journey-container {
  opacity: 1;
  transform: translateY(0);
}

.journey-card {
  opacity: 0;
  transform: translateY(30px);
  /* Keep existing transition properties but ensure opacity/transform are handled */
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.journey-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for journey cards */
.journey-card:nth-child(1) { transition-delay: 0.1s; }
.journey-card:nth-child(2) { transition-delay: 0.2s; }
.journey-card:nth-child(3) { transition-delay: 0.3s; }
.journey-card:nth-child(4) { transition-delay: 0.4s; }
.journey-card:nth-child(5) { transition-delay: 0.5s; }