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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1b3a52;
  scroll-behavior: smooth;
  line-height: 1.6;
  background: linear-gradient(
    135deg,
    #e8f5f7 0%,
    #a8d5e2 30%,
    #6bb5c8 70%,
    #5ba5b8 100%
  );
  background-attachment: fixed;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.3),
      transparent 50%
    ),
    radial-gradient(circle at 20% 80%, rgba(91, 165, 184, 0.2), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.logo {
  width: 500px;
  max-width: 90%;
  height: auto;
  margin: 0 auto 3rem;
  animation: fadeIn 1.5s ease-in-out, float 3s ease-in-out infinite;
  mix-blend-mode: multiply;
}

.hero p {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
  color: #1b3a52;
  animation: fadeUp 1.5s ease-in-out 0.4s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  line-height: 1.2;
}

.cta {
  display: inline-block;
  background: linear-gradient(90deg, #1b3a52, #2c4a5e);
  padding: 18px 50px;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: fadeUp 1.5s ease-in-out 0.6s both;
  box-shadow: 0 10px 30px rgba(27, 58, 82, 0.3);
}

.cta:hover {
  box-shadow: 0 15px 40px rgba(27, 58, 82, 0.5);
  transform: translateY(-3px);
  background: linear-gradient(90deg, #2c4a5e, #3d5b6f);
}

.cta:active {
  transform: translateY(-1px);
}

/* Contact Info */
.contact-info {
  margin-top: 3rem;
  animation: fadeUp 1.5s ease-in-out 0.8s both;
}

.contact-info a {
  color: #1b3a52;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-info a:hover {
  color: #2c4a5e;
}

/* Footer */
footer {
  /* position: absolute; Removed absolute positioning for normal flow */
  /* bottom: 0; */
  width: 100%;
  text-align: center;
  padding: 2rem;
  color: #5a7080;
  font-size: 0.9rem;
  margin-top: 2rem; /* Added margin */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .logo {
    width: 250px;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta {
    padding: 15px 40px;
    font-size: 1.1rem;
  }

  .contact-info {
    margin-top: 1.5rem;
  }

  footer {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    text-align: center;
  }
}
/* Services Section */
.services {
  padding: 5rem 2rem;
}

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

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

.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c4a5e;
  border-bottom: 2px solid #a8d5e2;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(27, 58, 82, 0.05);
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-item:nth-child(4) {
  animation-delay: 0.4s;
}
.service-item:nth-child(5) {
  animation-delay: 0.5s;
}
.service-item:nth-child(6) {
  animation-delay: 0.6s;
}

.service-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(27, 58, 82, 0.15);
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
}

.service-item h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1b3a52;
  font-weight: 700;
}

.service-item p {
  font-size: 1rem;
  color: #5a7080;
  line-height: 1.6;
}
