.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);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.divider {
    width: 70px;
    height: 3px;
    background: #DC3545;
    margin: 1.5rem 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

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

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

@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }
    
    .carousel-item {
        flex-direction: column;
    }
    
    .bus-details {
        padding: 1rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .image-grid img {
        height: 150px;
    }
}

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

.services-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

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

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

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

.badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.bg-primary-subtle {
    background-color: rgba(220, 53, 69, 0.1);
}

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

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

.icon-wrapper svg {
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.home-container {
    text-align: center;
    padding: 4rem 0;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #f2c145;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-divider {
    width: 70px;
    height: 3px;
    background: #dc3545;
    margin: 1.5rem auto;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
}

.testimonial-card-body {
    text-align: center;
}

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

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.gallery-section {
    padding: 5rem 0;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-text-secondary {
    color: rgba(255, 255, 255, 0.7);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonials-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 5rem 0;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    color: #f2c145;
    margin: 0;
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #f2c145;
}

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

.gallery-section {
    padding: 5rem 0;
}

.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

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

.bg-gradient-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.divider-custom {
    margin: 1.25rem 0 1.5rem;
    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: #dc3545;
    border-radius: 1rem;
    border: 0;
}

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

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image-wrapper:hover {
    transform: scale(1.02);
}

.about-content {
    padding: 2rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-white {
    color: #fff !important;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
    
    .phone-float {
        right: 20px;
        bottom: 80px;
    }
    
    .phone-modal-content {
        padding: 1rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .about-content {
        padding: 0.5rem;
    }
    
    .mosaic-gallery {
        grid-template-columns: 1fr;
    }
    
    .mosaic-item {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    
    .carousel-item img {
        height: auto;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .mt-5 {
        margin-top: 3rem !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.5rem;
    }
    
    p {
        font-size: 0.9rem;
    }
}