/* CSS placeholder */
/* Services Cards */
.service-card {
  border-radius: 12px;
  background: #fff;
  overflow: hidden; /* important for zoom effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
  filter: grayscale(100%);
}

.hotline-number {
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hotline-number:hover {
  background-color: #000080; /* background highlight */
  color: #1B318C;           /* text color change */
  transform: scale(1.05);   /* subtle zoom effect */
}


.footer {
  background-color: #1B318C; /* Brand navy */
  color: #ffffff;
  font-size: 0.95rem;
}

.footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f0a500; /* highlight color on hover */
  text-decoration: none;
}

.footer h5 {
  color: #ffffff;
}

.social-icon {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}


.vmc-section {
  background-color: #f8f9fa;
}

.vmc-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.vmc-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vmc-icon {
  font-size: 2.5rem;
  color: #1B318C; /* Brand Navy */
  margin-bottom: 15px;
}

/* Typography */
.vmc-section h2 {
  color: #001f3f;
}

.vmc-section h5 {
  color: #001f3f;
}

/* Scroll animation */
.vmc-card.animate {
  opacity: 100;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .vmc-card { padding: 20px 15px; }
  .vmc-icon { font-size: 2rem; }
}

.about-us-section {
  background-color: #f8f9fa;
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.about-img {
  width: 100%;
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* Zoom on hover */
.about-img-wrapper:hover .about-img {
  transform: scale(1.1);
}

/* Fade-in animation on scroll */
.about-us-section .col-md-6 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.about-us-section .col-md-6.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
.about-us-section h2 {
  color: #1B318C; /* Brand navy */
}

.about-us-section p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

  <style>
    /* Preloader Full Screen */
    #preloader { ... }
    .preloader-logo { ... }
    @keyframes pulse { ... }
  </style>


<!-- CSS -->
<style>
.vision-section{ background:#0F1C4D; }
.vision-container .vision-box{
  background:#1B318C; color:#f0f0f0; transition:all 0.5s; cursor:pointer;
}
.vision-container .vision-box:hover{
  transform:translateY(-10px);
}
.vision-box h4{ color:#FFD700; }
.vision-box p, .vision-box ul li{ color:#f0f0f0; line-height:1.6; font-size:1rem; }
.vision-box{ opacity:0; transform:translateY(50px); transition:all 0.8s ease; }
.vision-box.animate{ opacity:1; transform:translateY(0); }
</style>


/* WhatsApp Chat Box */
#whatsapp-chat{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  max-width: 90%;
  background: #25D366;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
  z-index: 9999;
}

#whatsapp-chat .chat-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

#whatsapp-chat .chat-left{
  display: flex;
  align-items: center;
  cursor: pointer;
}

#whatsapp-chat .chat-left .whatsapp-icon{
  width: 40px;
  height: 40px;
  margin-right: 10px;
  animation: pulse 2s infinite;
}

#whatsapp-chat .chat-close{
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  margin-left: 10px;
}

/* Pulse Animation */
@keyframes pulse{
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Responsive */
@media(max-width:768px){
  #whatsapp-chat{
    width: 90%;
    bottom: 15px;
    right: 5%;
  }
}

<style>
  /* Full screen overlay */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1B318C; /* background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Logo with pulse animation */
  .preloader-logo {
    width: 150px; /* size of logo */
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.7;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
</style>

.about-page h1 {
  color: #1B318C;
}

.about-page p.lead {
  max-width: 700px;
  margin: 0 auto;
}

.about-page .shadow {
  transition: transform 0.4s ease;
}

.about-page .shadow:hover {
  transform: translateY(-5px);
}

body {
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.contact-page h1 {
  color: #1B318C;
}

.contact-page .shadow {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.map-container iframe {
  border-radius: 12px;
}


.hotline-number {
  cursor: pointer;
  transition: color 0.3s ease;
}
.hotline-number:hover {
  color: #FFD700;
}

.featured-routes {
  background-color: #f8f9fa;
}

.route-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.route-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.route-card p {
  font-size: 0.9rem;
  color: #555;
}

.route-map {
  max-height: 150px;
  object-fit: contain;
}


.promo-banner {
  background: linear-gradient(90deg, #ff6b6b, #ff9f43);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.promo-banner a.btn {
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.promo-banner a.btn:hover {
  background: #fff;
  color: #ff6b6b;
}



