/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* General styles */
body {
  /* padding-top: 70px; */
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('./assets/images/bg-01.jpg') no-repeat center center/cover;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); */
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 2;
}
.h-100{
   height: 100vh;
}
.content-nw {
  position: relative;
  z-index: 3;
}
/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 12px;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Button Hover Animation */
.btn {
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Form Styles */
form .form-control,
form .form-select,
form textarea {
  border-radius: 8px;
  box-shadow: none;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Optional: Animate fade-in for main sections (extra polish) */
section {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}