body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fc;
  color: #212529;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 8px 24px -8px rgba(0,0,0,0.18);
  border-radius: 0 0 1rem 1rem;
}

.navbar-brand span {
  font-size: 1.3rem;
  font-weight: 600;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s ease;
}

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

.nav-link-custom {
  transition: color 0.2s, box-shadow 0.2s;
  position: relative;
}

.nav-link-custom:hover, .nav-link-custom:focus {
  color: #0d6efd;
  box-shadow: 0 2px 0 #0d6efd;
}

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

.hero-section h1 {
  font-weight: 700;
  color: #fff; /* ensure readability */
}

.hero-section p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

.btn-primary {
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(13,110,253,0.2);
  transition: all 0.2s ease-in-out;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,110,253,0.3);
}

.btn-danger {
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
  box-shadow: 0 3px 12px rgba(220,53,69,0.2);
  transition: all 0.2s ease-in-out;
}
.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220,53,69,0.3);
}

/* Features Section */
.features-section {
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  color: #0d6efd;
}

/* Services Section */
.services-section {
  background: #f9fafc;
}

.service-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h5 {
  font-weight: 600;
}

.service-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.service-card .btn {
  border-radius: 8px;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background-color: #0d47a1;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.1rem;
}

.cta-section .btn {
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-weight: 500;
}

/* Footer */
.footer-section {
  font-size: 0.9rem;
}

.footer-section .nav-link {
  color: #6c757d !important;
}

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

.text-shadow {
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.object-fit-cover {
  object-fit: cover;
}

/* Hero Section Carousel & Blur */
.hero-section .carousel,
.hero-section .carousel-inner {
  height: 100%;
  width: 100%;
  position: relative;
}

/* Smooth fade transition for slides */
.hero-section .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-section .carousel-item.active {
  opacity: 1;
  position: relative;
}

.hero-section .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: blur(1.5px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Keep text above blur */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Dark overlay for readability */
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(1.5px);
  z-index: 1;
}

/* Hide right-side buttons on mobile view */
@media (max-width: 991.98px) {
  #navbarRightButtons {
    display: none !important;
  }

  .navbar-collapse.show + #navbarRightButtons {
    display: flex !important;
    margin-top: 10px;
  }
}
