body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;

}
header{
 top: 0;
     /* left: 0; */
  height: 120px;
  width: 100%;
  position: fixed;
  z-index: 1;
  background-color: #ffffff;
}
.logo-container img {
  height: 150px;
  margin-right: 15px;
}
.logo-container h1 {
  font-size: 70px;
  color: #2f3fa0;
  margin: 0;
}

.passenger-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f8f8;
}

/* Orange box heading style */
.title-box {
  display: inline-block;
  background-color: #e86c00;       /* orange shade */
  color: white;
  font-size: 28px;
  font-weight: 600;
  padding: 12px 60px;
  border-radius: 3px;
  box-shadow: 0 5px 0 #b04d00;     /* 3D bottom shadow */
  margin-top: 100px;
}

/* Paragraph styling */
.passenger-section p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: justify;
  margin-top:50px
}

/* Gallery section */
.elevator-gallery {
   display:grid;
   grid-template-columns: repeat(4, 1fr);
   gap:20px;
   margin-top:30px;
   justify-content: center;
  
}

.elevator-gallery img {
  width: 230px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.elevator-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.elevator-gallery img:nth-child(9) {
  width: 1000px;
  height:340px;
  margin-top:20px  ;  
  
  grid-column: span 4
    
}
/* Responsive */
@media (max-width: 768px) {
  .elevator-gallery img {
    width: 160px;
    height: 220px;
  }

  .title-box {
    font-size: 22px;
    padding: 10px 40px;
  }

  .passenger-section p {
    font-size: 16px;
  }
}



.passenger-details {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #333;
}

.passenger-details h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0a2a43;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.passenger-details p {
  font-size: 17px;
  text-align: center;
  margin-bottom: 35px;
  color: #444;
}

.content-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.content-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #005fa3;
  margin-bottom: 15px;
}

.content-box ul {
  list-style: none;
  padding-left: 0;
}

.content-box ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  font-size: 16px;
}

.content-box ul li:last-child {
  border-bottom: none;
}

.content-box ul li strong {
  color: #002b5b;
}



.elevator-gallery {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: moveSlider 25s linear infinite;
}

.elevator-gallery img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* Auto move effect (continuous scrolling) */
@keyframes moveSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




