* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #0d6efd; /* Bootstrap primary color */
}

/* Header Section (Video) */
.header {
  width: 100%;
  color: rgb(225, 36, 36);
  background-color: aqua;
  text-align: center;
}

.header video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url('/images/hero.jpg') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.1rem;
}

/* Cards */
.card {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Sections */
.section-padding {
  padding: 70px 15px;
}

/* Contact */
#contact {
  background: #001f3f;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

.band {
  background-color: #0d6efd !important;
  color: white;
}

/* 🧠 Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
  }
  .header {
    height: auto;
  }
  .header video {
    height: auto;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .section-padding {
    padding: 50px 10px;
  }
}
