.h6 {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin: 3px;
    font-family:"Lucida Console,Copperplate, Fantasy";
}

a:hover{
  text-decoration: none;
}

h1{
    font-family:"Lucida Console,Copperplate, Fantasy";
    color: white;
    line-height: 1.05;
}
 
h4{
    color: white;
}

p{
    color: white;   
}

.label_inlab{
     font-size: 20px; 
     height: 50px;
}


.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  .slide img {
    width: 100%;
    height: auto;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5%;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
    color: white;
  }

  .arrow.left {
    left: 0;
  }

  .arrow.right {
    right: 0;
  }

  @media (max-width: 600px) {
    .arrow {
      font-size: 18px;
    }
  }
  
  .call-now-button {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background-color: black;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease-in-out;
  }
  
  .call-now-button a {
    color: #fff;
    text-decoration: none;
    display: block;
  }
  
  .call-now-button:hover {
    background-color: #2980b9;
  }
  .modal {
    top: 100px!important;
  }
  /* Modal styles */
  .modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Phone container styles */
  .phone-container {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }
  
  .phone-icon {
    margin-right: 20px;
  }
  
  .phone-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
  }
  
  .phone-number {
    flex-grow: 1;
  }
  
  .phone-number a {
    text-decoration: none;
  }
  
  .phone-number h5 {
    color: #333;
    margin: 0;
    font-size: 18px;
  }
  
  .phone-container:last-child {
    margin-bottom: 0;
  }

/* Modern Carousel Styles */
.carousel {
  position: relative;
  margin: 2rem 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 500px; /* Fixed height for consistency */
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform .6s ease-in-out;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item.active {
  display: flex;
}

.bus-details {
  padding: 2rem;
  background: transparent;
  border-radius: 15px;
  margin: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.bus-details:hover {
  transform: translateY(-5px);
}

.bus-details h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: rgb(242, 193, 69);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bus-details p {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.bus-details .badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgb(242, 193, 69);
  color: #000;
  border: none;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bus-details .btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  background: #DC3545;
  color: white;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bus-details .btn:hover {
  transform: translateY(-2px);
  background: #c82333;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.carousel-item img {
  border-radius: 15px;
  transition: all 0.3s ease;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.carousel-item img:hover {
  transform: scale(1.02);
}

/* Remove carousel controls */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.divider {
  width: 70px;
  height: 4px;
  background: #DC3545;
  margin: 1rem 0;
  border-radius: 2px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  height: 100%;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .carousel {
    height: auto;
    min-height: 600px;
  }
  
  .carousel-item {
    flex-direction: column;
  }
  
  .bus-details {
    margin: 1rem 0;
    padding: 1.5rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    height: auto;
  }
  
  .image-grid img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .carousel {
    min-height: 500px;
  }
  
  .bus-details {
    padding: 1rem;
  }
  
  .bus-details h1 {
    font-size: 1.8rem;
  }
  
  .bus-details .btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d6efd' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.text-gradient {
  background: linear-gradient(45deg, #0d6efd, #0dcaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border: 1px solid rgba(13, 110, 253, 0.1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 202, 240, 0.1));
  border-radius: 50%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.service-card:hover .icon-bg {
  transform: scale(1.1);
}

.card-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #0dcaf0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover .card-decoration {
  transform: scaleX(1);
}

.badge {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.bg-primary-subtle {
  background-color: rgba(13, 110, 253, 0.1) !important;
}

.text-primary {
  color: #0d6efd !important;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.icon-wrapper svg {
  animation: float 3s ease-in-out infinite;
}

/* Typography Styles */
.font-playfair {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

.service-card h3 {
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  color: #2c3e50;
}

.service-card p {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Home Section Styles */
.home-container {
  text-align: center;
}

.main-title {
  font-size: auto;
  color: white;
  font-family: "Lucida Console", Copperplate, Fantasy;
  margin: 30px 0 10px 0;
}

.subtitle {
  color: rgb(242, 193, 69);
  font-family: "Lucida Console", Copperplate, Fantasy;
  font-weight: 300;
}

/* Testimonial Section Styles */
.testimonial-section {
  background-color: #343a40;
  padding: 3rem 0;
}

.testimonial-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: white;
  margin-top: 1.5rem;
}

.testimonial-subtitle {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.testimonial-divider {
  width: 50%;
  margin: 0.5rem auto 2rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-container {
  background-color: #343a40;
  padding: 3rem;
  margin: 1rem auto;
}

.testimonial-card {
  border: none;
  border-bottom: 1px solid #0d6efd;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  text-align: center;
}

.testimonial-card-body {
  padding: 1.5rem;
}

.rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Gallery Section Styles */
.gallery-section {
  padding-top: 1rem;
}

.gallery-image {
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* About Section Styles */
.about-section {
  background-color: #343a40;
  padding: 1rem 0;
}

.about-title {
  font-weight: 600;
  color: whitesmoke;
  font-size: 3.125rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.about-image {
  width: 100%;
  border-radius: 0.5rem;
}

.about-text {
  color: white;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.about-text-secondary {
  color: #6c757d;
  margin-bottom: 3rem;
}

/* Map Section Styles */
.map-container {
  width: 100%;
  height: 600px;
  border: none;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: #343a40 !important;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author h5 {
  color: #0d6efd;
  font-weight: 600;
  font-size: 1.2rem;
}

.rating {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.rating i {
  margin: 0 2px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonials-section {
    padding: 3rem 0;
  }
}

.gallery-section {
  background-color: #f8f9fa;
}

.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
  width: 100%;
}

.mosaic-item {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.mosaic-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .mosaic-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mosaic-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mosaic-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.divider-custom {
  margin: 1.25rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider-custom .divider-custom-line {
  width: 100%;
  max-width: 7rem;
  height: 0.25rem;
  background-color: #fff;
  border-radius: 1rem;
  border: 0;
}

.divider-custom .divider-custom-icon {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 1rem;
}

.about-image-wrapper {
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

.about-content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
}

.text-white {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Additional Mobile Responsive Styles */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .about-content {
    padding: 1.5rem !important;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  
  .phone-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 80px;
  }
  
  .phone-modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .phone-number {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 2rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .about-content {
    padding: 1rem !important;
  }
  
  .mosaic-gallery {
    gap: 1px;
  }
  
  .mosaic-item {
    padding-bottom: 66.67%; /* 3:2 Aspect Ratio for mobile */
  }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
  .nav-link {
    padding: 0.8rem 1rem !important;
    margin: 0.2rem 0;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .phone-number {
    padding: 15px;
    margin: 8px 0;
  }
}

/* Improve image loading on mobile */
@media (max-width: 768px) {
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 300px;
  }
}

/* Improve spacing on mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
}

/* Improve text readability on mobile */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
  }
  
  p {
    margin-bottom: 1rem;
  }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover, .phone-float:hover {
    transform: scale(1.1);
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

.phone-float:hover {
    background-color: #f0f0f0;
}

.whatsapp-float i, .phone-float i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Modal Styles */
.phone-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.phone-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.phone-number {
    display: block;
    padding: 15px;
    margin: 10px 0;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background-color: #e9ecef;
    color: #007bff;
}

.phone-number i {
    margin-right: 10px;
    color: #007bff;
}