* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #3a36e0;
  --primary-dark: #2a27b8;
  --secondary: #ff6b6b;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --transition: all 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 5px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
    width: 70%;
}

.logo img {
  width: 11%;
}

.register-btn {
  display: inline-block;
  background-color: #3a36e0;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(58, 54, 224, 0.3);
  font-size: 0.9rem;
}

.register-btn:hover {
  background-color: #2a27b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 54, 224, 0.4);
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }

  .logo{
    width: 50%;
  }

  .logo img {
    width: 80px;
  }

  .register-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 100px;
  }

  .register-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3a36e0 0%, #6a67f4 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,181.3C960,181,1056,139,1152,138.7C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 500;
  opacity: 0.9;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Features Section */
.features {
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0px 110px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

.trust-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f9ff;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.trust-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.trust-section p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        gap: 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .trust-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .trust-section h3 {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.register-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(58, 54, 224, 0.4);
}

.register-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 54, 224, 0.6);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 25px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-button,
  .register-button {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-item {
    flex: 0 0 calc(50% - 20px);
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-logo {
    top: 20px;
    left: 20px;
  }

  .logo-img {
    height: 40px;
    font-size: 1.2rem;
  }
}
