/* File: style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Sora:wght@600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #F5F7FA;
  color: #1A1A1A;
  line-height: 1.6;
}

h1, h2, h3, .hero-title {
  font-family: 'Sora', sans-serif;
}

a {
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #00CFFF;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00CFFF, #7F56D9);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 207, 255, 0.3);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 207, 255, 0.5);
}

/* Light section text */
.text-gray-300 {
  color: #5F6368;
}

.text-white {
  color: #1A1A1A;
}

.bg-cyan-500 {
  background-color: #00CFFF;
}

.bg-blue-500 {
  background-color: #7F56D9;
}

.bg-purple-500 {
  background-color: #C084FC;
}

.bg-pink-500 {
  background-color: #FF85B3;
}

.bg-yellow-400 {
  background-color: #FFD93D;
}

.rounded-full {
  border-radius: 50%;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: bold;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.shadow-lg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hover\:text-cyan-300:hover {
  color: #00CFFF;
}
