body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f5f7fa;
  color: #333333;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #ffffff;
  border-bottom: 2px solid #003366;
  flex-wrap: wrap;
}

.left {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 15px;
}

.company-info h1 {
  color: #003366;
  font-size: 24px;
  margin: 0;
}

.tagline {
  font-style: italic;
  margin-top: 4px;
  font-size: 14px;
  color: #333333;
}

.cin {
  font-size: 13px;
  color: gray;
}

.right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.enquiry {
  color: #ff6600;
  font-weight: bold;
  font-size: 18px;
}

.contact-info p {
  margin: 0;
  font-size: 14px;
  color: #003366;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions .btn {
  padding: 6px 14px;
  background: #ffffff;
  color: #ff6600;
  border: 2px solid #ff6600;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.actions .btn:hover {
  background: #ff6600;
  color: white;
}

/* Navigation bar */
/* Navigation bar */
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #003366;
  padding: 10px 0;
  gap: 10px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
  font-size: 14px;
  white-space: nowrap;
}

/* Hover and active effect */
.navbar a:hover,
.navbar a.active {
  background-color: #ff6600;
  border-radius: 4px;
}

/* Responsive fix for smaller devices like WebView */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .navbar a {
    width: 90%;
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }
}

.track-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.track-section h2 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 15px;
}

.track-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.track-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.track-form button {
  background-color: #ff6600;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.track-form button:hover {
  background-color: #e65c00;
}

.track-result {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

.contact-page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact-page h2 {
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.contact-details {
  flex: 1;
  min-width: 280px;
  color: #333;
}

.contact-details h3 {
  color: #ff6600;
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.contact-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e65c00;
}

.form-message {
  margin-top: 10px;
  font-weight: bold;
  font-size: 14px;
}

.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.announcement-bar {
  background-color: transparent;
  color: #121111;
  overflow: hidden;
  white-space: nowrap;
  /* border-top: 2px solid #ff6600; */
  border-bottom: 2px solid #003366;
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



.footer-minimal {
  background-color: #353536c4;
  color: #ffffff;
  text-align: center;
  padding: 5px 5px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  /* border-top: 2px solid #ff6600; */
}

.about-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

/* .about-section h2 {
  text-align: center;
  font-size: 28px;
  color: #003366;
  margin-bottom: 20px;
} */

.about-section p {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: justify;
}

/* ================= ABOUT US PAGE ================= */

.about-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  margin-top: 15px;
  color: #003366;
}

.about-section h3 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ff6600;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 15px;
}

.about-section ul {
  margin-left: 20px;
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Optional: Responsive padding */
@media (max-width: 768px) {
  .about-section {
    padding: 20px 15px;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-section h3 {
    font-size: 20px;
  }

  .about-section p {
    font-size: 15px;
  }
}

/* ========== Services Page ========== */
.services-page {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
}

.services-page h2 {
  text-align: center;
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
}

.service-block {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-img {
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-text {
  width: 55%;
}

.service-text h3 {
  font-size: 24px;
  color: #ff6600;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  text-align: justify;
}

@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
  }

  .service-block.reverse {
    flex-direction: column;
  }

  .service-img, .service-text {
    width: 100%;
  }
}
