body {
  font-family: "Segoe UI", sans-serif;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);

  color: #fff;

  padding: 110px 0;

  position: relative;

  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  top: -250px;
  right: -200px;
  animation: blob 20s linear infinite;
}

.hero::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  bottom: -150px;
  left: -120px;
  animation: blob 20s linear infinite;
}

@keyframes blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 50px) scale(1.1);
  }
  66% {
    transform: translate(20px, -40px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
.hero .container {
  position: relative;

  z-index: 2;
}

.hero h1 {
  line-height: 1.15;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  opacity: 0.92;
}

.hero-card {
  position: relative;
  background: #fff;

  padding: 15px;

  border-radius: 20px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.section {
  padding: 70px 0;
}

.cta-btn {
  padding: 12px 30px;
  font-size: 18px;
}

.feature-box {
  padding: 25px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.trust-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trust-strip {
  z-index: 2;
  position: relative;
  margin-top: -50px;
}

.footer {
  background: #111;
  color: #aaa;
  padding: 30px 0;
}

/* .carousel-item img {
            transition: transform 0.4s ease;
        }

        .carousel-item:hover img {
            transform: scale(1.03);
        } */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.portfolio-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.4s;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
}
