/* style.css */

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.7;
}

/* Navbar */
.custom-navbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

.nav-link {
  color: #fff !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* Hero */
.hero {
  background: linear-gradient(
      rgba(13, 27, 42, 0.85),
      rgba(13, 27, 42, 0.85)
    ),
    url('bg.jpg') center/cover no-repeat;

  min-height: 100vh;

  display: flex;
  align-items: center;

  color: white;

  padding-top: 100px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  margin-top: 25px;
  font-size: 1.1rem;
}

.hero-img {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Buttons */
.btn-main {
  background: #0d6efd;
  border: none;
  color: white;
}

.btn-main:hover {
  background: #0b5ed7;
  color: white;
}

/* Sections */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.section-subtitle {
  color: #666;
}

/* Service Cards */
.service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;

  text-align: center;

  transition: 0.3s;

  height: 100%;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #0d1b2a;
  color: #ddd;
  padding: 35px 0;
}

/* Responsive */
@media (max-width: 768px) {

  .hero {
    text-align: center;
  }

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

  .hero-img {
    margin-top: 40px;
  }

}