 /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Indian Flag Colors */
:root {
    --saffron: #FF9933;
    --white: #FFFFFF;
    --green: #138808;
    --navy: #000080;
    --dark-green: #0a5c08;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    color: var(--navy);
    padding: 5px 0;
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 10px;
    color: var(--navy);
}

.logo-icon {
    font-size: 2rem;
    color: var(--saffron);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--saffron);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--saffron);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.desktop-call-button {
    background-color: var(--green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.desktop-call-button:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-button {
    background-color: var(--green);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Carousel - Full Width */
.hero-carousel {
    position: relative;
    height: 100vh;
    width: 100vw;
    /*margin-top: 70px;*/
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slide-bg-1 {
    background-image: url('../img/ci1.jpeg');
}

.slide-bg-2 {
    background-image: url('../img/ci2.jpg');
}

.slide-bg-3 {
    background-image: url('../img/ci3.jpeg');
}
.slide-bg-4{
    background-image: url('../img/ci4.jpeg');
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--saffron);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Form */
.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0px auto 80px;
    position: relative;
    z-index: 10;
    border-top: 5px solid var(--saffron);
    border-bottom: 5px solid var(--green);
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--navy);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.booking-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: var(--light-gray);
}

.form-control:focus {
    border-color: var(--saffron);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
    background-color: white;
}

.form-button {
    text-align: center;
    margin-top: 10px;
}

/* Vehicle Models Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--green));
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.vehicles-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* Vehicle Carousel - Full Width */
/* Vehicle Models Section - 3 Column Layout */
.vehicles-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.vehicle-model-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--saffron);
    position: relative;
}

.vehicle-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--green);
}

.vehicle-model-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.vehicle-model-header h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicle-model-price {
    color: var(--green);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: right;
}

.vehicle-model-details {
    padding: 20px 25px;
}

.vehicle-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.vehicle-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: var(--green);
    font-size: 1rem;
}

.detail-value.included {
    color: var(--saffron);
}

.detail-value.free {
    color: #25D366;
}

.vehicle-model-footer {
    padding: 20px 25px;
    background-color: rgba(255, 153, 51, 0.05);
    border-top: 1px solid var(--light-gray);
}

.vehicle-model-footer p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.vehicle-model-footer .icon-text {
    display: flex;
    align-items: center;
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.vehicle-model-footer .icon-text i {
    color: var(--saffron);
    margin-right: 8px;
    font-size: 0.9rem;
}

.book-now-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--green);
    color: white;
    padding: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.book-now-btn:hover {
    background-color: var(--saffron);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background-color: rgba(19, 136, 8, 0.1);
    color: var(--green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--saffron);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Car Icon Styling */
.car-icon {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 15px;
}

.vehicle-model-card:nth-child(2) .car-icon {
    color: var(--green);
}

.vehicle-model-card:nth-child(3) .car-icon {
    color: var(--navy);
}

/* Vehicle Pricing Note */
.vehicle-pricing-note {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border-left: 4px solid var(--saffron);
    border-right: 4px solid var(--green);
}

.vehicle-pricing-note p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.vehicle-pricing-note .note-icon {
    color: var(--saffron);
    margin-right: 5px;
}

/* Responsive adjustments for vehicle grid */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .vehicle-model-header h3 {
        font-size: 1.4rem;
    }
    
    .vehicle-model-price {
        font-size: 1.6rem;
    }
}
/* About Section */
.about-section {
    
    color: var(--navy);
    /* padding: 100px 0; */
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    /*flex: 1;*/
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--navy);
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    height: 400px;
    /*background: linear-gradient(135deg, var(--saffron), var(--white), var(--green));*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-gray);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--green);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%);
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--saffron);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 25px;
    transition: color 0.3s;
}

.service-card:hover .service-icon {
    color: var(--saffron);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    color: var(--dark-gray);
}

/* Testimonials */
.testimonials-section {
    background-color: #f0f4f8;
    padding: 100px 0;
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 4px solid var(--saffron);
    border-right: 4px solid var(--green);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
}

.testimonial-rating {
    color: var(--saffron);
    margin-bottom: 10px;
}

/* Side Contact Icons */
.side-contact-icons {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.side-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.side-icon.whatsapp {
    background-color: #25D366;
}

.side-icon.call {
    background-color: var(--green);
}

.side-icon-text {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.side-icon-text:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--navy);
}

.side-icon:hover .side-icon-text {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, var(--navy) 0%, #00004d 100%);
    color: #aaa;
    padding: 70px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--saffron);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--saffron);
    margin-right: 10px;
    margin-top: 4px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--saffron);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--saffron);
    color: var(--navy);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #777;
}

.copyright p {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.copyright p:before, .copyright p:after {
    content: '✸';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saffron);
}

.copyright p:before {
    left: 0;
}

.copyright p:after {
    right: 0;
}

/* Ashoka Chakra Effect */
.ashoka-chakra {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    position: relative;
    margin: 0 10px;
}

.ashoka-chakra:before {
    content: '☸';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-size: 12px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav ul li {
    margin-left: 0;
}

.mobile-nav ul li a {
    color: var(--navy);
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav ul li a:hover {
    color: var(--saffron);
    padding-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 300px;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .desktop-call-button {
        display: none;
    }
    
    .mobile-nav {
        top: 70px;
    }
    
    .vehicle-carousel {
        padding: 0 30px;
    }
    
    /*.hero-carousel {*/
    /*    margin-top: 70px;*/
    /*}*/
    
    .slide-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .booking-form {
        padding: 25px;
        margin: -80px auto 50px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .side-contact-icons {
        bottom: 80px;
        right: 15px;
    }
    
    .side-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .vehicle-carousel {
        padding: 0 20px;
    }
    
    .about-text {
        padding: 25px;
    }
    
    .about-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-carousel {
        height: 80vh;
    }
    
    .vehicle-carousel {
        padding: 0 15px;
    }
    
    .side-contact-icons {
        bottom: 70px;
        right: 10px;
    }
    
    .side-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .side-icon-text {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logoc {
        margin-right:220px;
    }
}



/* Mobile Hero Text Styling - Premium Taxi Service */
@media (max-width: 767px) {
    /* Hero Carousel Container */
    .hero-carousel {
        width: 100vw !important;
        height: 61vh !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative;
        overflow: hidden;
    }
    
    /* Slide Background */
    .swiper-slide {
        width: 100vw !important;
        height: 100vh !important;
        position: relative;
    }
    
    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw !important;
        height: 61vh !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Gradient Overlay for better text readability */
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.7) 70%,
            rgba(0, 0, 0, 0.9) 100%
        );
        z-index: 1;
    }
    
    /* Premium Text Styling */
    .slide-content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 155%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30vh;
        padding-left: 25px;
        padding-right: 25px;
        text-align: left;
    }
    
    /* Main Heading - Premium Taxi Service */
    .slide-content h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
        color: white;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        letter-spacing: -0.5px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    /* "Premium" text styling */
    .slide-content h2 .premium-text {
        color: var(--saffron);
        font-size: 2.4rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 5px;
        display: block;
    }
    
    /* "Taxi Service in Noida" text styling */
    .slide-content h2 .service-text {
        color: white;
        font-size: 1.8rem;
        font-weight: 600;
        text-transform: capitalize;
        letter-spacing: 0.5px;
        display: block;
    }
    
    /* Subtitle/Description */
    .slide-content p {
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        max-width: 90%;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
        position: relative;
        padding-left: 0;
    }
    
    /* Individual line styling for description */
    .slide-content p .line {
        display: block;
        margin-bottom: 8px;
    }
    
    .slide-content p .line:nth-child(1) {
        font-weight: 400;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .slide-content p .line:nth-child(2) {
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* CTA Button */
    .slide-content .cta-button {
        background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
        color: white;
        padding: 16px 35px;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        margin-top: 10px;
        display: inline-block;
        transition: all 0.3s ease;
        min-width: 200px;
        text-align: center;
    }
    
    .slide-content .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        background: linear-gradient(135deg, var(--green) 0%, var(--saffron) 100%);
    }
    
    /* Swiper Pagination - Position at bottom */
    .swiper-pagination {
        bottom: 40px !important;
    }
    
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.7);
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--saffron);
        width: 25px;
        border-radius: 10px;
    }
    
    /* Hide navigation arrows on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    /* Premium Badge/Decoration */
    .premium-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 153, 51, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 153, 51, 0.3);
        border-radius: 50px;
        padding: 8px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 3;
    }
    
    .premium-badge i {
        color: var(--saffron);
        font-size: 1.2rem;
    }
    
    .premium-badge span {
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    
    /* Decorative Line Under Heading */
    .slide-content h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, var(--saffron), var(--green));
        margin: 15px 0;
        border-radius: 2px;
    }
}


/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--navy);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 128, 0.95), rgba(255, 153, 51, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: bottom 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-actions a,
.gallery-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-actions .book-now {
    background: var(--green);
    color: white;
}

.gallery-actions .book-now:hover {
    background: #0a5c08;
    transform: translateY(-2px);
}

.gallery-actions .view-details {
    background: white;
    color: var(--navy);
}

.gallery-actions .view-details:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
}

.gallery-footer {
    text-align: center;
    margin-top: 40px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    color: var(--navy);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    color: var(--saffron);
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px 0;
}

/* Modal Content Styles */
.modal-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.modal-detail-image {
    flex: 1;
    min-width: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modal-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-detail-info {
    flex: 1;
    min-width: 250px;
}

.modal-detail-info h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-price {
    color: var(--green);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-features {
    list-style: none;
    margin-bottom: 20px;
}

.modal-features li {
    margin-bottom: 10px;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.modal-features i {
    color: var(--saffron);
    margin-right: 10px;
    width: 20px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.modal-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-buttons .book-now-btn {
    background: var(--green);
    color: white;
}

.modal-buttons .book-now-btn:hover {
    background: #0a5c08;
    transform: translateY(-2px);
}

.modal-buttons .whatsapp-btn {
    background: #25D366;
    color: white;
}

.modal-buttons .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .modal-detail {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
}

/* Animation for gallery items */
.gallery-item {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indian Flag Border for Gallery Items */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}




/* Small Mobile Devices */
@media (max-width: 360px) {
    .slide-content {
        padding-top: 25vh;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .slide-content h2 .premium-text {
        font-size: 2rem;
    }
    
    .slide-content h2 .service-text {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        max-width: 95%;
    }
    
    .slide-content .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Landscape Mode */
@media (max-width: 767px) and (orientation: landscape) {
    .slide-content {
        padding-top: 15vh;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .slide-content h2 .premium-text {
        font-size: 2rem;
    }
    
    .slide-content h2 .service-text {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        max-width: 70%;
        margin-bottom: 20px;
    }
    
    .slide-content .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
    /* Override mobile styles for tablet/desktop */
    .slide-content {
        text-align: center;
        padding-top: 35vh;
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .slide-content h2 {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .slide-content h2 .premium-text {
        font-size: 4rem;
        display: inline;
    }
    
    .slide-content h2 .service-text {
        font-size: 3rem;
        display: inline;
    }
    
    .slide-content p {
        font-size: 1.3rem;
        max-width: 70%;
        margin: 0 auto 40px;
        text-align: center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
    }
}

/* Update your HTML for this styling */

