/* Global Body Styles */
body {
  background: linear-gradient(135deg, #0d1b3f, #172d85);
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Logo */
.logo-img {
  height: 85px;
  margin-right: 10px;
}

/* Hero Section */
.hero-section {
  padding: 100px 20px 60px;
  text-align: center;
}

.hero-heading {
  font-size: 2.8rem;
  font-weight: 700;
}

.highlight-text {
  background: linear-gradient(to right, #6a82fb, #fc5c7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  max-width: 600px;
  margin: 20px auto 40px;
  font-size: 1.1rem;
  color: #cdd4f2;
}

.btn-gradient {
  background: linear-gradient(to right, #4facfe, #6a82fb);
  border: none;
  color: white;
}

.btn-black {
  background-color: black;
  color: white;
}

/* Section Styles */
.section-light {
  background-color: #f8f9fa;
  color: #000;
  padding: 60px 20px;
}

.section-dark {
  background-color: #1a1a2e;
  color: white;
  padding: 60px 20px;
}

/* Feature Cards */
.feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(50px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 2rem;
  color: #4facfe;
}

/* Footer */
footer {
  background-color: #1a1a2e;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #555;
}

.btn-gradient {
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
  border: none;
}

.btn-black {
  background: #333;
  color: white;
}

