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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #0a1428 0%, #1e3a5f 100%);
  min-height: 100vh;
}

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

/* Hero Section */
.hero {
  background: #031525;
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* CTA Button */
.cta {
  display: inline-block;
  background: linear-gradient(45deg, #06b6d4, #2563eb);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  position: relative;
  z-index: 1;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
  background: linear-gradient(45deg, #0891b2, #1d4ed8);
}

/* Sections */
.section {
  padding: 80px 0;
  background: white;
}

.section.dark {
  background: linear-gradient(135deg, #1e3a5f 0%, #334155 100%);
  color: white;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #2c3e50;
  position: relative;
}

.section.dark h2 {
  color: white;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #06b6d4, #2563eb);
  margin: 20px auto;
  border-radius: 2px;
}

.section p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.section ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.section li {
  background: rgba(255, 255, 255, 0.1);
  margin: 15px 0;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #06b6d4;
  transition: all 0.3s ease;
}

.section:not(.dark) li {
  background: #f8f9fa;
  border-left: 4px solid #06b6d4;
  color: #333;
}

.section li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section li strong {
  color: #06b6d4;
  font-size: 1.1rem;
}

.section.dark li strong {
  color: #06b6d4;
}

/* Footer */
footer {
  background: #031525;
  color: white;
  text-align: center;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.footer-text {
  text-align: left;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .section p {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section h2 {
    font-size: 1.8rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add subtle animations */
.section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays */
.section:nth-child(1) { animation-delay: 0.1s; }
.section:nth-child(2) { animation-delay: 0.2s; }
.section:nth-child(3) { animation-delay: 0.3s; }
.section:nth-child(4) { animation-delay: 0.4s; }
.section:nth-child(5) { animation-delay: 0.5s; }
.section:nth-child(6) { animation-delay: 0.6s; }

/* Center the contact section CTA button */
#contact {
  text-align: center;
}

/* Logo Styling */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.5));
  }
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-text {
    text-align: center;
  }
  
  .footer-logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .footer-logo {
    width: 40px;
    height: 40px;
  }
} 