/* Base styling */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  background-color: #f8f9fa;
  color: #333;
}

/* Logo animation */
.logo-animate {
  max-height: 60px;
  animation: logoBounce 2s infinite ease-in-out;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #3b82f6 0%, #1e3a8a 100%);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.animated-svg {
  animation: floatImage 6s ease-in-out infinite;
}

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

/* Software box */
.software-box {
  background-color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.software-box i {
  font-size: 36px;
  color: #3b82f6;
}

.software-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Section headings */
h2 {
  font-weight: 600;
}

/* Footer */
footer {
  background: #fff;
  font-size: 14px;
}

/* Form controls */
input.form-control, textarea.form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
}

input.form-control:focus, textarea.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59,130,246,.25);
}
