html {
  scroll-behavior: smooth;
}

/* =========================
   Global / Shared Styles
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

 h1, h2, h3, h4 {
  margin: 0 0 10px;
}

.hero-content h1, .services h2, .cta h2 {
    font-size: 48px;
}

.hero-content h3 {
    font-size: 25px;
}

.hero-content p, .services p, .cta p {
    font-size: 20px;
	max-width: 700px;
    margin: 20px auto;
}

/* =========================
   Navbar
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: auto;
  margin: 0 auto;
  padding: 3px 40px;
  background: #fff;
}

}

.navbar .logo {
  font-weight: bold;
  color: #0066cc;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  padding: 5px 10px;
}

.nav-links .active {
  border-bottom: 2px solid #0066cc;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #0066cc;
  font-size: 20px;
  gap: 10px; /* space between icon and text */
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Common button style */
.btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover animation (same as About/Location) */
.btn:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* =========================
   HOME PAGE STYLES
========================= */
.hero {
  position: relative;
  background: url("your-image.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Add a dark overlay on top of the image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero .btn-group {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0066cc;
  color: #fff;
  border-radius: 5px;
  margin: 5px;
}

.btn.outline {
  background: transparent;
  border: 2px solid #fff;
}

.services, .content {
  padding: 60px 10%;
  text-align: center;
}

.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  border-radius: 8px;
}

.cta {
  background: #0066cc;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

/* =========================
   ABOUT PAGE STYLES
========================= */
.legacy {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  align-items: center;
}

.legacy-text {
  flex: 1;
}

.legacy-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.legacy-image {
  flex: 1;
}

.legacy-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.values {
  text-align: center;
  background: #f9f9f9;
  padding: 60px 20px;
}

.values h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.values p {
  color: #555;
  margin-bottom: 40px;
}

.value-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.value {
  flex: 1 1 250px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 15px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.value:hover {
  transform: translateY(-5px);
}

.value h3 {
  margin-bottom: 10px;
}

/* =========================
   LOCATION PAGE STYLES
========================= */
.store-location {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: auto;
  margin: auto auto;
  padding: 20px;
}

.store-location .map {
  flex: 1 1 500px;
}

.store-location .contact-info {
  flex: 1 1 300px;
}

.store-location h2 {
  margin-bottom: 15px;
  color: #222;
}

/* Reach Us section */
.reach {
  background: #f0f6ff;
  padding: 50px 20px;
  text-align: center;
}

.reach h2 {
  margin-bottom: 20px;
}

.reach ul {
  list-style: none;
  padding: 0;
}

.reach li {
  margin: 10px 0;
  font-size: 16px;
}

/* Features section */
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 50px auto;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 15px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  margin: 10px 0;
}

/* Responsive (Location) */
@media (max-width: 768px) {
  .store-location {
    flex-direction: column;
  }
  .features {
    flex-direction: column;
  }
}


/* Footer */
footer {
  background: #111827;
  color: #ddd;
  padding: 40px 20px 20px;
}

.footer-content {
  max-width: auto;
  margin: auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ddd;
  display: block;
  margin: 5px 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .legacy {
    flex-direction: column;
  }
  .store-location {
    flex-direction: column;
  }
  .card-container {
    flex-direction: column;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
