/* style.css */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --primary: #0ea5e9;
  --secondary: #14b8a6;
}

body {
  font-family: "Inter", sans-serif;
}

.heading-font {
  font-family: "Space Grotesk", sans-serif;
}

/* Hero Background */
.hero-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #134e4a 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(14, 165, 233, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(20, 184, 166, 0.15) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Floating Animation */
.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Navbar Link Effects */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Button Hover Effects */
button {
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

/* Tailwind Script Configuration */
@layer utilities {
  .hero-bg {
    min-height: 100vh;
  }
}

/* Services Section Styles */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background-color: rgba(15, 23, 42, 0.8);
  border-color: rgb(14 165 233 / 0.3);
}

.service-card h3 {
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: rgb(224 242 254);
}

/* About Us Section */
#about .bg-slate-900 {
  position: relative;
}

#about .rounded-[3rem] {
  transition: transform 0.6s ease;
}

#about .rounded-[3rem]:hover {
  transform: scale(1.02);
}

/* Stats numbers animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about .text-3xl {
  animation: countUp 1s ease forwards;
}

/* Contact Us Section */
#contact input,
#contact select,
#contact textarea {
  transition: all 0.3s ease;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: rgb(14 165 233);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

#contact-form button {
  position: relative;
  overflow: hidden;
}

#contact-form button:hover {
  transform: translateY(-3px);
}
/* Footer Styles */
footer a {
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: rgb(14 165 233);
}

footer .bg-slate-900:hover {
  background-color: rgb(15 23 42);
}