@media (max-width: 600px) {
    .contact-whatsapp-box {
        padding: 18px 6px 14px 6px;
        max-width: 98vw;
    }
    .whatsapp-contacts {
        flex-direction: column;
        gap: 10px;
    }
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 10px 0;
    }
    .contact-container {
        padding: 0 2vw;
    }
}
/* Contact WhatsApp Box Styles */
.contact-whatsapp-box {
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,42,83,0.07);
    padding: 32px 20px 24px 20px;
    margin: 32px auto 24px auto;
    max-width: 420px;
    text-align: center;
}
.contact-whatsapp-box label {
    font-size: 1.1rem;
    color: #2e2a53;
    margin-bottom: 10px;
    display: block;
}
.contact-whatsapp-box select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #c37e0f;
    font-size: 1rem;
    margin-bottom: 18px;
    outline: none;
    background: #fff;
    color: #2e2a53;
    transition: border 0.2s;
}
.contact-whatsapp-box select:focus {
    border: 1.5px solid #2e2a53;
}
.whatsapp-contacts {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 24px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,42,83,0.07);
    transition: background 0.2s, color 0.2s;
}
.whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
}
.whatsapp-btn i.fa-whatsapp {
    font-size: 1.3em;
}
/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
    padding: 50px 0 40px 0;
}
.why-choose-us .section-title {
    text-align: center;
    color: #2e2a53;
    font-size: 2rem;
    margin-bottom: 36px;
    font-weight: 700;
}
.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.why-card {
    background: #f7f7fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,42,83,0.07);
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 260px;
    padding: 28px 16px 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.why-card i.fa {
    font-size: 2rem;
    color: #c37e0f;
    margin-bottom: 12px;
}
.why-card h3 {
    color: #2e2a53;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.why-card p {
    color: #444;
    font-size: 0.98rem;
}

/* Testimonials Section */
.testimonials {
    background: #f7f7fa;
    padding: 50px 0 40px 0;
}
.testimonials .section-title {
    text-align: center;
    color: #2e2a53;
    font-size: 2rem;
    margin-bottom: 36px;
    font-weight: 700;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,42,83,0.07);
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    padding: 28px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    font-style: italic;
    font-size: 1.05rem;
}
.testimonial-card span {
    font-style: normal;
    color: #c37e0f;
    font-size: 0.98rem;
    margin-top: 12px;
    display: block;
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 50px 0 40px 0;
}
.faq .section-title {
    text-align: center;
    color: #2e2a53;
    font-size: 2rem;
    margin-bottom: 36px;
    font-weight: 700;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 18px;
    border-radius: 8px;
    background: #f7f7fa;
    box-shadow: 0 1px 6px rgba(44,42,83,0.04);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #2e2a53;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #e9e6f3;
}
.faq-answer {
    display: none;
    padding: 0 18px 14px 18px;
    color: #444;
    font-size: 1rem;
}
.faq-item.open .faq-answer {
    display: block;
}

/* Book a Driver Button (Floating) */
.book-driver-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #c37e0f;
    color: #fff;
    padding: 16px 36px;
    border-radius: 32px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(44,42,83,0.13);
    z-index: 1000;
    transition: background 0.2s, color 0.2s;
}
.book-driver-btn:hover {
    background: #2e2a53;
    color: #fff;
}
@media (max-width: 900px) {
    .why-grid, .testimonials-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .why-card, .testimonial-card {
        min-width: 90%;
        max-width: 98%;
    }
    .book-driver-btn {
        right: 10px;
        bottom: 10px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* Service Packages Section */
.packages {
    background: #f7f7fa;
    padding: 50px 0 40px 0;
}
.packages-title {
    text-align: center;
    color: #2e2a53;
    font-size: 2rem;
    margin-bottom: 36px;
    font-weight: 700;
}
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.package-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(44,42,83,0.07);
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 320px;
    padding: 32px 20px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.package-card:hover {
    box-shadow: 0 6px 32px rgba(44,42,83,0.13);
    transform: translateY(-4px) scale(1.03);
}
.package-card i.fa {
    font-size: 2.5rem;
    color: #c37e0f;
    margin-bottom: 18px;
}
.package-card h3 {
    color: #2e2a53;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.package-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 22px;
}
.package-btn {
    display: inline-block;
    background: #c37e0f;
    color: #fff;
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
    margin-top: auto;
}
.package-btn:hover {
    background: #2e2a53;
    color: #fff;
}
@media (max-width: 900px) {
    .packages-grid {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .package-card {
        min-width: 90%;
        max-width: 98%;
    }
}
/* HERO SECTION FULL BACKGROUND SLIDER */

body{
    
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.hero{
    padding: 0;
    margin: 0;
    height: 500px;
    overflow: hidden;
    position: relative;
}
.hero-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.hero-images img.active {
    opacity: 1;
}

/* Content on top */
/* .hero-content {

    position: relative;
    z-index: 2;
    color: #2e2a53;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
} */
.hero-content {
    position: relative;
    z-index: 2;
    color: #2e2a53;
    text-align: center;

    top: 50%;
    transform: translateY(-50%);

    /* 🔥 Add box styling */
    background: rgba(255, 255, 255, 0.85); /* transparent white */
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    margin: auto;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

.hero-arrow.left {
    left: 10px;
}

.hero-arrow.right {
    right: 10px;
}

.objectives {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    background: #f7f7fa;
    padding: 40px 0 10px 0; 
    
}

.objectives-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,42,83,0.07);
    flex: 1 1 300px;
    min-width: 260px;
    margin: 0 10px;
    padding: 30px 24px;
    position: relative;
}

.objectives-content h2 {
    color: #2e2a53;
    font-size: 1.5rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.objectives-content h2 .fa {
    color: #c37e0f;
    font-size: 1.3em;
}

.objectives-content ul {
    padding-left: 0;
    list-style: none;
}

.objectives-content li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.objectives-content li .fa {
    color: #6c2eb7;
    font-size: 1.1em;
    margin-top: 3px;
}

@media (max-width: 900px) {
    .objectives {
        flex-direction: column;
        gap: 18px;
        padding: 20px 5px;
    }
    .objectives-content {
        margin: 0 0 10px 0;
        padding: 20px 10px;
    }
}


   
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2e2a53;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(192, 126,15,1);
    /* position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 1000; */
}
.header h1 span{
    color: #c37e0f;
}
.header h1{
    color: #fff;
    margin: 0;
}
.header h1 a{
    list-style: none;
    color: #fff;
    text-decoration: none;

}
.header a{
    color: #fff;
    text-decoration: none;
}
.header ul{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    justify-content: space-between;
    transition: max-height 0.3s ease;
}
.header ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.header ul li a:hover{
    color: #c37e0f;
    text-decoration: underline;
}
.header ul li a.active{
    color: #c37e0f;
    text-decoration: underline;
}
.toggle-menu {
    display: none;
}
@media screen and (max-width: 768px) {
    .toggle-menu{
        display: block;
        cursor: pointer;
    }
    .header{
        flex-direction: column;
        align-items: flex-start;
    }
    .header h1{
        margin-bottom: 10px;
    }
    .header ul{
        flex-direction: column;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        width: 100%;
        background: #2e2a53;
        padding-left: 0;
    }
    .header ul.active{
        max-height: 500px;
        padding: 10px 0;
    }
    .toggle-menu{
        display: block;
        color: #fff;
        font-size: 28px;
        margin-left: 20px;
    }
    .header{
        flex-direction: row;
        align-items: center;
    }
    .header h1{
        margin-bottom: 0;
    }
}

/* Footer Styles */
.footer {
    background-color: #2e2a53;
    color: #fff;
    padding: 40px 20px 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.footer h2 span:first-child {
    color: #fff;
}
.footer h2 span:last-child {
    color: #c37e0f;
}
.footer h2 {
    color: #c37e0f;
    margin-bottom: 10px;
}
.footer p{
    text-align: left;
}
.footer p, .footer ul, .footer li, .footer a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    margin: 0;
    padding: 0;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer .profile, .footer .contact-info, .footer .quick-links, .footer .social-media {
    flex: 1 1 200px;
    margin-bottom: 20px;
}
.footer .social-media a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-size: 24px;
    transition: color 0.3s;
}
.footer .social-media a:hover {
    color: #c37e0f;
}
.footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
    width: 100%;
    text-align: left;
}

@media screen and (max-width: 900px) {
    .footer {
        
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 10px 5px 10px;
    }
    .footer p {
        text-align: left;
        margin-top: 10px;
    }
    .footer .profile, .footer .contact-info, .footer .quick-links, .footer .social-media {
        flex: none;
        width: 100%;
        margin-bottom: 8px;
    }
}