*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    outline: none;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x:hidden
}

header {
    background: #000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000; /* Highlight color for hover */
}

.cta {
    margin-left: 2rem;
    padding: 0.5rem 1rem;
    background: #ffa500; /* Button color */
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta:hover {
    background: #ff8c00; /* Button hover color */
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-icon .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-top: 1px solid #333;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: flex;
    }

    /* Existing CSS styles */

.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    padding: 8rem 0;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.secondary-cta {
    margin-left: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
}
/* Existing CSS styles */

.hero {
    background: url('https://cdn.leonardo.ai/users/8736217e-f504-4626-b907-a1b34b11c102/generations/1a8e32a6-e1e0-4a59-8627-7a8e921015ed/Default_TRavels_car_image_4k_2.jpg') no-repeat center center/cover;
    padding: 8rem 0;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.secondary-cta {
    margin-left: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
/* Existing CSS styles */

/* About Us Section */
.about-us {
    background: #111;
    color: #fff;
    padding: 4rem 0;
}

.about-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content {
    flex: 1 1 45%;
    margin: 1rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1 1 45%;
    margin: 1rem 0;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {

    html,body{
        width: 100%;
        margin: 0;
        height: 100%;
        padding: 0;
        overflow-x:hidden;
    }
    
    .about-us .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content,
    .about-image {
        flex: 1 1 100%;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}


/* Existing CSS styles */

/* Featured Destinations Section */
.featured-destinations {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.featured-destinations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-destinations h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.destination-card {
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: left;
}

.destination-card img {
    width: 100%;
    height: auto;
}

.destination-card h3 {
    font-size: 1.5rem;
    margin: 1rem;
}

.destination-card p {
    font-size: 1rem;
    margin: 0 1rem 1rem 1rem;
}

.destination-card .cta {
    display: block;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background: #ffa500;
    color: #000;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.destination-card .cta:hover {
    background: #ff8c00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    html,body{
        width: 100%;
        margin: 0;
        height: 100%;
        padding: 0;
        overflow-x:hidden;
    }
    
    .destinations-grid {
        flex-direction: column;
        align-items: center;
    }

    .destination-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    html,body{
        width: 100%;
        margin: 0;
        height: 100%;
        padding: 0;
        overflow-x:hidden;
    }
    
    .featured-destinations h2 {
        font-size: 2rem;
    }

    .destination-card h3 {
        font-size: 1.25rem;
    }

    .destination-card p {
        font-size: 0.9rem;
    }

    .destination-card .cta {
        font-size: 0.9rem;
    }
}


/* Existing CSS styles */

/* Services Section */
.services {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-card {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    padding: 2rem;
    flex: 1 1 22%;
    max-width: 22%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    html,body{
        width: 100%;
        margin: 0;
        height: 100%;
        padding: 0;
        overflow-x:hidden;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    
    html,body{
        width: 100%;
        margin: 0;
        height: 100%;
        padding: 0;
        overflow-x:hidden;
    }
    
    
    .services h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }
}
/* Existing CSS styles */

/* Testimonials Section */
.testimonials {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial-card {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    padding: 2rem;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #ffa500; /* Highlight color for name */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial-card h3 {
        font-size: 1rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }
}

/* Existing CSS styles */

/* How It Works Section */
.how-it-works {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.step-card {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    padding: 2rem;
    flex: 1 1 30%;
    max-width: 30%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-size: 2.5rem;
    background: #ffa500;
    color: #111;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .how-it-works h2 {
        font-size: 2rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .step-number {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}
/* Existing CSS styles */

/* Special Offers Section */
.special-offers {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.special-offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.special-offers h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.offer-card {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    flex: 1 1 30%;
    max-width: 30%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.offer-card img {
    width: 100%;
    height: auto;
}

.offer-content {
    padding: 1.5rem;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.offer-content .cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffa500;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.offer-content .cta:hover {
    background: #ff8c00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .offers-grid {
        flex-direction: column;
        align-items: center;
    }

    .offer-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .special-offers h2 {
        font-size: 2rem;
    }

    .offer-content h3 {
        font-size: 1.25rem;
    }

    .offer-content p {
        font-size: 0.9rem;
    }
}
/* Existing CSS styles */

/* Blog Section */
.blog {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.blog-card {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    flex: 1 1 30%;
    max-width: 30%;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.blog-card img {
    width: 100%;
    height: auto;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.blog-content .cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffa500;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.blog-content .cta:hover {
    background: #ff8c00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-grid {
        flex-direction: column;
        align-items: center;
    }

    .blog-card {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .blog h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.25rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }
}

/* Existing CSS styles */
/* Existing CSS styles */

/* Contact Us Section */
.contact-us {
    background: #111;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.contact-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact-info,
.contact-form {
    background: #222;
    border-radius: 8px;
    margin: 1rem;
    padding: 2rem;
    flex: 1 1 45%;
    max-width: 45%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p,
.contact-info ul {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 0.5rem;
}

.contact-info ul li strong {
    color: #ffa500;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #ffa500;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input {
    height: 2.5rem;
}

.cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffa500;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.cta:hover {
    background: #ff8c00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 80%;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .contact-us h2 {
        font-size: 2rem;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.25rem;
    }

    .contact-info p,
    .contact-info ul,
    .contact-info ul li,
    .contact-form form,
    .form-group label,
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }
}


/* Existing CSS styles */

/* Footer Section */
footer {
    background: #111;
    color: #fff;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-section {
    flex: 1 1 30%;
    max-width: 30%;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background: #222;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
}





