* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fafbff;
  color: #333;
}
/* ////////////////////////// */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0a2540;
}

.signup-btn {
  background: linear-gradient(90deg, #00bcd4, #2196f3);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.signup-btn:hover {
  opacity: 0.9;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 45px 20px 45px
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #00bcd4, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 24px;
  color: #444;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Right Image */
.hero-image img {
  /* max-width: 450px; */
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-image img {
    max-width: 80%;
  }
}


/* /////////////////////////////// */

.gradient-text {
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature-hero {
  text-align: center;
  padding: 3rem 1rem;
}

.feature-hero h1 {
  font-size: 3rem;
  background: linear-gradient(240deg, #193cc3, #0a0a0abd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-hero p {
  font-size: 1.2rem;
  color: #333;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.feature-card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0px 0px 14px 12px #ff980030;
  cursor: pointer;
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.container {
  background: linear-gradient(135deg, #cff4ff, #ffddbe);
  display: flex;
  width: 100%;
  overflow: hidden;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-section {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 20px;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.sub-head-form {
  text-align: center;
  color: #727272;
  margin-bottom: 15px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top:20px;
}

.row {
  display: flex;
  gap: 15px;
}

.col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: #0072ff;
  box-shadow: 0 0 6px rgba(0, 114, 255, 0.3);
}

/* Error message */
.error {
  color: #aa0000;
  font-size: 0.8rem;
  display: none;
  margin-top: 3px;
}

/* Button */
#submitBtn {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  cursor: not-allowed;
  opacity: 0.6;
  transition: 0.3s;
}

#submitBtn.enabled {
  cursor: pointer;
  opacity: 1;
}

button {
  margin-top:10px;
  padding: 14px;
  background: linear-gradient(90deg, #00bcd4, #2196f3);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #00bcd4;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .image-section {
    display: none;
  }
  .row {
    flex-direction: column;
  }
}


/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.6s; }


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✨ Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.redemo {
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.redemo:hover {
  transform: scale(1.05);
}

.redemo .click-gif {
  width: 45px;
  height: 40px;
  pointer-events: none; /* so gif doesn’t block button click */
}

/* brand section css */

.our-brands { 
  text-align: center;
  padding: 50px 20px;
  background: rgba(236 239 240)
}

.our-brands  h1 {
  font-size: 3rem;
  /* background: linear-gradient(90deg, #8a2be2, #ff6f61); */
  background: linear-gradient(240deg, #193cc3, #0a0a0abd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-brands  p {
  font-size: 1.2rem;
  color: #333;
}


.brand-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 30px 0px 30px 0px;
}

.brand-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

.brand-track img {
  width: 150px; 
  height: 80px; 
  object-fit: contain;
  transition: transform 0.3s ease;  /* only smooth hover zoom */
}

.brand-track img:hover {
  transform: scale(1.1);  /* zoom effect on hover */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* stats css */

.stats-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.stats-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-box {
  padding: 30px 20px;
  border-radius: 12px;
  color: #111;
  font-family: 'Inter', sans-serif;
  opacity: 0; /* start hidden */
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  line-height: 1.4;
}

/* Different box colors */
.box1 { background: #e3f2fd; }  /* light blue */
.box2 { background: #fce4ec; }  /* light pink */
.box3 { background: #e8f5e9; }  /* light green */
.box4 { background: #fff3e0; }  /* light orange */

/* Visible state */
.stat-box.show {
  opacity: 1;
  transform: translateY(0);
}