/* Landing Page Styles */

:root {
  --primary-color: #FFD000; /* Vibrant Yellow */
  --secondary-color: #000000; /* Deep Black */
  --text-color: #1a1a1a;
  --light-bg: #FFFFFF;
  --gray-bg: #F9F9F9;
  --border-radius: 12px;
  --font-main: 'Outfit', sans-serif;
  --transition-speed: 0.3s;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
  
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-size: 1.1rem; color: #444; }

a { text-decoration: none; color: inherit; transition: var(--transition-speed); }
ul { list-style: none; }

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.section-padding {
  padding: 80px 0;
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary-color);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width var(--transition-speed);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  padding: 160px 0 100px;
  text-align: center;
  border-bottom-left-radius: 50px; /* Subtle curve for modern feel */
  border-bottom-right-radius: 50px;
}

.hero h1 {
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 800;
}

.hero p {
  color: #333;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-video-placeholder {
  max-width: 900px;
  height: 500px;
  background-color: #000;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  overflow: hidden;
}

.hero-video-placeholder::before {
  content: '▶';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.8;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-video-placeholder:hover::before {
  transform: scale(1.1);
}

/* Stats Section */
.stats-section {
  transform: translateY(-50px);
  position: relative;
  z-index: 10;
  margin-bottom: -50px; /* Pull the next section up to cover the gap */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border: 3px solid var(--secondary-color);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-10px);
  background-color: #000;
}

.stat-card:hover h3, .stat-card:hover p {
  color: var(--primary-color);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.stat-card p {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0;
  color: var(--secondary-color);
}

/* Features Section */
.features {
  background-color: var(--light-bg); /* Changed to White to alternate sections */
  padding-top: 100px; /* Extra padding for the overlapping stats */
}


/* Features Slider */
.features-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
  padding: 20px 0; /* Space for shadow/hover effects */
}

.features-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.feature-card {
  min-width: calc(33.333% - 20px); /* 3 cards visible by default */
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  border: 2px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .feature-card {
    min-width: calc(50% - 15px);
  }
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .feature-card {
    min-width: 100%;
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(255, 208, 0, 0.15);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.slider-btn {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}


.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.feature-card ul {
  margin-top: 20px;
}

.feature-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  color: #555;
}

.feature-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 800;
}

/* See It In Action */
.showcase {
  background-color: var(--light-bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 screenshots */
  gap: 30px;
}

.showcase-card {
  background: var(--primary-color);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 2px solid var(--secondary-color);
  text-align: center;
}

.showcase-img {
  width: 100%;
  height: 200px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.showcase-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Why Choose Us */
.why-us {
  background-color: var(--primary-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid var(--secondary-color);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

/* Contact Section */
.contact {
  background-color: var(--light-bg);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--primary-color);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 4px solid var(--secondary-color);
  box-shadow: 15px 15px 0px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}


/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 60px 0 20px;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-socials {
  margin-bottom: 30px;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid, .features-grid, .why-grid, .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .stats-grid, .features-grid, .why-grid, .showcase-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; } /* Simplified mobile nav for now */
  .hero-video-placeholder { height: 300px; }
}
