* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: #2563eb;
  padding: 10px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
}

.logo-text h1 {
  font-size: 20px;
  color: #1e40af;
  font-weight: bold;
}

.logo-text p {
  font-size: 14px;
  color: #3b82f6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #2563eb;
}

.cta-button {
  background: white;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-button:hover {
  background: gray;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #1d4ed8;
  text-decoration: none;
  font-size: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1d4ed8;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: #1e40af;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #1d4ed8;
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: #eff6ff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e40af;
}

.stat-label {
  color: #3b82f6;
  font-size: 1.1rem;
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease 0.3s forwards;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-element {
  position: absolute;
  background: #2563eb;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.floating-1 {
  top: -20px;
  right: -20px;
  animation: bounce 2s infinite;
}

.floating-2 {
  bottom: -20px;
  left: -20px;
  animation: pulse 2s infinite;
}

/* Contact Quick Section */
.contact-quick {
  background: #2563eb;
  padding: 60px 0;
  color: white;
}

.contact-quick h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact-quick p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #bfdbfe;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 20px;
  color: #bfdbfe;
}

.contact-card .btn-primary {
  background: white;
  color: #2563eb;
}

.contact-card .btn-primary:hover {
  background: #f8fafc;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.credential-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #2563eb;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.credential-badge .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 3rem;
  color: #1e40af;
  margin-bottom: 15px;
}

.about-text .subtitle {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.7;
}

.credentials {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 15px;
}

.credential .icon {
  color: #2563eb;
  font-size: 1.5rem;
}

.credential span {
  font-size: 1.1rem;
  color: #6b7280;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
}

.services h2 {
  font-size: 3rem;
  color: #1e40af;
  text-align: center;
  margin-bottom: 20px;
}

.services .subtitle {
  font-size: 1.5rem;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  background: #eff6ff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2563eb;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #2563eb;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 15px;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #6b7280;
}

.service-features .icon {
  color: #10b981;
  font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials h2 {
  font-size: 3rem;
  color: #1e40af;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials .subtitle {
  font-size: 1.5rem;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #eff6ff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #dbeafe;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
  color: #1e40af;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #3b82f6;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: white;
}

.contact h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact .subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #bfdbfe;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-item-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-item-text p {
  color: #bfdbfe;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #dbeafe;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: #1e40af;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: #bfdbfe;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #3b82f6;
  padding-top: 30px;
  text-align: center;
  color: #bfdbfe;
}

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.hidden {
  display: none;
}

.smooth-scroll {
  scroll-behavior: smooth;
}
