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

:root {
    --primary-color: #FFD700; /* Yellow */
    --secondary-color: #000000; /* Black */
    --accent-color: #800080; /* Purple */
    --text-color: #000000; /* Black */
    --background-color: #F0EEE9; /* Cement white */
    --chat-background: #F5F5F5;
    --chat-text: #333333;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
}
/* Popup container */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.popup-content-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    margin-top: 7%;
}

.popup.fade-in {
    opacity: 1;
}

.popup.fade-out {
    opacity: 0;
}

/* Popup content */
.popup-content {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 420px;
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.popup.fade-in .popup-content {
    transform: scale(1);
    opacity: 1;
}

/* Popup header */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-family: var(--heading-font);
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--accent-color);
}

.download-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Popup body */
.popup-body {
    padding: 24px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-family: var(--body-font);
}

/* Popup footer */
.popup-footer {
    padding: 16px 24px;
    text-align: right;
    border-top: 1px solid var(--primary-color);
}

/* Ok button */
.ok-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--body-font);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ok-btn:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.button-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-text {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.download-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 3rem; /* Increased padding for larger button */
    border-radius: 30px; /* Increased border radius for smoother corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; /* Increased font size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Slightly larger shadow */
    transition: all 0.3s ease;

    /* Width adjustment */
    width: 80%; /* Occupy one-third of the parent container */
    max-width: 300px; /* Optional: set a max-width to prevent excessive growth */
    margin: 0 auto; /* Center horizontally */
    display: block;
    text-align: center;
}



.version-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

.version, .update-date {
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 15px;
    }
   
    .download-section {
        width: 100%;
    }
   
    .download-button {
        width: 100%;
        justify-content: center;
    }
}

/* Large desktop screens (1200px and above) */
@media (min-width: 1200px) {
    .download-button {
        padding: 1.2rem 3.5rem;
        font-size: 1.3rem;
        max-width: 350px;
    }
}

/* Medium desktop screens (992px to 1199px) */
@media (max-width: 1199px) {
    .download-button {
        padding: 1rem 3rem;
        font-size: 1.2rem;
        max-width: 300px;
    }
}

/* Tablet screens (768px to 991px) */
@media (max-width: 991px) {
    .download-button {
        padding: 0.9rem 2.5rem;
        font-size: 1.1rem;
        max-width: 280px;
        width: 85%;
    }
}

/* Large mobile screens (576px to 767px) */
@media (max-width: 767px) {
    .download-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        max-width: 250px;
        width: 90%;
        border-radius: 25px;
    }
}

/* Small mobile screens (575px and below) */
@media (max-width: 575px) {
    .download-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.5rem;
        max-width: 200px;
        width: 95%;
        border-radius: 20px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    }
}

/* Very small mobile screens (320px and below) */
@media (max-width: 320px) {
    .download-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        max-width: 200px;
        width: 100%;
        border-radius: 15px;
    }
}

/* Success, Error, Info styles */
.popup-content.success .popup-header {
    background-color: #4CAF50;
    color: white;
}

.popup-content.error .popup-header {
    background-color: #F44336;
    color: white;
}

.popup-content.info .popup-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media only screen and (max-width: 600px) {
    .popup-content-image {
        width: 90%;        /* Scale image width to 90% of screen */
        max-width: 100%;   /* Ensure the image doesn't exceed the screen width */
        max-height: 60%;   /* Reduce the max height to better fit smaller screens */
        margin-top: 30%;   /* Adjust the top margin for better positioning on small screens */
    }
}
/* Responsive adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }

    .popup-header h2 {
        font-size: 1.2rem;
    }

    .popup-body {
        font-size: 0.9rem;
    }

    .ok-btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* Close button with absolute positioning */
.close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: white; /* White close button */
    font-size: 1.8rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ffb703; /* Bright hover color */
    text-decoration: none;
    cursor: pointer;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px; /* Reduced base font size */
}

.home-section {
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.home-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem; /* Reduced font size for heading */
}

header {
    background-color: var(--primary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Changed to 100% */
    max-width: 1400px; /* Increased max-width */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-image {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}
.navbar-nav .nav-link {
    font-size: 1.2rem; /* Increase the font size */
    font-weight: bold; /* Adjust font weight if needed */
    padding: 0.5rem 1rem; /* Adjust spacing for better alignment */
    position: relative;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link.active {
    transform: translateY(3px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: relative;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
main {
    width: 100%; /* Changed to 100% */
    max-width: 1400px; /* Increased max-width */
    margin: 0 auto;
    padding: 1rem;
    padding-top: 80px; /* Reduced to accommodate smaller header */
}

section {
    padding-top: 50px;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem; /* Increased font size */
}

h2 {
    font-size: 2rem; /* Increased font size */
}

h3 {
    font-size: 1.5rem; /* Increased font size */
}

#about-us h2,
#why-choose-us h2,
#fare-details h2,
#book-your-ride h2,
#customer-reviews h2,
#contact-us h2 {
    font-size: 2.2rem;
}
.predefined-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.predefined-questions button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.predefined-questions button:hover {
    background-color: #8e24aa;
}


.hero {
    padding: 3rem 0;
    /* Removed background-color */
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 0.1rem;
}

.hero-text {
    flex: 1;
    max-width: 67%;
    background-color: #F0EEE9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 1.2rem 1rem;
    border-radius: 5%;
}

.hero-title {
    font-size: 2.5rem; /* Reduced from 2.5rem */
    text-align: center;
    color: #FF0000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    /* white-space: nowrap; */
}

.hero-description {
    font-size: 1.8rem; /* Slightly larger font */
    color: #333333; /* Softer black */
    text-align: center; /* Center the text */
    margin-bottom: 1rem;
    font-weight: bold; /* Bold text */
    letter-spacing: 0.05rem; /* Add letter spacing for style */
    padding: 10px; /* Add padding around the text */
}

.hero-reg-no {
    font-size: 1.4rem; /* Slightly larger font */
    color: #555555; /* Slightly lighter color */
    text-align: center; /* Center the text */
    margin-bottom: 1.5rem;
    font-style: italic; /* Italic text for a different look */
    padding: 5px; /* Add a little padding */
    /* border-bottom: 2px solid #333333; */
}


.quote-container {
    /* background-color: #FFF0E6; */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    font-size: 1.4rem;
    color: #000000;
    text-align: center;
    margin: 0;
}

.quote p {
    margin: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 3rem; /* Increased padding for larger button */
    border-radius: 40px; /* Increased border radius for smoother corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem; /* Increased font size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Slightly larger shadow */
    transition: all 0.3s ease;

    /* Width adjustment */
    width: 33%; /* Occupy one-third of the parent container */
    max-width: 300px; /* Optional: set a max-width to prevent excessive growth */
    margin: 0 auto; /* Center horizontally */
    display: block;
    text-align: center;
   
}

.hero-image {
    flex: 1;
    max-width: 40%;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    position: relative; /* Add this */
   
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    main, nav {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text, .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }

    .hero-description, .hero-reg-no {
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly reduced for mobile */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description, .hero-reg-no {
        font-size: 1rem;
    }

    .quote {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

.about-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background-color: var(--primary-color);
    padding: 1.5rem; /* Increased padding for more spacing */
    border-radius: 10px; /* More rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Slightly larger shadow for depth */
    font-family: 'Times New Roman', sans-serif; /* Set a modern, clean font */
    color: #ffffff; /* Set text color to white for contrast */
    font-size: 1.2rem; /* Adjust font size for readability */
    line-height: 1.3; /* Improve readability with increased line height */
    text-align: justify; /* Center-align text for a more uniform look */
}
.about-button-container {
    position: absolute;
    align-items: right;
    right: 5px;
    bottom: 10px;
}
.about-content p {
    margin: 0; /* Remove default margins from paragraphs */
}

.about-content h1, .about-content h2, .about-content h3 {
    margin: 0 0 0.5rem 0; /* Adjust margins for headings */
    font-weight: bold; /* Emphasize headings */
}
.about-video {
    width: 35%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 2;
    color: var(--secondary-color);
}

.about-text .quote {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin: 0.4rem 0;
}
.about-image-container {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    max-width: 100%; /* Ensure the container doesn't exceed screen size */
}

.about-image {
    width: 100%;
    max-width: 500px; /* Set a max width to prevent it from getting too large */
    height: auto; /* Keeps the aspect ratio intact */
    border-radius: 8px; /* Optional: Adds rounded corners for better visuals */
}

@media (max-width: 768px) {
    .about-image {
        max-width: 100%; /* Image will take full width on smaller screens */
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 90%; /* Shrink image a bit more on extra-small screens */
    }
}



.view-full-image {
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1); /* Default scale */
}

.view-full-image:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Add a deeper shadow */
    transform: scale(1.05); /* Slightly increase the button size */
}

/* Add an active effect for better feedback when clicked */
.view-full-image:active {
    transform: scale(0.95); /* Slightly shrink when clicked */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* A subtle shadow decrease */
}

.reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
}

.fare-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
}

.reason, .fare-item {
    background-color: var(--primary-color);
    padding: 0.8rem 0.6rem 0.6rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px; /* Adjust this value as needed */
    display: flex; /* Use flexbox for vertical centering */
    flex-direction: column;
    justify-content: center;
}

.reason:hover, .fare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.reason i, .fare-item i {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
    color: var(--accent-color);
}

.reason p {
    font-size: 1.1rem; /* Adjust this value to your preference */
    margin: 0;
}
.fare-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.fare-item p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.book-now {
    background-color: var(--primary-color); /* This should be yellow, based on your color scheme */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.book-now-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-now h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.complaint-now {
    background-color: var(--primary-color); /* This should be yellow, based on your color scheme */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.complaint-now-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complaint-now h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.phone-numbers {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 5rem; /* Reduced gap between columns */
}

.phone-column {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .phone-numbers {
        gap: 1rem; /* Reduced gap for smaller screens */
        flex-wrap: wrap; /* Allow wrapping of phone columns on smaller screens */
        /* justify-content: space-around; Better spacing on smaller screens */
    }
}

.phone-number:hover {
    color: var(--accent-color);
}

.phone-number i {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number span {
    display: inline; /* Ensure text is inline with icon */
    white-space: nowrap; /* Prevent text from wrapping */
}
.advance-booking {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.advance-booking i {
    margin-right: 0.5rem;
}

.call-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.call-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}
.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .book-now {
        padding: 1rem;
    }
    .complaint-now {
        padding: 1rem;
    }
   
    .phone-numbers {
        flex-wrap: wrap;
    }
   
    .phone-column {
        flex-basis: 50%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-column {
        flex-basis: 100%;
    }
   
    .phone-number {
        font-size: 0.8rem;
    }
   
    .cta-button {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.3rem;
    /* padding-bottom: 10%; */
}

.review-card {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 5%;
}

.review-card:hover {
    transform: translateY(-5px); /* Lifts the card slightly */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Adds a deeper shadow */
}

.review-card:active {
    transform: scale(0.98); /* Shrinks slightly on click */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* A bit of shadow reduction when clicked */
}



.review-card p {
    font-size: 1.3rem; /* Slightly smaller font size for paragraphs */
    font-weight: 300; /* Lighter font weight for paragraphs */
    margin: 0; /* Remove default margin */
}


.reviewer {
    display: block;
    margin-top: 0.9rem;
    font-style: italic;
    text-align: right;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}
.contact-column {
    display: flex;
    flex-direction: column;
}

.contact-column h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-column p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-column i {
    margin-right: 0.3rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}


.contact-info {
    flex: 1;
    margin-right: 1rem;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 150%;
    height: 100%;
    min-height: 200px;
    border: 0;
    border-radius: 5px;
}

.contact-info p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.contact-info i {
    margin-right: 0.3rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}
.social-media {
    flex: 1;
    text-align: right;
}

footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}
.footer-logo {
    height: 10px; /* Adjust this value to match your desired logo size */
    width: 10px;
    margin: 0 10px; /* Add some space around the logo */
    vertical-align: middle;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
   
    .footer-logo {
        margin: 10px 0;
    }
}
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #6a1b9a;
    color: white;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.chat-button:hover {
    background-color: #8e24aa;
    transform: scale(1.05);
}

.chat-button:hover + .chat-text,
.chat-text:hover {
    opacity: 1;
    transform: translateY(0);
}

.chat-button i {
    font-size: 24px;
}
.chat-button span {
    font-size: 14px;
    font-weight: bold;
}

/* Chat window styles */
.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 20%;
    height: 50%;
    background-color: #f3e5f5;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-window.hidden {
    display: none;
    width: 300px; /* Increased width */
    height: 400px;
}

@media (max-width: 1200px) {
    .chat-window {
        width: 25%;
        height: 60%;
    }
}

@media (max-width: 992px) {
    .chat-window {
        width: 30%;
        height: 70%;
    }
}

@media (max-width: 768px) {
    .chat-window {
        width: 50%;
        height: 80%;
        bottom: 70px;
    }
}

@media (max-width: 576px) {
    .chat-window {
        width: 90%;
        height: 70%;
        right: 5%;
        left: 5%;
        bottom: 80px;
    }
}

/* Adjust chat button for smaller screens */
@media (max-width: 576px) {
    .chat-button {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
   
    .chat-button i {
        font-size: 20px;
    }
}

/* Ensure text doesn't overflow on very small screens */
.message {
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Adjust input area for better usability on mobile */
@media (max-width: 576px) {
    .chat-input input {
        font-size: 14px;
    }
   
    .chat-input button {
        width: 36px;
        height: 36px;
    }
}
.chat-header {
    background-color: #6a1b9a;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
}

#chat-avatar {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chat-avatar i {
    color: #6a1b9a;
    font-size: 24px;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.chat-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #e1bee7;
}

.chat-input input {
    flex-grow: 1;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 18px;
}

.chat-input button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.chat-input button:hover {
    background-color: #8e24aa;
}

.chat-input button i {
    font-size: 18px;
}

.message {
    margin-bottom: 15px;
    padding: 12px 18px;
    border-radius: 20px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 18px;
    line-height: 1.4;
}

.user-message {
    background-color: #17ded0;
    color: #000;
    align-self: flex-end;
    margin-left: auto;
}

.bot-message {
    background-color: #e1bee7;
    color: #000;
    align-self: flex-start;
    margin-right: auto;
}

/* Ensure proper alignment of messages */
#chat-messages {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .download-button {
        padding: 0.8rem 2rem; /* Reduce padding for smaller screens */
        font-size: 1rem; /* Reduce font size */
        width: 90%; /* Increase width for better touch target size */
        max-width: 250px; /* Reduce max width for smaller screens */
    }
}

@media (max-width: 480px) {
    .download-button {
        padding: 0.6rem 1.5rem; /* Further reduce padding for very small screens */
        font-size: 0.9rem; /* Adjust font size for better fit */
        width: 100%; /* Take full width */
        max-width: none; /* Remove max width restriction */
    }
}

.connect-form {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
   
    margin: 0 auto;
}

#connect-form {
    padding: 2rem;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    margin-top: 1.25rem;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}
.social-media {
    margin-top: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 2px; /* Changed from 5px to 2px */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 0.3rem;
    font-size: 1.5rem;
    color: var(--accent-color); /* Changed from white to accent color */
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color); /* Changed to primary color on hover */
    transform: scale(1.05);
}



@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column; /* Stack columns vertically on mobile */
    }

    .form-column {
        width: 100%; /* Full width for each form column */
        padding: 5px;
    }

    .submit-button {
        width: 100%; /* Make the button span the full width */
        padding: 10px;
        margin-top: 10px;
    }

    /* Adjust textarea height for better appearance on small screens */
    textarea {
        height: 100px;
    }
}
@media (max-width: 1200px) {
    main, nav {
        width: 70%;
    }
}

@media (max-width: 992px) {
    main, nav {
        width: 80%;
    }

    .hero {
        flex-direction: column;
    }

    .hero-image, .hero-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    main, nav {
        width: 90%;
    }

    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 0.6rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-video {
        width: 100%;
        margin-bottom: 1rem;
    }

    .reasons, .fare-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }
    .map-container {
        height: 200px;
    }
 
.social-media {
    flex: 1;
    text-align: left;
}

.map-container {
    width: 100%;
    margin-top: 1rem;
}

.map-container iframe {
    width: 95%;
    height: 100px;
    border: 0;
}

    .social-icons {
       justify-content: flex-end;
    }
    .contact-info, .social-media {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-icon {
        margin-left: 0;
        margin-right: 0.6rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-column p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .quote {
        font-size: 0.7rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    #about-us h2,
    #why-choose-us h2,
    #fare-details h2,
    #book-your-ride h2,
    #customer-reviews h2,
    #contact-us h2 {
        font-size: 1.2rem;
    }
    .chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.chat-button {
    position: relative;
    /* background-color: #ffd900;
    color: #000000; */
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    background-color: #ffe033;
    transform: scale(1.05);
}

.chat-text {
    font-size: 8px;
    font-weight: bold;
    margin-right: 10px;
}

.chat-button i {
    font-size: 24px;
}
}


@media screen and (max-width: 768px) {
    .about-text p {
        font-size: 0.95rem; /* Reduce font size for smaller screens */
    }

    /* Optional: Reduce image size for smaller screens */
    .about-image-container img {
        max-width: 100%; /* Ensure the image scales properly */
        height: auto;
    }

    /* Adjust button for better spacing on mobile */
    .view-full-image {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary-color: #FFD700; /* Yellow */
    --secondary-color: #000000; /* Black */
    --accent-color: #800080; /* Purple */
    --text-color: #000000; /* Black */
    --background-color: #F0EEE9; /* Cement white */
    --chat-background: #F5F5F5;
    --chat-text: #333333;
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
}
/* Popup container */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.popup-content-image {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    margin-top: 7%;
}

.popup.fade-in {
    opacity: 1;
}

.popup.fade-out {
    opacity: 0;
}

/* Popup content */
.popup-content {
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 420px;
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.popup.fade-in .popup-content {
    transform: scale(1);
    opacity: 1;
}

/* Popup header */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-family: var(--heading-font);
}

/* Close button */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: var(--accent-color);
}

/* Popup body */
.popup-body {
    padding: 24px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-family: var(--body-font);
}

/* Popup footer */
.popup-footer {
    padding: 16px 24px;
    text-align: right;
    border-top: 1px solid var(--primary-color);
}

/* Ok button */
.ok-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--body-font);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ok-btn:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.button-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-text {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.download-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 3rem; /* Increased padding for larger button */
    border-radius: 30px; /* Increased border radius for smoother corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; /* Increased font size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Slightly larger shadow */
    transition: all 0.3s ease;

    /* Width adjustment */
    width: 80%; /* Occupy one-third of the parent container */
    max-width: 300px; /* Optional: set a max-width to prevent excessive growth */
    margin: 0 auto; /* Center horizontally */
    display: block;
    text-align: center;
}



.version-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

.version, .update-date {
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 15px;
    }
   
    .download-section {
        width: 100%;
    }
   
    .download-button {
        width: 100%;
        justify-content: center;
    }
}
/* Success, Error, Info styles */
.popup-content.success .popup-header {
    background-color: #4CAF50;
    color: white;
}

.popup-content.error .popup-header {
    background-color: #F44336;
    color: white;
}

.popup-content.info .popup-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media only screen and (max-width: 600px) {
    .popup-content-image {
        width: 90%;        /* Scale image width to 90% of screen */
        max-width: 100%;   /* Ensure the image doesn't exceed the screen width */
        max-height: 60%;   /* Reduce the max height to better fit smaller screens */
        margin-top: 30%;   /* Adjust the top margin for better positioning on small screens */
    }
}
/* Responsive adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 95%;
    }

    .popup-header h2 {
        font-size: 1.2rem;
    }

    .popup-body {
        font-size: 0.9rem;
    }

    .ok-btn {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* Close button with absolute positioning */
.close {
    position: absolute;
    top: 16px;
    right: 24px;
    color: white; /* White close button */
    font-size: 1.8rem;
    font-weight: normal;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ffb703; /* Bright hover color */
    text-decoration: none;
    cursor: pointer;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px; /* Reduced base font size */
}

.home-section {
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.home-section h2 {
    color: var(--secondary-color);
    font-size: 1.5rem; /* Reduced font size for heading */
}

header {
    background-color: var(--primary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Changed to 100% */
    max-width: 1400px; /* Increased max-width */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-image {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}
.navbar-nav .nav-link {
    font-size: 1.2rem; /* Increase the font size */
    font-weight: bold; /* Adjust font weight if needed */
    padding: 0.5rem 1rem; /* Adjust spacing for better alignment */
    position: relative;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link.active {
    transform: translateY(3px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: relative;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
main {
    width: 100%; /* Changed to 100% */
    max-width: 1400px; /* Increased max-width */
    margin: 0 auto;
    padding: 1rem;
    padding-top: 80px; /* Reduced to accommodate smaller header */
}

section {
    padding-top: 50px;
    margin-bottom: 2rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem; /* Increased font size */
}

h2 {
    font-size: 2rem; /* Increased font size */
}

h3 {
    font-size: 1.5rem; /* Increased font size */
}

#about-us h2,
#why-choose-us h2,
#fare-details h2,
#book-your-ride h2,
#customer-reviews h2,
#contact-us h2 {
    font-size: 2.2rem;
}
.predefined-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.predefined-questions button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.predefined-questions button:hover {
    background-color: #8e24aa;
}


.hero {
    padding: 3rem 0;
    /* Removed background-color */
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 0.1rem;
}

.hero-text {
    flex: 1;
    max-width: 67%;
    background-color: #F0EEE9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 1.2rem 1rem;
    border-radius: 5%;
}

.hero-title {
    font-size: 2.5rem; /* Reduced from 2.5rem */
    text-align: center;
    color: #FF0000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    /* white-space: nowrap; */
}

.hero-description {
    font-size: 1.8rem; /* Slightly larger font */
    color: #333333; /* Softer black */
    text-align: center; /* Center the text */
    margin-bottom: 1rem;
    font-weight: bold; /* Bold text */
    letter-spacing: 0.05rem; /* Add letter spacing for style */
    padding: 10px; /* Add padding around the text */
}

.hero-reg-no {
    font-size: 1.4rem; /* Slightly larger font */
    color: #555555; /* Slightly lighter color */
    text-align: center; /* Center the text */
    margin-bottom: 1.5rem;
    font-style: italic; /* Italic text for a different look */
    padding: 5px; /* Add a little padding */
    /* border-bottom: 2px solid #333333; */
}


.quote-container {
    /* background-color: #FFF0E6; */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    font-size: 1.4rem;
    color: #000000;
    text-align: center;
    margin: 0;
}

.quote p {
    margin: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 3rem; /* Increased padding for larger button */
    border-radius: 40px; /* Increased border radius for smoother corners */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.8rem; /* Increased font size */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Slightly larger shadow */
    transition: all 0.3s ease;

    /* Width adjustment */
    width: 33%; /* Occupy one-third of the parent container */
    max-width: 300px; /* Optional: set a max-width to prevent excessive growth */
    margin: 0 auto; /* Center horizontally */
    display: block;
    text-align: center;
   
}

.hero-image {
    flex: 1;
    max-width: 40%;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    position: relative; /* Add this */
   
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    main, nav {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text, .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem; /* Adjusted for smaller screens */
    }

    .hero-description, .hero-reg-no {
        font-size: 1.2rem;
    }

    .quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px; /* Slightly reduced for mobile */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description, .hero-reg-no {
        font-size: 1rem;
    }

    .quote {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

.about-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background-color: var(--primary-color);
    padding: 1.5rem; /* Increased padding for more spacing */
    border-radius: 10px; /* More rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Slightly larger shadow for depth */
    font-family: 'Times New Roman', sans-serif; /* Set a modern, clean font */
    color: #ffffff; /* Set text color to white for contrast */
    font-size: 1.2rem; /* Adjust font size for readability */
    line-height: 1.3; /* Improve readability with increased line height */
    text-align: justify; /* Center-align text for a more uniform look */
}
.about-button-container {
    position: absolute;
    align-items: right;
    right: 5px;
    bottom: 10px;
}
.about-content p {
    margin: 0; /* Remove default margins from paragraphs */
}

.about-content h1, .about-content h2, .about-content h3 {
    margin: 0 0 0.5rem 0; /* Adjust margins for headings */
    font-weight: bold; /* Emphasize headings */
}
.about-video {
    width: 35%;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 2;
    color: var(--secondary-color);
}

.about-text .quote {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin: 0.4rem 0;
}
.about-image-container {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    max-width: 100%; /* Ensure the container doesn't exceed screen size */
}

.about-image {
    width: 100%;
    max-width: 500px; /* Set a max width to prevent it from getting too large */
    height: auto; /* Keeps the aspect ratio intact */
    border-radius: 8px; /* Optional: Adds rounded corners for better visuals */
}

@media (max-width: 768px) {
    .about-image {
        max-width: 100%; /* Image will take full width on smaller screens */
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 90%; /* Shrink image a bit more on extra-small screens */
    }
}



.view-full-image {
    padding: 0.5rem 1rem;
    background-color: var(--accent-color);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: scale(1); /* Default scale */
}

.view-full-image:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Add a deeper shadow */
    transform: scale(1.05); /* Slightly increase the button size */
}

/* Add an active effect for better feedback when clicked */
.view-full-image:active {
    transform: scale(0.95); /* Slightly shrink when clicked */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* A subtle shadow decrease */
}

.reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1rem;
}

.fare-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
}

.reason, .fare-item {
    background-color: var(--primary-color);
    padding: 0.8rem 0.6rem 0.6rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px; /* Adjust this value as needed */
    display: flex; /* Use flexbox for vertical centering */
    flex-direction: column;
    justify-content: center;
}

.reason:hover, .fare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.reason i, .fare-item i {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
    color: var(--accent-color);
}

.reason p {
    font-size: 1.1rem; /* Adjust this value to your preference */
    margin: 0;
}
.fare-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.fare-item p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.book-now {
    background-color: var(--primary-color); /* This should be yellow, based on your color scheme */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.book-now-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-now h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.complaint-now {
    background-color: var(--primary-color); /* This should be yellow, based on your color scheme */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.complaint-now-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complaint-now h3 {
    font-size: 1.7rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.phone-numbers {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 5rem; /* Reduced gap between columns */
}

.phone-column {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .phone-numbers {
        gap: 1rem; /* Reduced gap for smaller screens */
        flex-wrap: wrap; /* Allow wrapping of phone columns on smaller screens */
        /* justify-content: space-around; Better spacing on smaller screens */
    }
}

.phone-number:hover {
    color: var(--accent-color);
}

.phone-number i {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number span {
    display: inline; /* Ensure text is inline with icon */
    white-space: nowrap; /* Prevent text from wrapping */
}
.advance-booking {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.advance-booking i {
    margin-right: 0.5rem;
}

.call-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.call-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}
.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button i {
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .book-now {
        padding: 1rem;
    }
    .complaint-now {
        padding: 1rem;
    }
   
    .phone-numbers {
        flex-wrap: wrap;
    }
   
    .phone-column {
        flex-basis: 50%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-column {
        flex-basis: 100%;
    }
   
    .phone-number {
        font-size: 0.8rem;
    }
   
    .cta-button {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.3rem;
    /* padding-bottom: 10%; */
}

.review-card {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 5%;
}

.review-card:hover {
    transform: translateY(-5px); /* Lifts the card slightly */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Adds a deeper shadow */
}

.review-card:active {
    transform: scale(0.98); /* Shrinks slightly on click */
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* A bit of shadow reduction when clicked */
}



.review-card p {
    font-size: 1.3rem; /* Slightly smaller font size for paragraphs */
    font-weight: 300; /* Lighter font weight for paragraphs */
    margin: 0; /* Remove default margin */
}


.reviewer {
    display: block;
    margin-top: 0.9rem;
    font-style: italic;
    text-align: right;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}
.contact-column {
    display: flex;
    flex-direction: column;
}

.contact-column h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.contact-column p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-column i {
    margin-right: 0.3rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}


.contact-info {
    flex: 1;
    margin-right: 1rem;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 150%;
    height: 100%;
    min-height: 200px;
    border: 0;
    border-radius: 5px;
}

.contact-info p {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.contact-info i {
    margin-right: 0.3rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}
.social-media {
    flex: 1;
    text-align: right;
}

footer {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}
.footer-logo {
    height: 10px; /* Adjust this value to match your desired logo size */
    width: 10px;
    margin: 0 10px; /* Add some space around the logo */
    vertical-align: middle;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
   
    .footer-logo {
        margin: 10px 0;
    }
}
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #6a1b9a;
    color: white;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.chat-button:hover {
    background-color: #8e24aa;
    transform: scale(1.05);
}

.chat-button:hover + .chat-text,
.chat-text:hover {
    opacity: 1;
    transform: translateY(0);
}

.chat-button i {
    font-size: 24px;
}
.chat-button span {
    font-size: 14px;
    font-weight: bold;
}

/* Chat window styles */
.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 20%;
    height: 50%;
    background-color: #f3e5f5;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chat-window.hidden {
    display: none;
    width: 300px; /* Increased width */
    height: 400px;
}

@media (max-width: 1200px) {
    .chat-window {
        width: 25%;
        height: 60%;
    }
}

@media (max-width: 992px) {
    .chat-window {
        width: 30%;
        height: 70%;
    }
}

@media (max-width: 768px) {
    .chat-window {
        width: 50%;
        height: 80%;
        bottom: 70px;
    }
}

@media (max-width: 576px) {
    .chat-window {
        width: 90%;
        height: 70%;
        right: 5%;
        left: 5%;
        bottom: 80px;
    }
}

/* Adjust chat button for smaller screens */
@media (max-width: 576px) {
    .chat-button {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
   
    .chat-button i {
        font-size: 20px;
    }
}

/* Ensure text doesn't overflow on very small screens */
.message {
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Adjust input area for better usability on mobile */
@media (max-width: 576px) {
    .chat-input input {
        font-size: 14px;
    }
   
    .chat-input button {
        width: 36px;
        height: 36px;
    }
}
.chat-header {
    background-color: #6a1b9a;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h3 {
    margin: 0;
    font-size: 18px;
}

#chat-avatar {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#chat-avatar i {
    color: #6a1b9a;
    font-size: 24px;
}

#close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.chat-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #e1bee7;
}

.chat-input input {
    flex-grow: 1;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 18px;
}

.chat-input button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.chat-input button:hover {
    background-color: #8e24aa;
}

.chat-input button i {
    font-size: 18px;
}

.message {
    margin-bottom: 15px;
    padding: 12px 18px;
    border-radius: 20px;
    max-width: 80%;
    word-wrap: break-word;
    font-size: 18px;
    line-height: 1.4;
}

.user-message {
    background-color: #17ded0;
    color: #000;
    align-self: flex-end;
    margin-left: auto;
}

.bot-message {
    background-color: #e1bee7;
    color: #000;
    align-self: flex-start;
    margin-right: auto;
}

/* Ensure proper alignment of messages */
#chat-messages {
    display: flex;
    flex-direction: column;
}


.connect-form {
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
   
    margin: 0 auto;
}

#connect-form {
    padding: 2rem;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    margin-top: 1.25rem;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}
.social-media {
    margin-top: 1rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 2px; /* Changed from 5px to 2px */
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 0.3rem;
    font-size: 1.5rem;
    color: var(--accent-color); /* Changed from white to accent color */
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-color); /* Changed to primary color on hover */
    transform: scale(1.05);
}



@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column; /* Stack columns vertically on mobile */
    }

    .form-column {
        width: 100%; /* Full width for each form column */
        padding: 5px;
    }

    .submit-button {
        width: 100%; /* Make the button span the full width */
        padding: 10px;
        margin-top: 10px;
    }

    /* Adjust textarea height for better appearance on small screens */
    textarea {
        height: 100px;
    }
}
@media (max-width: 1200px) {
    main, nav {
        width: 70%;
    }
}

@media (max-width: 992px) {
    main, nav {
        width: 80%;
    }

    .hero {
        flex-direction: column;
    }

    .hero-image, .hero-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
    main, nav {
        width: 90%;
    }

    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 0.6rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-video {
        width: 100%;
        margin-bottom: 1rem;
    }

    .reasons, .fare-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }
    .map-container {
        height: 200px;
    }
 
.social-media {
    flex: 1;
    text-align: left;
}

.map-container {
    width: 100%;
    margin-top: 1rem;
}

.map-container iframe {
    width: 95%;
    height: 100px;
    border: 0;
}

    .social-icons {
       justify-content: flex-end;
    }
    .contact-info, .social-media {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .social-icon {
        margin-left: 0;
        margin-right: 0.6rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-column p {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .quote {
        font-size: 0.7rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    #about-us h2,
    #why-choose-us h2,
    #fare-details h2,
    #book-your-ride h2,
    #customer-reviews h2,
    #contact-us h2 {
        font-size: 1.2rem;
    }
    .chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
}

.chat-button {
    position: relative;
    /* background-color: #ffd900;
    color: #000000; */
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-button:hover {
    background-color: #ffe033;
    transform: scale(1.05);
}

.chat-text {
    font-size: 8px;
    font-weight: bold;
    margin-right: 10px;
}

.chat-button i {
    font-size: 24px;
}
}


@media screen and (max-width: 768px) {
    .about-text p {
        font-size: 0.95rem; /* Reduce font size for smaller screens */
    }

    /* Optional: Reduce image size for smaller screens */
    .about-image-container img {
        max-width: 100%; /* Ensure the image scales properly */
        height: auto;
    }

    /* Adjust button for better spacing on mobile */
    .view-full-image {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
