/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #dbd6b8, #f5f7fa, #464749, #dbe4f0);
  background-size: 400% 400%;
  text-align: center;
  color: #111;
}


/* Navigation Bar */
nav {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}
nav a:hover {
  color: #007BFF;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/plated-trolley.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* dark overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  margin: 1rem 0;
}

/* Call to Action Button */
.cta {
  background: #007bff;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,123,255,0.4);
  transition: background 0.3s;
}
.cta:hover {
  background: #0056b3;
}

/* Section Layout */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}
.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Glass Panel Look */
.glass {
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 2rem;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

/* Service Cards */
.service-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.card {
  background: rgba(255,255,255,0.3);
  padding: 1.5rem;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.s ease;
}
.card:hover {
  transform: scale(1.03);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
th, td {
  padding: 1rem;
  border: 1px solid #ccc;
  background: rgba(255,255,255,0.85);
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  color: #333;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}