html{
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: Arial, sans-serif;
  background-color: #f8f9fb;
  color: #0a183d;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #0a183d;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.navbar a:hover {
  color: red;
}

.company-name {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.red {
  color: red;
}

.white {
  color: white;
}

/* Intro */
.intro {
  text-align: center;
  padding: 40px 20px;
}
.carousel-section {
  text-align: center;
  margin: 60px auto 120px;
  width: 100%;
}

.carousel-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #0a183d;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
}

.image-box {
  width: 30%;
  min-width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: fit;
}

.image-box:hover {
  transform: scale(1.05);
}

/* Modal Zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Address */
.address {
  text-align: center;
  margin: 40px 0;
  font-size: larger;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color:#0a183d;
  color: white;
  text-align: center;
  padding: 10px 0; /* reduced padding */
  margin: 0;
  font-size: 0.9rem;
}
