:root {
    --dark-green: #1a3642;
    --medium-green: #eac50e;
    --light-green: #f6db02;
    --white: #ffffff;
    --light-gray: #f0e5ca;
    --dark-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: var(--dark-green);
    padding: 3px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    width: 80px;
    border-radius: 50%;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px; /* space between buttons */
  z-index: 1000;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* WhatsApp button */
.float-btn.whatsapp {
  background-color: #25d366;
}

/* Phone button */
.float-btn.phone {
  background-color: #0c9;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--light-green);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(#1a3642, #f0e5ca), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 600px;
    color: var(--medium-green);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-carousel .hero {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: all 1s ease-in-out;
  }
  
  .hero-carousel .hero.active {
    left: 0;
    opacity: 1;
    z-index: 1;
  }

  .hero-buttons a{
    margin: 5px;
  }
  

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--medium-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--medium-green);
}

.btn:hover {
    background-color: var(--white);
    color: var(--medium-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 15px;
}

.btn-light:hover {
    background-color: var(--white);
    color: var(--dark-green);
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-green);
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--medium-green);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-green);
}

 .about-text h4 {
    color: #ffd400;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 10px;
     
 }
 
 .about-image video {
  width: 100%;
  height: auto;
  border-radius: 12px; /* if you want rounded corners */
  object-fit: cover;   /* make video cover the container */
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--medium-green);
    margin-right: 15px;
    font-size: 20px;
}

/* Fleet Section */
.fleet {
    background-color: var(--light-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    height: 200px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-details {
    padding: 20px;
}

.fleet-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.fleet-features {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.fleet-feature {
    text-align: center;
}

.fleet-feature i {
    color: var(--medium-green);
    font-size: 20px;
    margin-bottom: 5px;
}

.fleet-feature span {
    font-size: 14px;
}

.fleet-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--medium-green);
    margin: 15px 0;
    text-align: center;
}

.fleet-pricing{
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
    padding: 10px;
}

.fleet-note{
    margin:20px
}

    /* Sightseeing Section */
    .sightseeing {
        padding: 80px 0;
        background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    }

    .sightseeing-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px;
        font-size: 1.1rem;
        color: var(--gray);
    }

    .sightseeing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .tour-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .tour-image {
        height: 200px;
        overflow: hidden;
    }

    .tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .tour-card:hover .tour-image img {
        transform: scale(1.05);
    }

    .tour-details {
        padding: 25px;
    }

    .tour-details h3 {
        color: var(--secondary);
        margin-bottom: 10px;
        font-size: 1.4rem;
    }

    .tour-details p {
        color: var(--gray);
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .tour-features {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .tour-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: var(--dark);
    }

    .tour-feature i {
        color: var(--primary);
        width: 16px;
    }

    .tour-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .price-tag {
        font-weight: 700;
        color: var(--secondary);
        font-size: 1.2rem;
    }

    .price-note {
        font-size: 0.8rem;
        color: var(--gray);
    }

    .tour-note {
        background: #fff9e6;
        padding: 15px;
        border-radius: 8px;
        margin-top: 30px;
        border-left: 4px solid #ffc107;
    }

    .tour-note strong {
        color: var(--secondary);
    }

    .tour-note em {
        color: var(--primary);
    }

        /* Festivals & Events Section Styles */
        .festivals {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f0f8ff, var(--dark-green));
        }
        
        .festivals-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .festivals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .event-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        .event-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .event-card:hover .event-image img {
            transform: scale(1.08);
        }
        
        .event-details {
            padding: 25px;
        }
        
        .event-details h3 {
            color: var(--secondary);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .event-details p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .event-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .event-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--dark);
            background: #f8f9fa;
            padding: 6px 12px;
            border-radius: 20px;
        }
        
        .event-feature i {
            color: var(--primary);
            width: 14px;
            text-align: center;
        }
        
        .event-note {
            background: #e8f4fd;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 4px solid var(--secondary);
            font-size: 0.95rem;
        }
        
        .event-note strong {
            color: var(--secondary);
        }
        
        .event-note em {
            color: var(--primary);
            font-style: italic;
        }


        .travel-services {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.08);
        }
        
        .service-details {
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 200px);
        }
        
        .service-details h3 {
            color: var(--secondary);
            margin-bottom: 12px;
            font-size: 1.4rem;
        }
        
        .service-details p {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .service-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .service-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--dark);
            background: #f8f9fa;
            padding: 8px 12px;
            border-radius: 8px;
        }
        
        .service-feature i {
            color: var(--primary);
            width: 16px;
            text-align: center;
        }

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, #f0e5ca, var(--dark-green));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title:after {
    background-color: var(--light-green);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 50px;
    color: var(--light-green);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -10px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-details p {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-green);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-details i {
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 20px;
    margin-right: 15px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--light-green);
    bottom: 0;
    left: 0;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--light-green);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

        .flt-card {
            position: relative;
            width: 350px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .flt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .flt-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .flt-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .flt-card:hover .flt-image img {
            transform: scale(1.05);
        }
        
        /* New Car Ribbon */
        .new-ribbon {
            position: absolute;
            top: 28px;
            right: -50px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #333;
            padding: 8px 40px;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transform: rotate(45deg);
            z-index: 10;
        }
        
        .new-ribbon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .new-ribbon::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 5px;
            background: rgba(0, 0, 0, 0.1);
        }
        
        .flt-details {
            padding: 20px;
        }
        
        .flt-details h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .flt-details p {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .flt-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .flt-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #34495e;
            font-size: 0.9rem;
        }
        
        .flt-feature i {
            color: #3498db;
        }
        
        .flt-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 15px;
            text-align: center;
            background: #f9f9f9;
            padding: 10px;
            border-radius: 8px;
        }
        
        .flt-pricing {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #555;
        }
        
        .flt-pricing div {
            display: flex;
            justify-content: space-between;
        }
        
        .flt-pricing strong {
            color: #2c3e50;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--dark-green);
        flex-direction: column;
        padding: 100px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }

    .hero-carousel .hero:nth-of-type(2) {
        background-position: left center; /* or right center */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    /* sightseeing */
    .sightseeing-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-price {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    /* festivals */
    .festivals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .event-features {
        gap: 8px;
    }
    
    .event-feature {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}