/* 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 Section */
.hero {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: white;

  padding-top: 100px;

}

/* Background Image */
.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to right,
      rgba(13, 27, 42, 0.92),
      rgba(13, 27, 42, 0.65),
      rgba(13, 27, 42, 0.35)
    ),

    url('hero-image.jpg') center center / cover no-repeat;

  z-index: 1;

}

/* Hero Content */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Hero Text */
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero p {
  margin-top: 25px;
  font-size: 1.15rem;
  max-width: 650px;
}

/* Remove old image animation */
.hero-img {
  display: none;
}

/* 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;
}

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

  .hero {
    text-align: center;
    padding: 140px 0 100px;
  }

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

  .hero p {
    font-size: 1rem;
    margin: 20px auto 0;
  }

}