*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  /* Ensure the container takes up full height */
}
a {
    text-decoration: none;
    color: inherit;
}
/* Header */
/* Header */
header {
    background-color: #010101;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

/* Top Bar */
/* Top Bar */
.top-bar {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar .contact-info {
    flex: 1;
}

.top-bar .cta-btn {
    background-color: #18bc9c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

/* Logo and Navigation */
.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: relative;
    width: 100%; /* Ensure the logo-nav takes full width */
}

.logo {
    width: 180px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align:left;
}

nav ul li a:hover {
    background-color: #18bc9c;
}

/* Mobile Menu Icon */
.menu-icon {
    display: block; /* Initially show the ☰ icon */
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px; /* Adjusted position for better alignment */
}

.close-btn {
    display: none; /* Initially hide the close button */
    font-size: 30px;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
    .logo-nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px; /* Increased padding for better spacing */
    }

    .logo {
        width: 120px; /* Smaller logo size on mobile */
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #010101;
        margin-top: 10px;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    /* When the menu is active, hide ☰ icon */
    .menu-icon.active {
        display: none;
    }

    /* Show the close button when the menu is active */
    .close-btn.active {
        display: block;
    }
}

/* Hide ☰ icon on desktop */
@media (min-width: 769px) {
    .menu-icon {
        display: none; /* Hide ☰ icon on desktop */
    }
}



/* Variable Definitions */
:root {
    --primary-color: #4caf50;
    --secondary-color: #ff9800;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --button-hover-color: #ff5722;
    --background-blur: rgba(0, 0, 0, 0.5);
    --transition: 0.3s ease;
}


/* Slider Section */
.slider {
    position: relative;
    height: 500px; /* Set the height of the slider */
    background: url(royaltaxi.jpeg) no-repeat center center / cover;
    display: flex;
    justify-content: space-between; /* Align text and form */
    align-items: center;
    padding: 0 20px;
}

/* Slider Text */
.slider-text {
    text-align: left; /* Align text on the left for desktop */
    color: white;
    max-width: 50%; /* Limit text width to 50% of the slider */
}

.slider-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
}

.slider-text p {
    font-size: 20px;
    color: #18bc9c;
    font-weight: bold;
    margin-bottom: 20px; /* Add space below the paragraph */
}

/* Contact Form */
.contact-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 35%; /* Right side form width on desktop */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

/* Form inputs & button */
.contact-form input,
.contact-form button {
    margin-bottom: 15px;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Button styles */
.contact-form button {
    background-color: #18bc9c;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #16a085;
}

/* Responsive Styles for Tablets and Small Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .slider {
        height: 500px;
        flex-direction: column; /* Stack content vertically */
    }

    .slider-text {
        max-width: 100%; /* Full width text */
        text-align: center; /* Center text on tablet */
    }

    .contact-form {
        width: 85%; /* Form width for tablets */
    }

    .slider-text p {
        font-size: 18px; /* Adjust paragraph font size for tablet */
    }
}

/* Responsive Styles for Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .slider {
        height: 500px;
        flex-direction: column; /* Stack content vertically */
        justify-content: flex-start; /* Align to the top of the slider */
    }

    .slider-text h1 {
        font-size: 32px;
    }

    .slider-text p {
        font-size: 18px;
    }

    .contact-form {
        width: 100%; /* Form width for mobile */
    }

    .contact-form input,
    .contact-form button {
        font-size: 14px;
        padding: 12px;
    }
}

/* Very Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .slider {
        height: 500px;
    }

    .slider-text h1 {
        font-size: 28px;
    }

    .slider-text p {
        font-size: 16px;
    }

    .contact-form {
        width: 100%; /* Form width for small mobile */
    }

    .contact-form input,
    .contact-form button {
        font-size: 12px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .date-picker {
        display: block;  /* Ensure it is visible */
    }
}

/* About Us Section */
.about-us {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #fff;
    font-size: 0; /* Remove space between inline-block elements */
    align-items: center; /* Vertically align content */
    flex-wrap: wrap; /* Ensure content wraps on smaller screens */
}

.about-us img {
    max-width: 40%;
    border-radius: 10px;
    font-size: 16px; /* Restore font size for the image */
    margin-right: 20px; /* Add space between image and content */
}

.about-us .content {
    width: 55%;
    font-size: 16px; /* Restore font size for the content */
}

.about-us .content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-us .content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column; /* Stack content vertically on mobile */
        align-items: center; /* Center the content */
        padding: 30px 10px; /* Adjust padding for mobile */
        font-size: 0; /* Remove space between inline-block elements */
    }

    .about-us img {
        max-width: 80%; /* Increase image size to fit mobile screen */
        margin-bottom: 20px; /* Add space below the image */
        font-size: 16px; /* Restore font size for the image */
    }

    .about-us .content {
        width: 100%; /* Take full width on mobile */
        text-align: center; /* Center the text */
        font-size: 16px; /* Restore font size for the content */
    }

    .about-us .content h2 {
        font-size: 24px; /* Reduce the font size for mobile */
        margin-bottom: 15px; /* Adjust the margin */
    }

    .about-us .content p {
        font-size: 14px; /* Smaller text for mobile */
        line-height: 1.5; /* Adjust line height */
        text-align: justify; /* Justify text for better readability */
        margin-bottom: 15px; /* Adjust margin */
    }
    .why-choose-us{
        padding:0px 0px!important;
    }
}


/* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
    background-color: #f1f1f1;
}
.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}
.services .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.services .service-list div {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.services .service-list div svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px;
}
.stats .stat {
    display: inline-block;
    margin: 0 30px;
}
.stats .stat h3 {
    font-size: 30px;
    margin: 0;
}
.stats .stat p {
    font-size: 16px;
}

.features {
    text-align: center;
    background-color: #f9f9f9;
    padding: 3rem 1rem;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    max-width: 100%; /* Prevent exceeding screen width */
}

.feature-item {
    flex: 1; /* Equal width for all items */
    max-width: 23%; /* Limit width to fit 4 items in a row */
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    fill: #18bc9c; /* Icon color */
}

.feature-icon1 {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    fill: #FF4500; /* Icon color */
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .features-container {
        flex-direction: row; /* Display items in rows on mobile */
        gap: 15px; /* Reduced gap between items */
    }

    .feature-item {
        max-width: 48%; /* 2 items per row (48% for spacing) */
        padding: 1.5rem; /* Reduced padding for smaller screens */
    }

    .feature-icon {
        width: 70px; /* Increase icon size on mobile */
        height: 70px; /* Keep aspect ratio */
        margin-bottom: 1.5rem; /* Increased space below the icon */
    }

    .feature-item h3 {
        font-size: 1.25rem; /* Slightly smaller heading text for mobile */
    }

    .features h2 {
        font-size: 1.75rem; /* Smaller heading size for mobile */
        margin-bottom: 1.5rem; /* Adjust margin */
    }
}

		
.service-list .reasons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.service-list .reasons div {
    text-align: center;
    width: 30%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.service-list .reasons div img {
    width: 100%;  /* Adjust the image size */
    height: auto;
    margin-bottom: 15px;
}
		
.reason-icon1 {
    width: 100%;  /* Adjust the width to match text size */
    height: 240px; /* Keep the aspect ratio */
    object-fit: cover; /* Ensures image covers the area without distortion */
    margin-bottom: 15px; /* Space between image and text */
}
		

/* Why Choose Us */
/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 20px;
    background-color: #f1f1f1;
    text-align: center;
}
.why-choose-us h2 {
    font-size: 32px;
    margin-bottom: 30px;
}
.why-choose-us h3 {
    font-size: 20px;
    margin: 10px 0;
}
.why-choose-us .reasons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.why-choose-us .reasons div {
    text-align: center;
    width: 30%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.why-choose-us .reasons div img {
    width: 100%;  /* Adjust the image size */
    height: auto;
    margin-bottom: 15px;
}
.why-choose-us .reasons div h3 {
    font-size: 20px;
    margin: 10px 0;
}
.reason-icon {
    width: 60px;  /* Adjust the width to match text size */
    height: 60px; /* Keep the aspect ratio */
    object-fit: cover; /* Ensures image covers the area without distortion */
    margin-bottom: 15px; /* Space between image and text */
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .why-choose-us h2 {
        font-size: 26px; /* Slightly smaller heading for mobile */
        margin-bottom: 20px;
    }

    .why-choose-us .reasons {
        flex-direction: column; /* Stack reasons vertically on mobile */
        align-items: center; /* Center the items */
        gap: 30px; /* Increased gap for clarity */
    }

    .why-choose-us .reasons div {
        width: 90%; /* Make the divs wider on mobile */
        padding: 30px; /* Increase padding for better balance */
    }

    .why-choose-us .reasons div img {
              width: 100%;
        height: auto;
        object-fit: contain; /* Keeps the aspect ratio intact */
        margin-bottom: 20px; /* Increase space below the image */
    }

    .why-choose-us .reasons div h3 {
        font-size: 22px; /* Larger text for mobile headings */
    }

    .reason-icon {
        width: 100px; /* Make icon larger */
        height: 100px; /* Keep aspect ratio */
    }
}


.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.testimonial-container {
    display: flex;
    gap: 1rem;
    perspective: 1000px; /* Adds 3D depth */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center; /* Centers the testimonials on smaller screens */
}

.testimonial {
    padding: 1.2rem;
    border-radius: 12px;
    color: #fff; /* Ensures text contrasts with the background */
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    text-align: left;
    width: 300px; /* Set width for better control */
    margin-bottom: 1rem; /* Add space between rows */
}

.testimonial:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-1 {
    background-color: #4caf50; /* Green */
    color: #ffffff; /* White text */
}

.testimonial-2 {
    background-color: #2196f3; /* Blue */
    color: #ffffff; /* White text */
}

.testimonial-3 {
    background-color: #ff9800; /* Orange */
    color: #ffffff; /* White text */
}

.testimonial-4 {
    background-color: #e91e63; /* Pink */
    color: #ffffff; /* White text */
}

.author {
    margin-top: 1rem;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8); /* Subdued white */
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .testimonial-container {
        gap: 0.5rem;
        flex-direction: column; /* Stack testimonials vertically */
        align-items: center; /* Center testimonials horizontally */
    }

    .testimonial {
        width: 90%; /* Make testimonials take up more width */
        font-size: 1rem; /* Reduce font size slightly for mobile */
        padding: 1rem; /* Adjust padding for mobile */
    }
}


@media (max-width: 1200px) {
    .testimonial-container {
        grid-template-columns: repeat(3, 1fr); /* 3 per row on medium screens */
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on small screens */
    }
}

@media (max-width: 480px) {
    .testimonial-container {
        grid-template-columns: 1fr; /* 1 per row on extra small screens */
    }
}



.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #18bc9c;
}

.footer-section p,
.footer-section ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #18bc9c;
}

.footer-section a {
    color: #18bc9c;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: left;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #bbb;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }
    .about-us img {
        max-width: 80%;
        margin-bottom: 20px;
    }
    .services .service-list {
        grid-template-columns: 1fr;
    }
    .features {
        flex-direction: column;
    }
    .why-choose-us .reasons {
        flex-direction: column;
        gap: 10px;
    }
	
}



/* Fixed icons container */
.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
	z-index: 999;
}

.icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.icon svg {
    display: block;
}

/* Call to Action Section */
.cta-area-modern {
    padding: 40px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-size: 0; /* Remove space between inline-block elements */
}

.cta-area-modern1 {
    padding: 25px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-size: 0; /* Remove space between inline-block elements */
}

.cta-wrapper {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    background: var(--background-blur);
    padding: 40px 20px;
    border-radius: 20px;
    font-size: 16px; /* Restore font size */
}

.cta-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 900;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 57px;
    flex-wrap: wrap;
    font-size: 16px; /* Restore font size */
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    padding: 12px 20px;
    border: 4px solid #fff;
    border-radius: 50px;
    transition: background var(--transition), color var(--transition);
    font-weight: 600;
}

.cta-contact:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--button-hover-color);
    color: #fff;
}

.cta-area-modern::before,
.cta-area-modern::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulse 6s infinite;
}

.cta-area-modern::before {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(80px);
    z-index: 0;
}

.cta-area-modern::after {
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(50px);
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
    }
}

.footer-bottom a {
    color: #18bc9c;
    text-decoration: none;
}

.why-choose-us p{
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    }
    
input[type="date"] {
  width: 100%;
}
    