/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #100e0e;
  color: #fff;
  font-family: "Satoshi", "Satoshi Placeholder", sans-serif !important;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  position: fixed;
  width: 90%;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: 45px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  height: 45px;
  z-index: 1001;
}

.navbar .logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #9bcc1b;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #9bcc1b, #70980b);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(13, 255, 234, 0.4), 0 0 50px rgba(13, 94, 244, 0.2);
  border: 1px solid rgba(13, 255, 234, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.6), 
    rgba(5, 200, 54, 0.8), 
    rgba(255, 255, 255, 0.6), 
    transparent
  );
  animation: shimmer 2.5s infinite ease-in-out;
}

.btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    #0DFFEA, 
    #00FF88, 
    #0DFFEA, 
    #00BFFF, 
    #0DFFEA
  );
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  animation: neonPulse 2s infinite ease-in-out;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(61, 255, 13, 0.7), 
              0 0 70px rgba(61, 255, 13, 0.4),
              0 0 100px rgba(61, 255, 13, 0.3);
  background: linear-gradient(135deg, #9bcc1b, #9bcc1b, #9bcc1b);
}

.btn:hover::after {
  opacity: 0.8;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0 45px rgba(13, 255, 234, 0.9);
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes neonPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
}

.hero-title {
  font-size: 12rem;
  font-weight: bold;
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 40 20px;
  box-sizing: border-box;
}

.hero-title span {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}

.hero-title .teal {
  color: #9BCC1B;
}

.tagline {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ccc;
  z-index: 2;
}

/* Main CTA Section */
.main-cta {
  padding: 150px 20px;
  text-align: center;
  background: #000000;
  position: relative;
  overflow: hidden;
  width: 1600px;
  margin: auto;
}

.main-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
  linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1b1b1b 50%, #0f0f0f 75%, #000000 100%);
  z-index: 1;
}

.main-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    radial-gradient(circle at 6px 6px, rgba(255, 255, 255, 0.22) 0.5px, transparent 0);
  background-size: 12px 12px, 24px 24px;
  background-position: 0 0, 6px 6px;
  z-index: 2;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.cta-subtitle {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.green-icon {
  color: #11de55;
  font-size: 12px;
}

.cta-title {
  font-size: 4.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.teal-highlight {
  color: #9bcc1b;
}

.cta-description {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 2px solid #9bcc1b;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 255, 234, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  background: #9bcc1b;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px #a1e004;
}

.cta-button:hover::before {
  left: 100%;
}

 /* Floating images */
 .floating-img {
   position: absolute;
   width: 150px;
   height: 150px;
   object-fit: cover;
   border-radius: 12px;
   opacity: 0;
   transform: scale(0.3);
   pointer-events: none;
   transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
   z-index: 10;
   filter: brightness(1.1) saturate(1.2);
 }
 
 .floating-img:hover {
   transform: scale(1.1);
 }

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 24px;
    padding: 10px 20px;
  }
  
  .navbar .btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}


/* Section Styles */
section {
  padding: 80px 20px;
  text-align: center;
}

/* Benefits Section */
.benefits {
  padding: 100px 20px;
  
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  z-index: 1;
}

.benefits::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  z-index: 2;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

.why-us-btn {
  background: rgba(13, 255, 234, 0.1);
  border: 1px solid #9bcc1b;
  color: #9bcc1b;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.why-us-btn:hover {
  background: #b9fe0b31;
  border-color: #9bcc1b;
  transform: translateY(-2px);
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

.benefits-tagline {
  font-size: 1.1rem;
  color: #cccccc;
  text-align: center;
  font-weight: 400;
  position: relative;
  z-index: 3;
}

.benefit-cards {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

#particle-1 , #particle-2, #particle-3{
  width: 249px;
  
}
.card {
  background: #151515;
  padding: 40px 30px;
  border-radius: 20px;
  width: 320px;
  border: 1px solid #9acc1b50;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(13, 255, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 48%, rgba(13, 255, 234, 0.03) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(13, 255, 234, 0.03) 50%, transparent 52%);
  background-size: 20px 20px;
  z-index: 1;
}

.card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.card p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #9acc1b50;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 30px #9acc1b50,
    inset 0 1px 0 #9bcc1b33;
}

.framer-ilelxa-container {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.framer-ilelxa-container canvas {
  border-radius: 12px;
}

.particle-wrapper{
  margin-left: 80px;
}

.icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  background-color: #000;
}
.icon {
  width: 70px;
  height: 70px;
  padding: 30px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, #9bcc1b 0%, #6a8f0c 100%); */
  display: flex
;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 15px #69920366(13, 255, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s 
ease;
  position: relative;
  /* margin: 0px auto; */
  right: 162px;
  top: 60px;
  /* overflow: hidden; */
  font-size: 40px;
  border: 1px solid #9bcc1b66;
  /* align-content: center; */
  flex-wrap: nowrap;
}


/* canvas  */
.particle-wrapper{
margin-left:0px auto;
}

.icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.1) 50%, transparent 52%);
  background-size: 6px 6px;
  border-radius: 12px;
  z-index: 1;
}

.icon:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(53, 255, 13, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Individual icon classes can be used for specific styling if needed */

/* Design Section */
.design-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  overflow-x: auto;
}

.design-gallery img {
  width: 160px;
  border-radius: 12px;
}

/* 3D Stacked Carousel Section */
.carousel-3d-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: auto;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-3d-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 800px;
  background: radial-gradient(circle at 50% 50%, rgba(155, 204, 27, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.carousel-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  background: linear-gradient(135deg, #9bcc1b, #7cb518);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 300px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(155, 204, 27, 0.3);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(155, 204, 27, 0.4);
}

.carousel-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, #9bcc1b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-header p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 300;
}

.carousel-3d-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.carousel-3d-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-3d-item {
  position: absolute;
  width: 350px;
  height: 250px;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  filter: brightness(0.8);
}

.carousel-3d-item.active {
  filter: brightness(1);
}

.card-content {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content::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%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 24px;
  z-index: 1;
}

.card-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
  letter-spacing: -0.5px;
}

.card-content p {
  font-size: 1rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
  font-weight: 400;
  line-height: 1.4;
}

.card-content .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Card Colors with Enhanced Gradients */
.card-content.purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #7C3AED 100%);
  color: #fff;
}

.card-content.green {
  background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
  color: #fff;
}

.card-content.white {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
  color: #1a202c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-content.beige {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  color: #fff;
}

.card-content.orange {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 50%, #DC2626 100%);
  color: #fff;
}

/* 3D Stacked Positioning */
.carousel-3d-item[data-index="0"] {
  transform: translateX(-180px) translateY(-50%) rotateY(45deg) scale(0.75) translateZ(-100px);
  z-index: 1;
}

.carousel-3d-item[data-index="1"] {
  transform: translateX(-90px) translateY(-50%) rotateY(25deg) scale(0.85) translateZ(-50px);
  z-index: 2;
}

.carousel-3d-item[data-index="2"] {
  transform: translateX(0) translateY(-50%) rotateY(0deg) scale(1) translateZ(0px);
  z-index: 5;
}

.carousel-3d-item[data-index="3"] {
  transform: translateX(90px) translateY(-50%) rotateY(-25deg) scale(0.85) translateZ(-50px);
  z-index: 2;
}

.carousel-3d-item[data-index="4"] {
  transform: translateX(180px) translateY(-50%) rotateY(-45deg) scale(0.75) translateZ(-100px);
  z-index: 1;
}

.carousel-3d-item[data-index="5"] {
  transform: translateX(270px) translateY(-50%) rotateY(-60deg) scale(0.6) translateZ(-150px);
  z-index: 0;
}

/* Enhanced Hover Effects */
.carousel-3d-item:hover {
  transform: translateX(var(--hover-x, 0)) translateY(-50%) rotateY(var(--hover-rotate, 0)) scale(var(--hover-scale, 1)) translateZ(30px);
  filter: brightness(1.1);
}

/* Draggable Carousel */
.carousel-3d-container {
  cursor: grab;
  user-select: none;
}

.carousel-3d-container:active {
  cursor: grabbing;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-3d-section {
    padding: 60px 15px;
    min-height: auto;
  }

  .carousel-header {
    margin-bottom: 40px;
  }

  .carousel-header h2 {
    font-size: 2rem;
  }

  .carousel-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .curved-carousel {
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
  }
  
  .curve-track {
    height: 280px;
    top: 15%;
  }
  
  .curve-card {
    width: 150px;
    height: 180px;
    margin-left: -75px;
    margin-top: -90px;
  }

  .carousel-3d-container {
    height: 400px;
  }

  .carousel-3d-item {
    width: 280px;
    height: 200px;
  }

  .card-content {
    padding: 30px;
  }

  .card-content h3 {
    font-size: 1.4rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .carousel-controls {
    gap: 20px;
  }

  .prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.features-section {
background: #0b0b0b;
color: #fff;
padding: 80px 10%;
text-align: center;
font-family: Arial, sans-serif;
}

.features-header h2 {
font-size: 2rem;
margin: 20px 0 120px;
}

.tag-btn {
background: rgba(0, 200, 150, 0.1);
color: #9bcc1b;
padding: 6px 16px;
border-radius: 8px;
border: none;
font-weight: 600;
}

.features-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 60px;
margin-bottom: 60px;
flex-wrap: wrap;
}

/* Left side: features list */
.features-list {
flex: 1;
min-width: 300px;
display: flex;
flex-direction: column;
background: rgba(17, 17, 17, 0.8); /* dark backdrop */
border-radius: 16px;
overflow: hidden;
}

/* Individual feature tab */
.feature-tab {
padding: 60px 20px;
border-left: 3px solid transparent;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
cursor: pointer;
text-align: left;
transition: all 0.3s;
}

.feature-tab h3 {
font-size: 1.5rem;
margin-bottom: 8px;
font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
}

.feature-tab p {
font-size: 20px;
opacity: 0.8;
line-height: 1.4;
font-weight:300;
}

.feature-tab:hover {
background: rgba(255, 255, 255, 0.05);
}

.feature-tab.active {

border-left: 3px solid #9bcc1b;
background: rgba(255, 255, 255, 0.05); /* subtle highlight */
}


/* Right side */
.feature-image {
flex: 1;
min-width: 300px;
position: relative;
background: radial-gradient(63% 63% at 0% 0%, #9bcc1bcc 0%, #111 100%);
border-radius: 23px;
padding: 35px 10px; /* space around image so gradient shows */
display: flex;
justify-content: center;
align-items: center;
}

.feature-image img {
width: 85%;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* optional: add depth */
}

/* .overlay-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: linear-gradient(45deg, orange, #ff6b00);
color: #fff;
font-weight: bold;
padding: 12px 18px;
border-radius: 50%;
font-size: 1.2rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
} */

/* Stats */
.features-stats {
font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 80px;
}

.features-stats div {
text-align: center;
margin: 15px;
font-weight: 400;
}

.features-stats h3 {
font-size: 2.1rem;
margin-bottom: 5px;
}

.features-stats p {
font-size: 18px;
font-family: "Satoshi", "Satoshi Placeholder", sans-serif;
font-weight: 300;
margin-bottom: 5px;
color: #868686;
}


/* car css */

/* Section Container */
.launch-section {
position: relative;
width: 100%;
height: 80vh; /* adjust height */
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: #fff;
color: #000;
padding: 0; /* remove extra padding */
}

/* Full-width Image */
.launch-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.launch-image img {
width: 100%;
height: 100%;
object-fit: cover; /* makes sure it covers full section */
object-position: center;
opacity: 1; /* optional, for text visibility */
}

/* Text Overlay */
.launch-text {
position: relative;
z-index: 2;
text-align: center;
max-width: 800px;
padding: 20px;
}

.launch-text h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 15px;
color: #fff;
}

.launch-text p {
font-size: 1.2rem;
opacity: 0.8;
color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
.launch-section {
  height: 60vh;
}

.launch-text h2 {
  font-size: 2rem;
}

.launch-text p {
  font-size: 1rem;
}
}

@media (max-width: 600px) {
.launch-section {
  height: 50vh;
  padding: 10px;
}

.launch-text h2 {
  font-size: 1.6rem;
}

.launch-text p {
  font-size: 0.9rem;
}
}


/*  */
#portfolio {
position: relative;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #0e0e0e;
overflow: hidden;
}

.portfolio-wheel {
position: relative;
width: 500px;
height: 300px;
transform-style: preserve-3d;
transition: transform 1s;
}

.portfolio-item {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
backface-visibility: hidden;
}

.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Vertical wheel positioning */
.portfolio-item:nth-child(1) { transform: rotateX(0deg) translateZ(400px); }
.portfolio-item:nth-child(2) { transform: rotateX(72deg) translateZ(400px); }
.portfolio-item:nth-child(3) { transform: rotateX(144deg) translateZ(400px); }
.portfolio-item:nth-child(4) { transform: rotateX(216deg) translateZ(400px); }
.portfolio-item:nth-child(5) { transform: rotateX(288deg) translateZ(400px); }



/* Websites Section */
.websites-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
}

.websites-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.websites-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.websites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.website-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.website-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.website-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.website-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.website-card:hover .website-image img {
  transform: scale(1.05);
}

.website-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 20px 8px 20px;
}

.website-card p {
  font-size: 1rem;
  color: #aaa;
  margin: 0 20px 20px 20px;
}

/* Responsive Design for Websites */
@media (max-width: 768px) {
  .websites-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .websites-header h2 {
    font-size: 2rem;
  }

  .websites-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Ads Section */
.ads-section {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
}

.ads-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.ads-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.view-all-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: #9bcc1b;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.ad-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ad-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ad-card:hover .ad-image img {
  transform: scale(1.05);
}

.ad-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 20px 8px 20px;
}

.ad-card p {
  font-size: 1rem;
  color: #aaa;
  margin: 0 20px 20px 20px;
}

/* Responsive Design for Ads */
@media (max-width: 768px) {
  .ads-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .ads-header h2 {
    font-size: 2rem;
  }

  .ads-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Reviews Section */
.reviews {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
  text-align: center;
}

.reviews-btn {
  background: #9bcc1b;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reviews h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-row {
  display: flex;
  gap: 20px;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: max-content;
}

.reviews-row.top {
  animation-name: slideRight;
}

.reviews-row.bottom {
  animation-name: slideLeft;
}

@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.review-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 0 0 300px;
  min-width: 300px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stars {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd700;
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
  font-style: italic;
}

.reviewer {
  font-size: 14px;
  color: #9bcc1b;
  font-weight: 500;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
  .reviews h2 {
    font-size: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-card {
    padding: 20px;
  }
}

/* Contact */
/* Contact Section Base Styles */
.contact-form-container input, 
.contact-form-container textarea {
  /* Large inputs with dark theme styling */
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: none;
  outline: none;
  background-color: #1A1A1A; /* Dark background for inputs */
  color: #FFFFFF; /* White text */
  font-size: 16px;
  transition: box-shadow 0.3s ease;
  /* Placeholder style */
  &::placeholder {
      color: #888888;
  }
}

.contact-form-container input:focus, 
.contact-form-container textarea:focus {
  /* Subtle focus glow */
  box-shadow: 0 0 0 2px #9bcc1b;
}

.contact-form-container textarea {
  resize: vertical;
}

/* Submit Button Styling (Replicating the green gradient button) */
.contact-btn {
  width: 100%;
  padding: 16px 32px;
  margin-top: 10px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #000; /* Dark text on light background */
  /* The Magic Teal Gradient */
  background: linear-gradient(90deg, #9bcc1b 0%, #9bcc1b 100%);
  box-shadow: 0 5px 20px rgba(0, 229, 161, 0.4); /* Green shadow */
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #9bcc1b 0%, #9bcc1b 100%);
  box-shadow: 0 8px 25px #9bcc1b;
  transform: translateY(-1px);
}

/* Responsive alignment for the button */
@media (min-width: 1024px) {
  .contact-btn {
      max-width: 300px;
      align-self: flex-start; /* Aligns to the left in the right column */
  }
}



/* Footer */
footer {
  background: #111;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

footer .socials a {
  color: #9bcc1b;
  margin: 0 10px;
  text-decoration: none;
}


/*  */

.portfolio-section {
width: 100%;
min-height: 100vh;
perspective: 1500px; /* for 3D depth */
overflow: hidden;
padding: 100px 0;
}

.portfolio-section h2 {
text-align: center;
font-size: 3rem;
margin-bottom: 80px;
}

.portfolio-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 200px; /* spacing between cards */
}

.portfolio-card {
width: 80%;
max-width: 900px;
height: 500px;
background: #222;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.6);
transform: rotateY(60deg) scale(0.8);
opacity: 0;
transition: transform 1s ease, opacity 1s ease;
}

.portfolio-card img {
width: 100%;
height: 100%;
object-fit: cover;
}

.portfolio-card.visible {
transform: rotateY(0deg) scale(1);
opacity: 1;
}


/* ===== Scroll Showcase Section ===== */
.scroll-showcase {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #0d0d0d;
overflow: hidden;
padding: 60px 20px;
}

.scroll-showcase .sticky-info {
position: sticky;
top: 50%;
transform: translateY(-50%);
text-align: center;
max-width: 600px;
color: #fff;
z-index: 5;
margin-right: 30px;
}

.scroll-showcase .sticky-info h2 {
font-size: 2.2rem;
margin-bottom: 15px;
}

.scroll-showcase .sticky-info p {
font-size: 1rem;
line-height: 1.6;
color: #aaa;
}

.showcase-images {
position: relative;
width: 60%;
height: 70vh;
}

.showcase-item {
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
}

.showcase-item img {
max-width: 80%;
max-height: 80%;
object-fit: cover;
opacity: 0;
transform: scale(1);
transition: opacity 1s ease, transform 1s ease;
}

.showcase-item.active img {
opacity: 1;
transform: scale(1.05);
z-index: 10;
}

/* Responsive */
@media (max-width: 900px) {
.scroll-showcase {
  flex-direction: column;
  text-align: center;
}

.scroll-showcase .sticky-info {
  position: relative;
  transform: none;
  margin: 0 0 30px 0;
}

.showcase-images {
  width: 100%;
  height: 50vh;
}

.showcase-item img {
  max-width: 100%;
  max-height: 100%;
}
}

/*  */

.curved-carousel {
position: relative;
width: 100%;
height: 50vh;
min-height: 400px;
/* CRITICAL: Increased perspective for a deeper 3D stage */
perspective: 2700px; 
/* CRITICAL: Hides elements that rotate off the side, preventing back-face visibility */
overflow: hidden;
/* Enable drag cursor */
cursor: grab;
user-select: none;
/* Ensure container can receive pointer events */
pointer-events: auto;
z-index: 1;
}

.curved-carousel:active {
cursor: grabbing;
}

/* --- The Rotating Track (The Carousel Container) --- */
.curve-track {
position: absolute;
top: 10%;
left: 50%;
width: 100%;
height: 450px;
transform-style: preserve-3d;
transform-origin: center center;
/* Centering the track and setting the initial rotation */
transform: translate(-50%, -50%); 
/* Transition speed for the rotation */
transition: transform 0.4s ease-out;
}

/* Disable transition when dragging */
.curved-carousel.dragging .curve-track,
.curve-track.no-transition {
transition: none !important;
}

/* --- Individual Card Styling --- */
.curve-card {
position: absolute;
top: 50%;
left: 50%;
width: 240px;
height: 320px;
/* Transform style is generally not needed here if only the track rotates */
/* transform-style: preserve-3d; */ 

/* IMPORTANT: Remove the incorrect transform-origin from the card */
/* transform-origin: center center -900px; */ 

/* Centering the card visually on its pivot point (top left is 0,0) */
margin-left: -120px; /* -half width */
margin-top: -160px;  /* -half height */

/* The actual 3D positioning (rotateY and translateZ) is handled by JavaScript */
transition: transform 1s ease, opacity 0.6s;

/* Enable pointer events and cursor */
pointer-events: auto;
cursor: grab;
user-select: none;
}

.curve-card:active {
cursor: grabbing;
}

.curve-card img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
/* The backface-visibility property ensures the back of the image/card is never rendered. */
backface-visibility: hidden;
/* Prevent image dragging but allow pointer events to pass to card */
pointer-events: none;
user-select: none;
-webkit-user-drag: none;
-moz-user-select: none;
}

/* --- Control Buttons Styling (Removed - using drag only) --- */

/* Showcase section css ka file  */

/* The main container height dictates the animation scroll duration */
.showcase-container {
height: 300vh; 
background-color: #000;
}

/* The pinned section that holds the 3D scene */
.showcase-pinned {
position: sticky;
top: 0;
height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
/* CRITICAL: Defines the 3D viewing distance */
perspective: 2000px;
}

/* The rotating track */
.showcase-track {
position: relative;
width: 80vw;
height: 80vh; 
transform-style: preserve-3d;
transform-origin: center center;
will-change: transform;
}

/* The individual card/arm */
.showcase-card {
position: absolute;
top: 50%;
left: 50%;
width: 300px; 
height: 400px; 
transform-style: preserve-3d;

/* Center the card relative to its pivot point */
margin-left: -150px; 
margin-top: -200px;  

background-color: #1a1a1a;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
overflow: hidden;

/* Text content styling */
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 24px;
z-index: 1; /* Ensure cards render above each other correctly */

/* Ensure cards are visible and render properly */
opacity: 1;
visibility: visible;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
will-change: transform, opacity, filter;
}

/* Optional: Overlay styling for the image background */
.showcase-card > div:last-child {
z-index: -1;
}

/* ============================================
 COMPREHENSIVE RESPONSIVE STYLES
 Mobile & Tablet Responsive Design
 ============================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
/* Navbar */
.navbar {
  width: 95%;
  padding: 10px 20px;
}

.nav-links {
  gap: 20px;
}

.nav-links a {
  font-size: 14px;
}

/* Hero */
.hero {
  padding: 100px 20px 60px;
}

.hero-title {
  font-size: 5rem;
  padding: 0 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.hero-title span {
  display: inline;
}

/* Main CTA */
.main-cta {
  width: 100%;
  padding: 100px 20px;
}

.cta-title {
  font-size: 3.5rem;
}

/* Benefits */
.benefit-cards {
  gap: 40px;
}

.card {
  width: 280px;
}

/* Carousel Section */
.carousel-3d-section {
  padding: 80px 20px;
  min-height: auto;
}

.curved-carousel {
  height: 45vh;
  min-height: 350px;
}

.curve-track {
  height: 380px;
}

.curve-card {
  width: 200px;
  height: 260px;
  margin-left: -100px;
  margin-top: -130px;
}

/* Features */
.features-content {
  flex-direction: column;
  gap: 40px;
}

.features-list {
  width: 100%;
}

.feature-image {
  width: 100%;
}

/* Portfolio */
.portfolio-container {
  gap: 150px;
}

.portfolio-card {
  width: 90%;
  height: 400px;
}

/* Websites & Ads Grid */
.websites-grid,
.ads-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* Contact */
.contact {
  padding: 60px 20px !important;
}

.contact h2 {
  font-size: 4rem !important;
}
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
/* Navbar */
.navbar {
  width: 95%;
  padding: 8px 15px;
  border-radius: 30px;
}

.navbar .logo img {
  width: 50px;
}

/* Hero */
.hero {
  padding: 80px 15px 40px;
  min-height: auto;
  height: auto;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  padding: 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.hero-title span {
  display: inline;
}

.tagline {
  font-size: 11px;
  padding: 0 20px;
  word-wrap: break-word;
}

/* Main CTA */
.main-cta {
  width: 100%;
  padding: 60px 20px;
}

.cta-title {
  font-size: 2rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 14px;
}

.cta-button {
  padding: 12px 24px;
  font-size: 14px;
}

/* Benefits */
.benefits {
  padding: 60px 20px;
}

.benefits-header {
  margin-bottom: 40px;
}

.benefits h2 {
  font-size: 1.8rem;
}

.benefit-cards {
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.card {
  width: 100%;
  max-width: 320px;
}

/* Carousel Section */
.carousel-3d-section {
  padding: 60px 15px;
  min-height: auto;
}

.carousel-header {
  margin-bottom: 40px;
}

.carousel-header h2 {
  font-size: 2rem;
}

.carousel-header p {
  font-size: 1rem;
  padding: 0 10px;
}

.curved-carousel {
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
}

.curve-track {
  height: 350px;
  top: 15%;
}

.curve-card {
  width: 180px;
  height: 240px;
  margin-left: -90px;
  margin-top: -120px;
}

/* Features */
.features-section {
  padding: 60px 20px;
}

.features-header h2 {
  font-size: 1.5rem;
  margin-bottom: 60px;
}

.features-content {
  flex-direction: column;
  gap: 30px;
}

.features-list {
  width: 100%;
}

.feature-tab {
  padding: 40px 15px;
}

.feature-tab h3 {
  font-size: 1.2rem;
}

.feature-tab p {
  font-size: 16px;
}

.feature-image {
  width: 100%;
  padding: 20px;
}

.features-stats {
  margin-top: 50px;
  gap: 20px;
}

.features-stats h3 {
  font-size: 1.6rem;
}

.features-stats p {
  font-size: 14px;
}

/* Portfolio */
.portfolio-section {
  padding: 60px 20px;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.portfolio-container {
  gap: 100px;
}

.portfolio-card {
  width: 95%;
  height: 300px;
}

/* Launch Section */
.launch-section {
  height: 50vh;
}

.launch-text h2 {
  font-size: 1.5rem;
}

.launch-text p {
  font-size: 1rem;
}

/* Websites Section */
.websites-section {
  padding: 60px 20px;
}

.websites-header {
  flex-direction: column;
  gap: 15px;
  text-align: center;
  margin-bottom: 40px;
}

.websites-header h2 {
  font-size: 1.8rem;
}

.websites-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Ads Section */
.ads-section {
  padding: 60px 20px;
}

.ads-header {
  flex-direction: column;
  gap: 15px;
  text-align: center;
  margin-bottom: 40px;
}

.ads-header h2 {
  font-size: 1.8rem;
}

.ads-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Reviews */
.reviews {
  padding: 60px 20px;
}

.reviews h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.review-card {
  flex: 0 0 280px;
  min-width: 280px;
  padding: 20px;
}

/* Contact */
.contact {
  padding: 40px 20px !important;
}

.contact .grid {
  grid-template-columns: 1fr !important;
  gap: 40px !important;
}

.contact h2 {
  font-size: 3rem !important;
}

.contact p {
  font-size: 16px !important;
}

.contact-form-container input,
.contact-form-container textarea {
  padding: 16px;
  font-size: 14px;
}

.contact-btn {
  padding: 14px 28px;
  font-size: 16px;
}

/* Footer */
footer {
  padding: 20px;
  font-size: 14px;
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 15px;
  right: 15px;
}

.whatsapp-btn img {
  width: 45px;
  height: 45px;
}
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
/* Navbar */
.navbar {
  padding: 8px 12px;
  border-radius: 25px;
}

.navbar .logo img {
  width: 100px;
}

.mobile-menu-toggle span {
  width: 22px;
}

.nav-links a {
  font-size: 20px;
}

.navbar .btn {
  font-size: 16px;
  padding: 10px 24px;
}

/* Hero */
.hero {
  padding: 160px 10px 30px;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  padding: 0 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title span {
  display: inline;
}

.tagline {
  font-size: 10px;
  padding: 0 15px;
  word-wrap: break-word;
}

/* Main CTA */
.cta-title {
  font-size: 1.6rem;
}

/* Carousel */
.curved-carousel {
  height: 35vh;
  min-height: 250px;
}

.curve-track {
  height: 220px;
}

.curve-card {
  width: 120px;
  height: 150px;
  margin-left: -60px;
  margin-top: -75px;
}

.carousel-header h2 {
  font-size: 1.5rem;
}

/* Features */
.feature-tab {
  padding: 30px 12px;
}

.feature-tab h3 {
  font-size: 1.1rem;
}

.feature-tab p {
  font-size: 14px;
}

/* Contact */
.contact h2 {
  font-size: 2.5rem !important;
}
}


/* SECTIONS
      /* Renamed from .hero to .s3d-hero-section to avoid conflicts 
      .s3d-hero-section {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: 20px;
        position: relative;
        z-index: 10;
      
    }

    .s3d-hero-section h1 {
        font-size: 6rem;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.05em;
        font-family: 'Space Grotesk', sans-serif;
        margin-bottom: 1rem;
        mix-blend-mode: difference;
    }

  

    /* Renamed from .spacer to .s3d-footer-spacer 
    .s3d-footer-spacer {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #111;
    }

    /* CAROUSEL CONTAINER (The "Track") 
    /* Renamed from .carousel-section to .s3d-scroll-track 
    .s3d-scroll-track {
        height: 400vh; /* Defines the scroll length 
        position: relative;
    }

    /* STICKY WRAPPER */
    /* Renamed from .sticky-wrapper to .s3d-sticky-viewport 
    .s3d-sticky-viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 1000px; /* Camera distance 
    }

    /* 3D SCENE 
    /* Renamed from .scene to .s3d-scene-container 
    .s3d-scene-container {
        position: relative;
        width: 300px;
        height: 500px;
        perspective: 1200px;
        transform-style: preserve-3d;
    }
    /* ROTATING CYLINDER */
    /* Renamed from .carousel to .s3d-cylinder 
    .s3d-cylinder {
        width: 100%;
        height: 100%;
        position: absolute;
        transform-style: preserve-3d;
    }

    /* CARDS 
    /* Renamed from .card to .s3d-card 
    .s3d-card {
        position: absolute;
        left: 40px;
        top: 100px;
        width: 80%;
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* transform is set via JS or inline styles initially 
        backface-visibility: hidden; /* Optional 
    }

    .s3d-card-inner {
        width: 60%;
        height: 70%;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    .s3d-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    
    .s3d-card-inner:hover .s3d-card-img {
        opacity: 1;
    }

    .s3d-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    }

    .s3d-card-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .s3d-card-meta {
        font-family: 'Space Mono', monospace;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #aaa;
        letter-spacing: 0.1em;
    }

    /* VIGNETTE OVERLAY 
    .s3d-vignette {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at center, transparent 20%, #0B0B0B 100%);
        z-index: 20;
    }

    /* MOBILE RESPONSIVENESS 
    @media (max-width: 768px) {
        .s3d-scene-container {
            width: 220px;
            height: 320px;
        }
        .s3d-hero-section h1 {
            font-size: 3rem;
        }
    }


*/

    /* -------------- */

    

    /* Container Section */
    .cylinder-carousel-section {
      position: relative;
      width: 100%;
      max-width: 100%; /* Full width */
      bottom: 160px;
      margin: 0; 
      padding: 80px 0;
      overflow: hidden;
      background: transparent;
  }

  .cylinder-viewport {
      position: relative;
      width: 100%;
      height: 600px; /* Increased height for impact */
      perspective: 1500px; /* Adjusted perspective for wider feel */
      display: flex;
      justify-content: center;
      align-items: center;
      /* Optional: relaxed masking to let it touch edges */
      mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }

  .cylinder-transform-layer {
      position: relative;
      width: 260px; /* Card Width */
      height: 400px; /* Card Height */
      transform-style: preserve-3d;
      cursor: grab;
      /* Center the track */
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .cylinder-transform-layer:active {
      cursor: grabbing;
  }

  .cylinder-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: #1a1a1a;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      backface-visibility: hidden; 
      -webkit-backface-visibility: hidden;
      /* Prevent image dragging */
      user-select: none;
      -webkit-user-drag: none;
  }

  .cylinder-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
      transition: opacity 0.3s ease;
      pointer-events: none;
      display: block;
  }

  .cylinder-item:hover img {
      opacity: 1;
  }

  .item-info-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s ease;
  }

  .cylinder-item:hover .item-info-overlay {
      transform: translateY(0);
      opacity: 1;
  }

  .item-heading {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 4px 0;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .item-subtext {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
  }



  /*  */


   /* Carousel Container */
   .carousel3d-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px; /* Key for 3D effect */
}

/* The rotating 3D object */
.carousel3d-container {
    position: relative;
    width: 220px;
    height: 320px;
    transform-style: preserve-3d;
    cursor: grab;
}

.carousel3d-container:active {
    cursor: grabbing;
}

/* Individual Card */
.carousel3d-card {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    /* Backface visibility hidden is crucial for performance and logic */
    backface-visibility: hidden; 
    /* Hardware acceleration */
    will-change: transform, opacity;
}

.carousel3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevent image dragging */
    transition: transform 0.5s ease;
}

/* Hover Effect */
.carousel3d-card:hover img {
    transform: scale(1.1);
}

/* Title Overlay */
.carousel3d-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.carousel3d-card:hover .carousel3d-content {
    transform: translateY(0);
}

.carousel3d-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}