/**
 * {
 *     margin: 0;
 *     padding: 0;
 *     box-sizing: border-box;
 *     font-family: 'Quick','Instrument Sans', sans-serif;
 * }
 * 
 * html, body {
 *     width: 100%;
 *     overflow-x: hidden;
 *     margin: 0;
 *     padding: 0;
 *     font-family: 'quick','Geist', sans-serif;
 * }
 * 
 * h1, h2, h3, h4, h5, h6 {
 *     font-family: 'Quick','Instrument Sans', sans-serif;
 *     font-weight: 600;
 * }
 * 
 * p {
 *     font-family: 'Geist', sans-serif;
 * }
 *
 * @format
 */
/* Google Font (IMPORTANT) */

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; /* bold */
}

p {
  font-family: "Quicksand", sans-serif;
  font-weight: 400; /* regular */
}

nav a {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}

/* Hero Section Styling */
.hero-section {
  background-image: url("../assets/images/b2.png");
  background-size: cover;
  background-position: center;
  padding: clamp(10px, 3vw, 20px) 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: relative;
  flex-wrap: wrap;
  z-index: 99999;
}

.logo img {
  height: clamp(40px, 5vw, 50px);
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(15px, 2vw, 30px);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: clamp(12px, 2vw, 20px) clamp(12px, 2vw, 19px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  position: relative;
  z-index: 99999;
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #2563eb;
}

.nav-links li.active a {
  color: #2563eb;
  font-weight: 600;
}

.dropdown-content a.active {
  border-bottom: 2px solid #ffffff;
  color: #a4a7aa;
  border-radius: 6px;
}

.dropdown-content a.active i {
  color: #7cd4a1;
}

.mobile-menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-demo,
.btn-demo1 {
  background: linear-gradient(90deg, #5c67ff, #42a5f5);
  color: white;
  border: none;
  padding: clamp(8px, 1.5vw, 11px) clamp(8px, 1.5vw, 11px);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(12px, 1.2vw, 14px);
  box-shadow: 0 4px 15px rgba(92, 103, 255, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-demo:hover,
.btn-demo1:hover {
  transform: translateY(-2px);
}

/* Up button css */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  width: 40px; /* Fixed width */
  height: 40px; /* Fixed height */
  border-radius: 50%; /* Perfect Circle */
  font-size: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
  transform: translateY(-5px); /* Hover par thoda upar move hoga */
}

/* Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  /* max-width: 600px; */
  max-width: inherit;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.6;
  color: #555;
  max-width: 500px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 250px;
  max-width: 400px;
}

.robot-img {
  width: 100%;
  max-width: 330px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.g-image {
  transform: translateY(clamp(-40px, -5vw, -80px));
  height: auto;
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  position: relative;
}

/* Ecosystem Section */
.ecosystem-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(15px, 3vw, 20px);
  position: relative;
  overflow: hidden;
}

/* Floating Particles in Background */
.ecosystem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(37, 99, 235, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 100, 100, 0.03) 0%,
      transparent 30%
    );
  pointer-events: none;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 60px;
  animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ecosystem-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1a1a1a, #2563eb);
  -webkit-background-clip: text;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ecosystem-header p {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Product Cards */
.product-card {
  display: flex;
  align-items: center;
  border-radius: clamp(30px, 5vw, 50px);
  padding: clamp(30px, 6vw, 80px);
  margin-bottom: 50px;
  position: relative;
  gap: clamp(30px, 6vw, 80px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: cardAppear 1s ease-out;
  animation-fill-mode: both;
  flex-wrap: wrap;
}

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

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.yellow-card-layout {
  background-color: #fff9e1;
  background-image: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 100%
  );
}

.blue-card-layout {
  background-color: #e7f1ff;
  background-image: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 100%
  );
}

/* Card Hover Effects */
.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.icone-box {
  height: 40px;
  margin: 0px 3px;
}

.card-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 25px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, transparent);
  transition: width 0.5s ease;
}

.product-card:hover .card-title::after {
  width: 100%;
}

.card-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #555;
  margin-bottom: 40px;
  line-height: 1.5;
  transition: all 0.3s;
}

.product-card:hover .card-subtitle {
  transform: translateX(5px);
  color: #333;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: clamp(12px, 1.5vw, 14px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  animation: pillPulse 3s ease-in-out infinite;
}

@keyframes pillPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.product-card:hover .category-pill {
  transform: scale(1.05);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
  transition: all 0.3s;
  cursor: pointer;
  animation: featureSlide 0.8s ease-out;
  animation-fill-mode: both;
  flex-wrap: wrap;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

.feature-item:hover {
  transform: translateX(10px);
  border-bottom-color: #2563eb;
}

.f-icon {
  font-size: 18px;
  transition: all 0.3s;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.feature-item:hover .f-icon {
  transform: scale(1.2) rotate(5deg);
  animation: none;
}

.feature-item strong {
  display: block;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #111;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #666;
}

/* Mockup & Floating UI */
.card-mockup {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 30px 0;
}

.circle-decoration {
  position: absolute;
  width: clamp(250px, 30vw, 350px);
  height: clamp(250px, 30vw, 350px);
  border-radius: 50%;
  z-index: 1;
  animation: circlePulse 4s ease-in-out infinite;
}

@keyframes circlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.yellow-circle {
  background: #ffec9f;
  animation:
    circlePulse 4s ease-in-out infinite,
    slowRotate 20s linear infinite;
}

.blue-circle {
  background: #d1e4ff;
  animation:
    circlePulse 4s ease-in-out infinite reverse,
    slowRotate 20s linear infinite reverse;
}

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

.main-phone {
  width: clamp(180px, 20vw, 220px);
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
    filter: drop-shadow(0 30px 40px rgba(37, 99, 235, 0.3));
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
    filter: drop-shadow(0 40px 50px rgba(37, 99, 235, 0.4));
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
    filter: drop-shadow(0 30px 40px rgba(37, 99, 235, 0.3));
  }
}

.float-ui {
  position: absolute;
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  z-index: 5;
  padding: clamp(8px, 1.5vw, 10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.y-left {
  left: max(-20px, -5%);
  top: 25%;
  width: clamp(160px, 18vw, 200px);
  animation: floatLeftRight 6s ease-in-out infinite;
}

@keyframes floatLeftRight {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(-15px) translateY(-15px);
  }
  75% {
    transform: translateX(-5px) translateY(-5px);
  }
}

.y-right {
  right: max(-20px, -5%);
  bottom: 15%;
  width: clamp(180px, 20vw, 220px);
  animation: floatRightLeft 7s ease-in-out infinite;
}

@keyframes floatRightLeft {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(10px) translateY(-10px);
  }
  50% {
    transform: translateX(15px) translateY(-15px);
  }
  75% {
    transform: translateX(5px) translateY(-5px);
  }
}

.b-left {
  left: max(-20px, -5%);
  top: 30%;
  width: clamp(160px, 18vw, 200px);
  animation: floatLeftRight 6.5s ease-in-out infinite;
}

.b-right {
  right: max(-20px, -5%);
  bottom: 20%;
  width: clamp(180px, 20vw, 220px);
  animation: floatRightLeft 7.5s ease-in-out infinite;
}

.float-ui:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Floating UI Elements */
.student-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.student-item:hover {
  transform: translateX(5px);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  padding: 5px;
}

.avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.avatar.yellow {
  background: #facc15;
  animation-delay: 0s;
}

.avatar.orange {
  background: #fb923c;
  animation-delay: 0.2s;
}

.avatar.pink {
  background: #f472b6;
  animation-delay: 0.4s;
}

.avatar:hover {
  transform: scale(1.2) rotate(360deg);
  animation: none;
}

.info strong {
  font-size: 12px;
  display: block;
}

.info span {
  font-size: 12px;
  color: #999;
}

.ui-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.ui-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, transparent);
  animation: titleLine 3s ease-in-out infinite;
}

@keyframes titleLine {
  0%,
  100% {
    width: 50%;
  }
  50% {
    width: 100%;
  }
}

.process-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.process-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.3s;
  animation: iconRotate 4s linear infinite;
}

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

.process-icon:hover {
  transform: rotate(360deg) scale(1.1);
  animation: none;
}

.orange-bg {
  background: #fb923c;
  color: white;
}
.blue-bg {
  background: #2563eb;
  color: white;
}

.process-info {
  flex: 1;
}

.process-info p {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 5px;
}

.p-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 10px;
  margin-top: 5px;
  overflow: hidden;
  position: relative;
}

.p-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.p-fill {
  height: 100%;
  border-radius: 10px;
  position: relative;
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.yellow-fill {
  background: #facc15;
  width: 75%;
}
.blue-fill {
  background: #2563eb;
  width: 60%;
}

/* Trust Section */
.trust-section {
  background-color: #050221;
  padding: clamp(50px, 8vw, 100px) 5%;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  animation: slowSpin 30s linear infinite;
}

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

.trust-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease-out;
  flex-wrap: wrap;
  gap: 20px;
}

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

.trust-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 600px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #a0a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 5s ease infinite;
}

@keyframes textShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.trust-header p {
  color: #a0a0a0;
  font-size: clamp(14px, 1.5vw, 18px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trust-card {
  background: linear-gradient(
    145deg,
    rgba(20, 20, 60, 0.8),
    rgba(10, 10, 40, 0.8)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: clamp(25px, 3vw, 35px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: cardFadeIn 0.8s ease-out;
  animation-fill-mode: both;
}

.trust-card:nth-child(1) {
  animation-delay: 0.1s;
}
.trust-card:nth-child(2) {
  animation-delay: 0.2s;
}
.trust-card:nth-child(3) {
  animation-delay: 0.3s;
}
.trust-card:nth-child(4) {
  animation-delay: 0.4s;
}
.trust-card:nth-child(5) {
  animation-delay: 0.5s;
}
.trust-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

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

.trust-card:hover::before {
  left: 100%;
}

.trust-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(60, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.t-icon {
  width: 30px;
  height: 30px;
  background: rgba(60, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(60, 130, 246, 0.3);
  transition: all 0.3s;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(60, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(60, 130, 246, 0.6);
  }
}

.trust-card:hover .t-icon {
  transform: rotate(360deg) scale(1.1);
  background: rgba(60, 130, 246, 0.4);
}

.trust-card h4 {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 15px;
  font-weight: 600;
}

.trust-card p {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #b0b0b0;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: clamp(50px, 8vw, 100px) 5%;
  background-color: #f4f7ff;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  animation: slowSpin 40s linear infinite reverse;
}

.cta-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-banner {
  background-color: #05021a;
  background-image: radial-gradient(
    circle at 70% 80%,
    rgba(30, 58, 138, 0.6),
    transparent 50%
  );
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 40px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: slowSpin 20s linear infinite;
}

.cta-content {
  flex: 1;
  min-width: 250px;
  z-index: 2;
  animation: slideInLeft 1s ease-out;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
  animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 40px rgba(37, 99, 235, 0.5);
  }
}

.cta-button {
  background: linear-gradient(90deg, #4f46e5, #3b82f6);
  color: white;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
  border-radius: 100px;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

.cta-button:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 20px 30px rgba(79, 70, 229, 0.5);
  animation: none;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.cta-image-wrapper {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  animation: slideInRight 1s ease-out 0.3s both;
}

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

.cta-girl-img {
  height: clamp(200px, 30vw, 230px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 40px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  animation: bounceFloat 6s ease-in-out infinite;
}

@keyframes bounceFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
    filter: drop-shadow(0 30px 40px rgba(37, 99, 235, 0.4));
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
    filter: drop-shadow(0 40px 50px rgba(37, 99, 235, 0.5));
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
    filter: drop-shadow(0 30px 40px rgba(37, 99, 235, 0.4));
  }
}

/* Footer */
.main-footer {
  background-color: #000000;
  color: #ffffff;
  padding: clamp(40px, 6vw, 80px) 5% clamp(20px, 3vw, 40px);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 500px;
  min-width: 280px;
}

.footer-logo {
  height: clamp(40px, 5vw, 50px);
  margin-bottom: 25px;
  width: auto;
}

.brand-desc {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  color: #cccccc;
}

.footer-links-grid {
  display: flex;
  gap: clamp(30px, 5vw, 80px);
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-column ul li {
  margin-bottom: 15px;
  list-style-type: disclosure-closed;
}

.footer-column ul li a {
  color: #888888;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 15px);
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: clamp(14px, 1.5vw, 15px);
  color: #bbbfd0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  color: #888888;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 15px);
  transition: color 0.3s;
}

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

.dot {
  color: #444444;
  font-size: 14px;
}

/* Wave Animation Container */
.wave-container {
  position: initial;
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin: 40px 0;
}

/* Wave SVG or Element */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: repeat-x;
  background-size: 200px 100px;
  animation: waveMove 10s linear infinite;
}

.wave-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-249.9 50-394.5 50v30.7h800v-30.8z' fill='%234f46e5' opacity='0.3'/%3E%3C/svg%3E");
  bottom: 20px;
  animation: waveMove 8s linear infinite;
  opacity: 0.3;
}

.wave-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-249.9 50-394.5 50v30.7h800v-30.8z' fill='%233b82f6' opacity='0.5'/%3E%3C/svg%3E");
  bottom: 10px;
  animation: waveMove 12s linear infinite reverse;
  opacity: 0.5;
}

.wave-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-249.9 50-394.5 50v30.7h800v-30.8z' fill='%232563eb' opacity='0.7'/%3E%3C/svg%3E");
  bottom: 0;
  animation: waveMove 15s linear infinite;
  opacity: 0.7;
}

@keyframes waveMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 0;
  }
}

/* Simple Wave with CSS Gradient */
.simple-wave {
  width: 100%;
  height: 100px;
  background:
    linear-gradient(
      45deg,
      transparent 30%,
      #4f46e5 30%,
      #4f46e5 40%,
      transparent 40%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      #3b82f6 30%,
      #3b82f6 40%,
      transparent 40%
    );
  background-size: 60px 60px;
  animation: waveShift 3s linear infinite;
}

@keyframes waveShift {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      60px 0,
      60px 0;
  }
}

/* Wave Border Animation */
.wave-border {
  width: 100%;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.wave-border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #4f46e5 0px,
    #4f46e5 10px,
    #3b82f6 10px,
    #3b82f6 20px
  );
  animation: borderMove 5s linear infinite;
}

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

/* Dropdown Styles */
.dropdown {
  position: relative;
  z-index: 99999;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 999999;
  border: 1px solid #f1f5f9;
  margin-top: 10px;
}

.dropdown-content a {
  color: #1e293b !important;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-content a i {
  font-size: 18px;
  color: #4f46e5;
}

.dropdown-content a:hover {
  background-color: #f8fafc;
  color: #4f46e5 !important;
  padding-left: 25px;
}

.dropdown-content.show {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 99999;
}

.dropdown.active .dropdown-content {
  display: block;
  animation: fadeInUp 0.3s ease-out forwards;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
  .ecosystem-section {
    max-width: 1600px;
  }

  .hero-text h1 {
    font-size: 4rem;
  }
}

/* Responsive Breakpoints */

@media (min-width: 2060px) {
  .logo img {
    height: clamp(40px, 5vw, 97px);
    width: auto;
  }
  .nav-links li a {
    font-size: clamp(12px, 1.2vw, 2rem);
  }
  .nav-links {
    gap: clamp(15px, 2vw, 80px);
    padding: clamp(12px, 2vw, 33px) clamp(12px, 2vw, 100px);
  }
  .btn-demo {
    padding: clamp(8px, 1.5vw, 2rem) clamp(8px, 1.5vw, 3rem);
    font-size: clamp(12px, 1.2vw, 1.5rem);
    font-weight: bold;
  }

  .hero-text {
    max-width: 1200px;
  }
  .hero-text h1 {
    font-size: 6rem;
  }
  .hero-text p {
    font-size: clamp(14px, 1.5vw, 1.8rem);
    max-width: 800px;
  }

  .hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .robot-img {
    max-width: 700px;
  }
  .g-image {
    transform: translateY(clamp(-40px, -5vw, -80px));
    height: auto;
    max-height: none;
    width: 100%;
    object-fit: contain;
    position: relative;
  }
  .ecosystem-header h2 {
    font-size: 5rem;
  }
  .ecosystem-header p {
    font-size: clamp(14px, 1.5vw, 1.5rem);
  }

  .feature-item strong {
    font-size: clamp(14px, 1.5vw, 1.5rem);
  }

  .ecosystem-section {
    max-width: 2500px;
  }

  .category-pill {
    padding: 24px 19px;
    font-size: clamp(12px, 1.5vw, 1.8rem);
  }
  .circle-decoration {
    width: clamp(250px, 30vw, 35rem);
    height: clamp(250px, 30vw, 35rem);
  }
  .main-phone {
    width: auto;
  }
  .y-left {
    left: max(0rem, 11%);
    width: clamp(160px, 18vw, 250px);
  }
  .ui-title {
    font-size: 1.5rem;
  }
  .info strong {
    font-size: 1.2rem;
  }
  .info span {
    font-size: 1.2rem;
  }
  .y-right {
    right: max(0px, 10%);
    width: clamp(180px, 20vw, 320px);
  }
  .process-info p {
    font-size: 1.2rem;
  }
  .b-left {
    left: max(0px, 11%);
    width: clamp(160px, 18vw, 250px);
  }
  .b-right {
    right: max(0px, 12%);
    width: clamp(180px, 20vw, 320px);
  }
  .trust-header {
    max-width: inherit;
  }
  .trust-header h2 {
    font-size: clamp(32px, 5vw, 5rem);
    max-width: 1200px;
  }
  .trust-header p {
    font-size: clamp(14px, 1.5vw, 2rem);
  }

  .trust-grid {
    max-width: inherit;
  }
  .trust-card h4 {
    font-size: clamp(16px, 1.8vw, 1.8rem);
  }
  .trust-card p {
    font-size: clamp(12px, 1.4vw, 1.6rem);
  }

  .t-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
  .cta-container {
    max-width: 1600px;
  }
  .cta-title {
    font-size: clamp(24px, 4vw, 3rem);
  }
  .cta-button {
    padding: clamp(12px, 2vw, 22px) clamp(24px, 4vw, 32px);
    font-size: clamp(14px, 1.5vw, 1.5rem);
  }
  .cta-girl-img {
    height: auto;
  }
  .footer-container {
    max-width: inherit;
  }
  .footer-top {
    justify-content: space-around;
  }
  .footer-logo {
    height: clamp(40px, 5vw, 6rem);
  }
  .brand-desc {
    font-size: clamp(14px, 1.5vw, 1.6rem);
  }
  .footer-column h4 {
    font-size: clamp(16px, 1.8vw, 1.6rem);
  }
  .footer-column ul li a {
    font-size: clamp(14px, 1.5vw, 1.6rem);
  }
  .copyright {
    font-size: clamp(14px, 1.5vw, 1.6rem);
  }
  .social-links a {
    font-size: clamp(14px, 1.5vw, 1.5rem);
  }

  /* ai learning section */
  .process-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .btn-demo {
    display: block;
  }
  .btn-demo1 {
    display: none;
  }
}

/* MacBook Pro 13" / Standard Laptop (1280px - 1439px) */
@media (max-width: 1439px) {
  .product-card {
    padding: 50px;
    gap: 40px;
  }
  .card-title {
    font-size: 1.5rem;
  }
  .trust-header h2 {
    font-size: 42px;
  }
}

/* Tablet Landscape / Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .card-title {
    font-size: 38px;
  }

  .trust-header h2 {
    font-size: 38px;
  }

  .circle-decoration {
    width: 280px;
    height: 280px;
  }

  .main-phone {
    width: 200px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .navbar {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99999;
  }

  .nav-links.show {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 1.5rem;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .blue-card-layout {
    flex-direction: column-reverse;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }

  .trust-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .cta-image-wrapper {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links-grid {
    gap: 40px;
    margin: 0 2rem;
  }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 16px;
  }

  .ecosystem-header h2 {
    font-size: 32px;
  }

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

  .product-card {
    padding: 30px;
  }

  .circle-decoration {
    width: 220px;
    height: 220px;
  }

  .main-phone {
    width: 160px;
  }

  .float-ui {
    padding: 10px;
  }

  .y-left,
  .b-left {
    left: -10px;
    width: 140px;
  }

  .y-right,
  .b-right {
    right: -10px;
    width: 160px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
    z-index: 999999;
  }

  .dropdown-content a {
    color: #1e1d1d !important;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* Mobile Portrait (up to 479px) */
@media (max-width: 479px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .btn-demo {
    display: none;
  }
  .btn-demo1 {
    display: block;
  }

  .product-card {
    padding: 20px;
  }

  .card-title {
    font-size: 28px;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .circle-decoration {
    width: 180px;
    height: 180px;
  }

  .main-phone {
    width: 140px;
  }

  .float-ui {
    display: none;
  }

  .cta-banner {
    padding: 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

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

  .social-links {
    justify-content: center;
  }
}

/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mockup container */
.mobile-mockup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 30px; /* 👈 more clean left space */
}
/* Mockup container */
.mobile-mockup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 30px;
}

/* Mockup container */
.mobile-mockup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 30px;
}

/* Image styling */
.labelling-mockup-img {
  width: 180px; /* 🔥 slightly bigger */
  height: auto;
  border-radius: 0; /* ❌ remove rounded corners */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

/* Desktop */
@media (min-width: 1024px) {
  .labelling-mockup-img {
    width: 210px !important; /* balanced size */
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .labelling-mockup-img {
    width: 160px;
  }
}

/* Desktop only */
@media (min-width: 1024px) {
  .mobile-mockup {
    padding-left: 180px; /* 🔥 increase space from left */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-mockup {
    justify-content: center;
    padding-left: 0;
  }

  .labelling-mockup-img {
    width: 130px;
  }
}

/* subtle hover */
.labelling-mockup-img:hover {
  transform: translateY(-2px);
}

/* remove any unwanted spacing */
* {
  box-sizing: border-box;
}

.ailearning-banner {
  padding: 60px 0;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Layout */
.cards-wrapper {
  display: flex;
  gap: 20px;
}

/* Card */
.visual-card {
  flex: 1;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;

  /* 🔥 ADD THIS */
  position: relative;
}

/* Image */
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 🔥 FORCE CLIP */
  border-radius: inherit;
}
.cards-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: row; /* default for desktop + tablet */
}

/* Mobile only */
@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
  }

  .visual-card {
    height: 220px;
  }
}
.roadmap-image {
  width: 100%;
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical (if height given) */
  margin-top: 40px;
}

/* Image */
.roadmap-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* 🔥 ensures center even without flex */
}

/* Desktop size control */
@media (min-width: 1024px) {
  .roadmap-image img {
    width: 80%; /* smaller on desktop */
    max-width: 1100px; /* optional */
  }
}
