body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121212;
  padding: 20px 40px;
}

.navbar .logo {
  color: #4fc3f7;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.navbar nav a:hover {
  color: #4fc3f7;
}
/* === VIDEO BACKGROUND === */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======= HERO SECTION ======= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 12px;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px #000;
}

.tagline {
  font-size: 3rem;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.5rem;
  margin: 5px 0;
}

/* SUMMARY BOXES */
.summary-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #1a1a1a;
  padding: 40px 20px;
}

.summary {
  background: #222;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.1);
}

.summary h2 {
  color: #4fc3f7;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: #121212;
  text-align: center;
  padding: 20px;
  color: #888;
}

.social-icons img {
  width: 24px;
  margin: 0 8px;
  filter: brightness(0.8);
}
/* Background image for About section */
.about-bg {
  background-image: url('/images/back2.jpg');

}

/* Reuse existing .bg-section and .overlay styles */
.bg-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
  color: #e0e0e0;
}

.overlay h2 {
  color: #4fc3f7;
  font-size: 2rem;
  margin-bottom: 20px;
}

.overlay p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}
/* Background for services */
.services-bg {
  background-image: url('/images/back3.jpg');
}

/* Card layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Card styles */
.card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.1);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.4);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  color: #4fc3f7;
  margin-top: 10px;
  font-size: 1.1rem;
}
/* Background image for Vision */
.vision-bg {
  background-image: url('/images/back10.jpg');
}

/* Vision & Mission Container */
.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.vision-box, .mission-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.15);
}

.vision-box h3, .mission-box h3 {
  color: #4fc3f7;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.vision-box p, .mission-box p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive for smaller devices */
@media (min-width: 768px) {
  .vision-mission {
    flex-direction: row;
  }
}
/* Background for Gallery */
.gallery-bg {
  background-image: url('/images/back6.jpg');
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Product Card Styling */
.product-card {
  background: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.1);
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.4);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
/* Background for Login/Signup */
.login-bg {
  background-image: url('/images/back.jpg');
}

/* Centered Box */
.center-box {
  max-width: 400px;
  margin: auto;
  background-color: rgba(30, 30, 30, 0.95);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
}

/* Auth Forms */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-form label {
  color: #ccc;
  font-size: 0.95rem;
}

.auth-form input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
}

.auth-form input:focus {
  outline: 2px solid #4fc3f7;
}

.btn {
  background-color: #4fc3f7;
  color: #000;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background-color: #03a9f4;
}

.auth-link {
  margin-top: 10px;
  color: #aaa;
  text-align: center;
}

.auth-link a {
  color: #4fc3f7;
  text-decoration: none;
}
