
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll gap */
}
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002b5b;
  color: #fff;
  padding: 1rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.logo span {
  color: #00bcd4;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
nav a, button {
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE SIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 250px;
  height: 100%;
  background: #002b5b;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.4s ease;
  z-index: 999;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.1rem;
}
.close-menu {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  overflow: hidden;
  margin-top: 70px;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
}
.slide.active {
  opacity: 1;
}
.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */
section {
  padding: 4rem 2rem;
  text-align: center;
}
.products .product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.product-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}

/* CONTACT */
.contact form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input, .contact textarea {
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contact .btn {
  background: #002b5b;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #002b5b;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .slider {
    height: calc(100vh - 60px);
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* SLIDER FIX */
.slider {
  position: relative;
  width: 100vw; /* Use full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: calc(100vh - 70px);
  overflow: hidden;
  margin-top: 70px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .slider {
    width: 100vw;
    height: auto;
    margin-top: 60px;
  }

  .slide img {
    width: 100%;
    height: auto; /* Let it resize proportionally */
    object-fit: contain;
  }
}
/* ===== VISION MISSION VALUES SECTION ===== */
.vmv-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.vmv-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.vmv-card {
  background: #fff;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: justify; /* ✅ Even text edges */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.vmv-card h3 {
  color: #002b5b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.vmv-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #00bcd4;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.vmv-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .vmv-container {
    flex-direction: column;
    align-items: center;
  }

  .vmv-card {
    width: 100%;
    max-width: 100%;
  }
}
 