body {
  scroll-behavior: smooth;
}

.section {
  padding: 80px 0;
}

/* HERO with background image */
.hero {
  position: relative;
  background: url(background.avif) center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 140px 20px;
  z-index: 1;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75); /* dark blue overlay */
  z-index: -1;
}

/* Text styling */
.hero h1 {
  font-weight: 600;
  font-size: 2.5rem;
}

.hero p {
  font-size: 16px;
}

.card {
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
body {
  font-family: 'Poppins', sans-serif;
}

#history p {
  line-height: 1.7;
  font-size: 15px;
}
/* Why Choose Us - light blue background */
.why-section {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
}

/* Services - white with blue accents */
.services-section {
  background-color: #ffffff;
}

/* Section headings */
.section h2 {
  color: #0d3b66;
  font-weight: 600;
}

/* Boxes same as why-section theme */
.info-box {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-section {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
}
/* Navbar button container */
.nav-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons - same as navbar (dark) */
.nav-btn {
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background-color: #212529;   /* same as Bootstrap dark navbar */
  color: white;                /* text white */
  border: 1px solid #ffffff;
  transition: 0.3s;
}

/* Hover effect */
.nav-btn:hover {
  background-color: white;
  color: #212529;
}

section {
  scroll-margin-top: 80px;
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
  background-color: white;
}