body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Call icon styling */
.call-icon {
    font-size: 1.4rem;
    color: #000;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.call-icon i {
    transition: color 0.3s ease;
}

.call-icon:hover i {
    color: #ffcc00;
}

.navbar {
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    box-shadow: 0 4px 6px rgba(231, 180, 180, 0.1);
    overflow: hidden; 
    display: flex;
    flex-wrap: wrap; 
    position: sticky;
    z-index: 100;
    top: 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.7rem;
    color: #000000;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28128, 128, 128, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
}

.nav-link {
    font-size: 1.2rem;
    color: #fff;
    padding-right: 1rem;
    transition: 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

.nav-link.btn-book {
    font-size: 1.1rem;
    background-color: #ffcc00;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0; 
    margin-left: auto;
}

.nav-link.btn-book:hover {
    background-color: #ff6600;
    transform: scale(1.1);
}

/* Carousel Styling */
.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pricing Packages Section Styles */
.pricing-section {
    background-color: #ffffff;
    text-align: center;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
}

.btn-primary:hover {
    background-color: #ff3300;
    border-color: #ff3300;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    background-color: #f8f9fa;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #6c757d;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.feature-card i {
    color: #ff6600;
}

/* Service Card Alignment */
.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.left-aligned {
    text-align: left;
    border-left: 5px solid #ff6600;
}

.right-aligned {
    text-align: right;
    border-right: 5px solid #ff6600;
}

/* Adjustments for the icon */
.service-card .icon {
    margin-bottom: 1.5rem;
}

/* Testimonials Section Styles */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #555;
}

/* Stats Section Styles */
.stats-section {
    background-color: #f8f9fa;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.stat-card i {
    color: #ff6600;
}

.stat-count {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.stat-label {
    font-size: 1.2rem;
    color: #6c757d;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

/* FAQs Section Styles */
.faqs-section {
    background-color: #ffffff;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(90deg, #f9d423 0%, #ff4e50 100%);
    color: #ffffff; 
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000; 
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #f9d423; 
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff; 
    text-decoration: underline;
}

.footer .social-media i {
    font-size: 1.5rem;
    color: #f9d423; 
}

/* Packages Section Styles */
.packages-section {
    background-color: #ffffff;
    padding: 80px 0;
    background-image: url('background-pattern.png'); 
    background-size: cover;
    background-attachment: fixed;
    color: #333;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #e63946; 
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.package-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.05);
    z-index: -1;
}

.package-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.package-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.package-card .extra {
    color: #e63946;
    font-style: italic;
}

.package-card .fa-car {
    color: #e63946;
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Contact Section Styles */
.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
    background-image: url('background-pattern.png');
    background-size: cover;
    background-attachment: fixed;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Contact Form Styles */
.contact-form {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
}

.contact-form h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

.form-control:focus {
    border-color: #e63946;
    box-shadow: 0 0 5px rgba(230, 57, 70, 0.2);
}

.btn {
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d62d3b;
}

/* whatsapp logo */

.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
  }
  
  .whatsapp-float img {
    width: 60px; 
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float img:hover {
    transform: translateY(-5px);
  }

/* Responsive styles */

/* Tablet view */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .nav-link.btn-book {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
        margin: 0.5rem 0;
    }
    .carousel-inner img {
        height: 500px; 
    }
    .service-card h4 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

/* Mobile view */
@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        font-size: 1rem;
        padding-right: 0.5rem;
    }

    .nav-link.btn-book {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        box-sizing: border-box;
        margin: 0.5rem 0; 
    }

    .carousel-inner img {
        height: 400px; 
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .left-aligned,
    .right-aligned {
        text-align: center;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    .footer .social-media i {
        font-size: 1.2rem;
    }
    .package-card {
        margin-bottom: 30px;
    }
    .contact-form {
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .call-icon {
        display: none; 
    }
}