/* Google Fonts: Inter */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Basic Reset and Body Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header and Navigation */

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 10;
    z-index: 1000;
}

header nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 70px; /* તમારા લોગોની ઊંચાઈ સેટ કરો */
    width: auto; /* પહોળાઈ આપમેળે સેટ થશે જેથી ઇમેજ બગડે નહીં */
}
.logo1 {
    height: 178px; /* તમારા લોગોની ઊંચાઈ સેટ કરો */
    width: auto; /* પહોળાઈ આપમેળે સેટ થશે જેથી ઇમેજ બગડે નહીં */
}
/*.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    text-decoration: none;
}*/

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f39c12;
}

.btn {
    padding: 10px 25px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative; /* આ ઉમેરો */
    z-index: 2; /* આ ઉમેરો */
}

.btn:hover {
    background-color: #e67e22;
}


/* Style for icons inside buttons */

.btn i {
    margin-right: 8px;
}

.nav-btn {
    display: block;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

.mobile-nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav-links a {
    padding: 15px 20px;
    text-decoration: none;
    color: #555;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: #f9f9f9;
}

.mobile-nav-links .btn {
    margin: 15px;
    text-align: center;
    position: relative; /* આ ઉમેરો */
    z-index: 2; /* આ ઉમેરો */
}

/* Hero Section */

.hero-bg {
    /*padding: 480px 10px 20px;*/
    padding: 490px 50px 240px;
    text-align: center;
    color: #fff;
    background-image: url(car1.png);
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x1080/334155/white?text=City+at+Night');
  */  background-size: cover;
    background-position: 0px 5px;
    position: relative; 
    
    /* આ લખાણને સેન્ટરમાં લાવવા માટે */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: -220px;
    position: relative; /* આ ઉમેરો */
    z-index: 2; /* આ ઉમેરો */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative; /* આ પ્રોપર્ટી z-index કામ કરે તે માટે જરૂરી છે */
    z-index: 2; /* ઓવરલે (z-index: 1) કરતાં ઊંચો નંબર આપો */
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    
    /* ઓવરલેનું લેયર */
    z-index: 1; 
}


/* General Section Styling */

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}


/* Booking Section */

.booking-section {
    background-color: #fff;
    padding-bottom: 0;
    /* Remove bottom padding to connect with stats */
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.booking-form-container h2 {
    margin-bottom: 1rem;
}

.booking-form-container p {
    margin-bottom: 2rem;
    color: #666;
}

#booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#booking-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

#booking-form .submit-btn {
    grid-column: 1 / -1;
    background-color: #25D366;
    font-size: 1.1rem;
}

#booking-form .submit-btn:hover {
    background-color: #1DAA53;
}


/* Stats Section */

/*.stats-section {
    padding: 0;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

.stat-item-1 {
    background-color: #2dd4bf;
    color: #fff;
}

.stat-item-2 {
    background-color: #f8f9fa;
    color: #333;
}

.stat-item-3 {
    background-color: #2c3e50;
    color: #fff;
}

.stat-item-4 {
    background-color: #059669;
    color: #fff;
}

      /*  .counter-section {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1rem;
            padding: 3rem 1rem;
        }
        @media (min-width: 768px) {
            .counter-section {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 2rem;
            }
        }
        .counter-card {
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            color: white;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
        }
        .counter-text {
            font-size: 1.25rem;
            font-weight: 400;
        } */

.stats-section {
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 11rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1rem;
        }
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 2rem;
            }
        }
        .stat-item {
            padding: 2.5rem;
            border-radius: 3rem;
            text-align: center;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: var(--accent-teal); /* Highlight numbers */
        }
        .stat-label {
            font-size: 1.25rem;
            font-weight: 400;
            color: #D1D5DB;
        }
        /* Specific colors for each item, as per the image */
        .stat-item-1 {
            background-color: #2DDBB4;
        }
        .stat-item-2 {
            background-color: #fff;
            color: #1F2937;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .stat-item-2 .stat-number {
            color: #1F2937;
        }
        .stat-item-2 .stat-label {
            color: #6B7280;
        }
        .stat-item-3 {
            background-color: #374151;
        }
        .stat-item-4 {
            background-color: #16A34A;
        }

/* Favourite Routes Section */

.routes-section {
   /* background-color: #475569;*/
    background-color: whitesmoke;
    color: #fff;
    padding: 40px;
}

.routes-subtitle {
    text-align: center;
    color: #ff9b04;
    font-weight: 600;
    margin-bottom: 0 rem;
}

.routes-title {
   /* color: #fff;*/
    color: black;
    margin-bottom: 3rem;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card {
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.route-card-header {
    background-color: #10b981;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.route-card-body {
    padding: 25px;
    text-align: center;
}

.route-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.route-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.price-details {
    text-align: left;
    margin-bottom: 20px;
}

.price-details p {
    margin-bottom: 8px;
}

.price-details span {
    font-weight: 600;
}

.book-now-btn {
    display: block;
    width: 100%;
    background-color: #10b981;
}

.book-now-btn:hover {
    background-color: #059669;
}


/* Services Section */

.services-section {
    background-color: #f4f4f9;
    padding: 40px;
}

.services-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.service-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #fdf2e9;
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}


/* About Us Section */

.about-section {
    background-color: #fff;
    padding: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 450px;
}

/*.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}*/

/*.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 12px;
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}*/

.about-img-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    border-radius: 10%;
    /*border-radius: 12px;
    border: 5px solid #fff;*/
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 5px solid #fff;
}

.about-subtitle {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}


/* Cars We Have Section */

.cars-section {
    background-color: #f0f2f5;
    padding: 40px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.car-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.car-card-header {
    background-color: #10b981;
    color: #fff;
    padding: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.car-card img {
    width: 100%;
    height: auto;
    display: block;
}

.car-card-body {
    padding: 20px;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.car-card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

.car-card-body ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.car-card-body ul li::before {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981;
    position: absolute;
    left: 0;
}

.car-book-btn {
    width: 100%;
    background-color: #25D366;
}

.car-book-btn:hover {
    background-color: #1DAA53;
}

.cars-footer-note {
    text-align: center;
    margin-top: 30px;
    color: #555;
    font-style: italic;
}


/* Testimonials Section */

.testimonials-section {
    background-color: #f8f9fa;
    padding: 50px;
}

.testimonials-subtitle {
    text-align: center;
    /*color: #10b981;*/
    color: #ff9b04;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.testimonial-card .stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-card .location {
    color: #777;
    margin-bottom: 15px;
}


/* Footer */

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

html {
    scroll-behavior: smooth;
}

.logo1 {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.logo1:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.logo1:active {
    transform: scale(0.95);
}


/* Responsive Design */

@media (max-width: 1200px) {
    .cars-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .nav-btn {
        display: none;
    }
    .menu-icon {
        display: block;
    }
    .routes-grid,
    .services-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-images {
        margin-bottom: 30px;
        height: 350px;
    }
    .about-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    #booking-form {
        grid-template-columns: 1fr;
    }
    .routes-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .cars-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us Section */

.why-choose-us-section {
    background-color: #f0f2f5;
    padding: 40px;
}

.section-subtitle {
    text-align: center;
    color: #ff9b04;
   /* color: #10b981;*/
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.why-choose-us-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.why-choose-us-icon {
    font-size: 2.5rem;
    color: #555;
    margin-bottom: 20px;
}

.why-choose-us-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #b97b10;
}

.why-choose-us-card p {
    color: #666;
    margin-bottom: 25px;
}

.why-choose-us-link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}


/* Add to your responsive section */

@media (max-width: 992px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }
}
