


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #0d1117;
  color: #c9d1d9;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  background-color: #161b22;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #30363d;
}

header h1 {
  color: #58a6ff;
  font-size: 2rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #8b949e;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #58a6ff;
}

/* Sections */
section {
  padding: 40px 0;
  border-bottom: 1px solid #30363d;
}

section h2 {
  color: #58a6ff;
  margin-bottom: 10px;
}

section p,
section ul {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Services List */
section ul {
  padding: 0;
  list-style: none;
}

section ul li {
  margin: 10px 0;
}

/* Consultation Form */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea,
form button {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #21262d;
  color: #c9d1d9;
  border: 1px solid #30363d;
  border-radius: 4px;
}

form button {
  background-color: #238636;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #2ea043;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  border-top: 2px solid #30363d;
  color: #8b949e;
  font-size: 0.9rem;
}
/* Typography Enhancements */
body, h1, h2, h3, p, a {
  font-family: 'JetBrains Mono', 'Rajdhani', monospace;
}

/* Hero Section Styling */
.hero-content {
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.animated-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7b72;
  animation: fadeInUp 1s ease-in-out;
}

.tagline {
  font-size: 1.2rem;
  color: #8b949e;
  margin: 20px 0 30px;
}

/* Call to Action Button */
.cta-button {
  background-color: #ff5555;
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #ff7b72;
  transform: scale(1.05);
}

.pulse {
  animation: pulse 2s infinite;
}

/* Section Wrapper Fade In */
.section-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 85, 85, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 85, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 85, 85, 0);
  }
}