/* General Body and Container Styling */
body {
    font-family: 'Poppins', sans-serif; /* Google Font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation Bar */
header {
    background-color: #04912a; /* আপনার পছন্দের রঙ */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: 700; /* Poppins ExtraBold */
    color: #f2f2f2; /* Primary brand color */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 5px; /* লোগো ইমেজের কোণা গোলাকার */
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #f2f2f2;
    font-weight: 600; /* Poppins SemiBold */
    padding: 5px 0;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: #c4cfc7
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600; /* Poppins SemiBold */
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #28a745; /* Green color */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600; /* Poppins SemiBold */
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #218838;
}

/* Mobile Menu Toggle (Hamburger Icon) */
.menu-toggle {
    display: none; /* Hide by default on desktop */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.3s;
}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    /* নিশ্চিত করুন যে অন্যান্য স্টাইল প্রপার্টিগুলো আলাদা লাইনে আছে এবং তাদের নিজস্ব সেমিকোলন আছে */
    color: white;
    text-align: center;
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700; /* Poppins Bold */
}

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400; /* Poppins Regular */
}

/* General Section Styling */
section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9; /* Light background for contrast */
}

section:nth-of-type(odd) { /* Alternate background color for readability */
    background-color: #ffffff;
}

section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700; /* Poppins Bold */
}

section .section-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400; /* Poppins Regular */
}

/* Why Drive With Us Section */
.why-drive-with-us-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-drive-with-us-section .benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-drive-with-us-section .benefit-item:hover {
    transform: translateY(-10px);
}

.why-drive-with-us-section .benefit-item i {
    font-size: 3em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
}

.why-drive-with-us-section .benefit-item h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600; /* Poppins SemiBold */
}

.why-drive-with-us-section .benefit-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    font-weight: 400; /* Poppins Regular */
}

/* Requirements Section */
.requirements-section .requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirements-section .requirement-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: left;
}
.requirements-section .requirement-item:hover {
    transform: translateY(-5px);
}

.requirements-section .requirement-item i {
    font-size: 2.5em;
    color: #28a745; /* Green color */
    margin-bottom: 15px;
}

.requirements-section .requirement-item h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600; /* Poppins SemiBold */
}

.requirements-section .requirement-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    font-weight: 400; /* Poppins Regular */
}

/* How It Works Section */
.how-it-works-section {
    background-color: #e0eaff; /* Light blue background */
}

.how-it-works-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.how-it-works-section .step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.how-it-works-section .step-item .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    font-size: 1.8em;
    font-weight: 700; /* Poppins Bold */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.how-it-works-section .step-item i {
    font-size: 2.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.how-it-works-section .step-item h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600; /* Poppins SemiBold */
}

.how-it-works-section .step-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    font-weight: 400; /* Poppins Regular */
}

/* FAQ Section */
.faq-section .faq-accordion {
    max-width: 800px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.faq-section .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-header {
    width: 100%;
    background-color: #f0f0f0;
    color: #333;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600; /* Poppins SemiBold */
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-header:hover {
    background-color: #e0e0e0;
}

.faq-section .accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.faq-section .accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-section .accordion-content p {
    padding-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 400; /* Poppins Regular */
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f0f8ff; /* Lightest blue */
}

.testimonials-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonials-section .testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    padding-top: 70px; /* Space for quote icon */
}

.testimonials-section .testimonial-item .quote {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400; /* Poppins Regular */
}

/* Quote Icon - using :before pseudo-element */
.testimonials-section .testimonial-item::before {
    content: "\f10d"; /* Font Awesome quote-left icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* Necessary for Solid icons */
    font-size: 2.5em;
    color: #007bff;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

.testimonials-section .driver-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.testimonials-section .driver-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #007bff;
}

.testimonials-section .driver-info h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600; /* Poppins SemiBold */
}

.testimonials-section .driver-info p {
    font-size: 0.9em;
    color: #777;
    font-weight: 400; /* Poppins Regular */
}

/* Application Form Section */
.application-form-section {
    background-color: #f0f0f0;
    padding: 60px 0;
}

.application-form-section .container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.application-form-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.application-form-section .section-description {
    text-align: center;
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600; /* Poppins SemiBold */
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Ensures padding doesn't increase width */
    font-family: 'Poppins', sans-serif; /* Use Poppins for form inputs */
}

.form-group input[type="file"] {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.application-form-section button[type="submit"] {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 1.2em;
    font-weight: 600; /* Poppins SemiBold */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.application-form-section button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .social-links {
    margin-bottom: 15px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #007bff;
}

footer p {
    margin-top: 15px;
    font-weight: 300; /* Poppins Light */
}

footer p a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-weight: 400;
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px; /* Adjust padding for smaller screens */
    }
    .navbar .nav-links {
        display: none; /* Hide navigation links by default on small screens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 999;
    }

    .navbar .nav-links.active {
        display: flex; /* Show navigation links when active */
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .navbar .nav-links a {
        color: #333; /* Dark text for mobile menu items */
    }

    .menu-toggle {
        display: flex; /* Show hamburger icon on small screens */
    }

    .hero-section {
        padding: 100px 0;
        min-height: 400px; /* Adjust height for mobile */
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    section {
        padding: 50px 0;
    }
    section h2 {
        font-size: 2em;
    }
    
    section .section-description {
        margin-bottom: 30px;
    }

    .why-drive-with-us-section .benefits-grid,
    .requirements-section .requirements-list,
    .how-it-works-section .steps-grid,
    .testimonials-section .testimonial-grid {
        grid-template-columns: 1fr; /* Stack items vertically on small screens */
    }

    .application-form-section .container {
        padding: 20px;
    }

    .form-row {
        flex-direction: column; /* Stack form fields vertically on small screens */
        gap: 0; /* Remove gap */
    }
    .form-group {
        margin-bottom: 15px; /* Adjust margin for stacked fields */
    }
}