body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    text-align: center;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
  
}



html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }


/* #40916c old code*/
.company-info {

    display: flex;
    align-items: center; /* Aligns items vertically */
    gap: 10px; /* Adds space between the logo and the text */

    background-color:white /*#15BAE9, #397f60*/;
        /* background: linear-gradient(to right, #52b788, #397f60); */
    color: rgb(0, 0, 0);
    /* width: 100%; */
    overflow: hidden;
}


.logoCompanyInfo {
    width: 50px;  /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    text-align: left;

}

.container1 {
    background: white;
    padding: 20px;

}

h1, h2, h3 {
    margin: 10px 0;
}

ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.car-card {

    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;

}

.car-card img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.car-info,.logoGaneshJi {
    margin-top: 10px;
}

.book-btn {
    display: inline-block;
    background-color: #ff6f00;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.book-btn:hover {
    background-color: #e65c00;
}

.call-btn {
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

footer {
    margin-top: 20px;
    /* background-color: #2d6a4f; */
    background: black;
    color: white;
    padding: 10px;
}


.footer {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 30px 40px;
    text-align: left;
    position: relative;
  }
  
 
  .footer {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 40px;
    text-align: left;
  }
  
  .footer-top-bar {
    background: repeating-linear-gradient(
      to right,
      #f4b400 0 20px,
      #000 20px 40px
    );
    height: 20px;
    margin-bottom: 30px;
  }
  
  .footer-content {
    max-width: 700px;
  }
  
  .logo-section {
    margin-bottom: 20px;
  }
  
  .logo-section h2 {
    margin: 0;
    font-size: 28px;
  }
  
  .mahavir,.travels {
    color: #f4b400;
    font-weight: bold;
  }
  
  
  
  .footer-description {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
    max-width: 90%;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-item {
    /* display: flex; */
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 16px;
    align-items: baseline;
  }
  
  .contact-item strong {
    width: 140px;
    color: #f4b400;
    flex-shrink: 0;
  }

  .contact-values {
    display: flex;
    flex-direction: column;
  }
  
  .contact-values a {
    color: inherit;
    text-decoration: none;
    line-height: 1.6;
  }

  
.contact-values a:hover {
    text-decoration: underline;
    color: #f4b400;
  }
  
  .contact-info a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
  }
  
  .contact-info a:hover {
    text-decoration: none;
    color: inherit;
  }
  .all_rights_reserve {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 110px;

  }
  
.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.car-card {
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Set a max-width for better spacing */
    margin: 10px;
}

@media (min-width: 768px) { /* Tablets & Desktops */
    .car-card {
        width: calc(33.33% - 20px); /* Show 3 cars per row */
    }
}

@media (min-width: 1024px) { /* Larger Desktops */
    .car-card {
        width: calc(25% - 20px); /* Show 4 cars per row */
    }
}


/*Booking FOrm*/
.booking-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.form-group i {
    margin-right: 10px;
    color: #333;
}
.form-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 5px;
}

/* new settings */

/* Style for select input */
.form-group select {
    flex: 2;
    padding: 8px;
    border: none;           /* Removes border */
    background-color: #f8f8f8; /* Light background for visibility */
    border-radius: 5px;
    appearance: none;       /* Removes default dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: right;      /* Align text inside dropdown to right */
}


.submit-btn {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}
.submit-btn:hover {
    background: #218838;
}

.slider-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.slider-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.slider-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(0,0,0,0.5);
    border: none;
    border-radius: 5px;
}
.prev { left: 10px; }
.next { right: 10px; }

       
.welcome-section {
    display: flex;
    /* background: black; */
    background: url('./images/bg5.jpeg') no-repeat center center;
    background-size: cover; /* Ensures the image covers the entire section */

    font-family: Arial, sans-serif;
    overflow: hidden;
    animation: backgroundAnimation 10s infinite alternate;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;

}
.welcome-section::before {
    content: "";
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 25, 25, 0.247); /* Adjust opacity (0 = fully transparent, 1 = fully opaque) */
    /* z-index: 1; */
}
@keyframes backgroundAnimation {
    /* 0% { background: linear-gradient(to right, #52BABB , #52BABB); } */
    /* 100% { background: linear-gradient(to right, #4facfe, #00f2fe); } */
}
.containerLogoTxt {
    color: #fff;
    font-size: 3em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    /* animation: fadeIn 2s ease-in-out; */
}
/* .taxi {
    width: 120px;
    position: absolute;
    bottom: 50px;
    animation: moveTaxi 5s linear infinite;
} */



.logo {
    width: 400px;
    height: auto;
    animation: bounce 3s infinite;
    visibility: hidden;

}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom:30px;
    z-index: 1000;
    

}

.whatsapp-float img {
    width: 100%;
    height: auto;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s ease;
    
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}



/* WhatsApp Floating Button */
.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Change right to left */

    width: 60px;
    height: 60px;
    z-index: 1000;
    margin-bottom:30px;
    
}

.call-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;

}

.call-float img:hover {
    transform: scale(1.1);
}
.pTag {
    /* margin: 5;
    margin-top: 90px; */

    /* margin-top: auto; Pushes it to the bottom */
    /* margin-bottom: 10; */
    text-align: center;
    margin-bottom: -20px;
}

.division {
    flex-grow: 1; /* Takes up all available space */
    width: 100%; /* Ensures full width */
}
.containerLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Ensure full height if needed */
    height: 95vh;

}
/* .containerLogo { */
    /* position: relative; */
    /* text-align: center; */
    /* margin-top: 10px; */

/* } */