/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a472a, #2c5530);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    height: 60px; /* Increased from 40px to 80px for better visibility */
    width: auto;  /* Keeps original aspect ratio */
    object-fit: contain; /* Ensures no distortion */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd700 !important;
}

./* Fix outline buttons (e.g., blog page) */
.btn-outline-primary {
    border-color: #1a472a;
    color: #1a472a; /* Ensure text is visible */
    border-radius: 25px;
    padding: 6px 18px;
}

.btn-outline-primary:hover {
    background: #1a472a;
    color: #ffffff;
}

/* Navbar button fix */
.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff; /* Visible in header */
}

.btn-outline-light:hover {
    background: #ffd700;
    color: #1a472a;
}

.btn-primary {
    background: #1a472a;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: #ffffff; /* Ensure text is white by default */
}

.btn-primary:hover {
    background: #ffd700;
    color: #1a472a; /* Contrast on hover */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-wrapper iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    background: rgba(26, 71, 42, 0.7);
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
}

/* Why Travel with Us Section */
.why-travel {
    background: #f8f9fa;
    padding: 60px 0;
}

.why-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #1a472a;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: #ffffff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 2rem;
    color: #ffd700;
    opacity: 0.3;
}


/* Weather Section */
.weather-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}
#weather-info p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.weather-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

/* General Sections */
section {
    padding: 40px 0;
}

h1 {
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-weight: 700;
    color: #1a472a;
}

.card {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.text-primary {
    color: #1a472a !important;
}

/* Sticky Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.contact-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-button:hover::after {
    opacity: 1;
}

.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.email {
    background: #EA4335;
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a472a, #2c5530);
    color: #ffffff;
    padding: 40px 0;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffd700;
}

.social-icons a {
    color: #ffffff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

.border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

#newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    height: 38px;
}

#newsletter-form .btn-primary {
    border-radius: 0 25px 25px 0;
    height: 38px;
}

#newsletter-message {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }
    .nav-link {
        margin: 5px 0;
    }
    .hero {
        min-height: 50vh;
    }
    .hero-content {
        padding: 15px;
    }
    .card-img-top {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .logo {
        max-height: 40px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn-primary {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    .card-img-top {
        height: 120px;
    }
    .contact-buttons {
        bottom: 15px;
        right: 15px;
    }
    .contact-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .why-card, .testimonial-card {
        padding: 15px;
    }
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    #newsletter-form {
        flex-direction: column;
    }
    #newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 10px;
    }
    #newsletter-form .btn-primary {
        border-radius: 25px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    .hero {
        min-height: 80vh;
    }
}

/* WhatsApp Button */
#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Chatbot */
#chatbot {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 15px;
    overflow-y: auto;
    z-index: 1000;
}

#chatbot-messages p {
    margin: 5px 0;
}

/* Weather Widget */
#weather {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #E6F5F5;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-link {
        margin: 10px 0;
    }
    .hero {
        min-height: 400px;
    }
}
/* About Us Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
}

.mission-card, .vision-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
    color: #1a472a;
}

.vision-card h3 {
    color: #ffd700;
}

/* Our Story */
.our-story {
    padding: 60px 0;
}

/* Team Section */
.team {
    padding: 60px 0;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Why Choose Us */
.why-choose {
    padding: 60px 0;
}

/* CTA Section */
.cta {
    background: #f8f9fa;
    padding: 60px 0;
}
/* Services Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Tour Services */
.tour-services {
    padding: 60px 0;
    background: #f8f9fa;
}

.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
}

.tour-body {
    padding: 20px;
    background: #ffffff;
    text-align: center;
}

.tour-body h5 {
    color: #1a472a;
    font-weight: 700;
}

.tour-body p {
    color: #666;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: #ffffff;
    padding: 60px 0;
}
/* Places Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Destinations Intro */
.destinations-intro {
    padding: 60px 0;
}

/* Featured Destinations */
.featured-destinations {
    padding: 60px 0;
}

.place-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.place-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.place-card:hover .place-image {
    transform: scale(1.05);
}

.place-body {
    padding: 20px;
    background: #ffffff;
    text-align: center;
}

.place-body h4 {
    color: #1a472a;
    font-weight: 700;
}

.place-body p {
    color: #666;
}

.btn-outline-primary {
    border-color: #1a472a;
    color: #1a472a;
    border-radius: 25px;
    padding: 6px 18px;
}

.btn-outline-primary:hover {
    background: #1a472a;
    color: #ffffff;
}

/* Photo Gallery */
.photo-gallery {
    padding: 60px 0;
}

.gallery-item {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Fun Facts */
.fun-facts {
    padding: 60px 0;
    background: #f8f9fa;
}

.fact-card {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fact-card i {
    color: #ffd700;
}

.fact-card h5 {
    color: #1a472a;
}

/* CTA Section */
.cta {
    padding: 60px 0;
}
/* Blog Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Blog Posts */
.blog-posts {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-body {
    padding: 20px;
    background: #ffffff;
}

.blog-body h3 {
    color: #1a472a;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-body .text-muted {
    font-size: 0.9rem;
}

/* Modal */
.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-bottom: none;
}

.modal-body img {
    border-radius: 10px;
}

.modal-body p {
    color: #666;
}

/* Sidebar Adjustments */
.sidebar-widget ul li a.active {
    color: #1a472a;
    font-weight: 700;
}

.btn-outline-primary {
    border-color: #1a472a;
    color: #1a472a;
    border-radius: 25px;
    padding: 6px 18px;
}

.btn-outline-primary:hover {
    background: #1a472a;
    color: #ffffff;
}

.pagination .page-link {
    color: #1a472a;
    border-color: #1a472a;
}

.pagination .page-item.active .page-link {
    background: #1a472a;
    border-color: #1a472a;
    color: #ffffff;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 0; /* Reset to 0, we'll adjust dynamically with JS */
    z-index: 100; /* Below header (default z-index is 1030 in Bootstrap) */
    padding-top: 20px; /* Add some breathing room */
}

.sidebar-widget {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h5 {
    color: #1a472a;
    margin-bottom: 15px;
}

.category-link, .recent-link {
    color: #666;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.category-link:hover, .recent-link:hover {
    color: #1a472a;
}

.tag-cloud .tag-link {
    display: inline-block;
    background: #ffd700;
    color: #1a472a;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.tag-cloud .tag-link:hover {
    background: #1a472a;
    color: #ffffff;
}

/* Header (ensure it stays above) */
header {
    position: sticky;
    top: 0;
    z-index: 1030; /* Bootstrap default for navbar */
    background: #1a472a; /* Ensure solid background to avoid transparency overlap */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .sidebar {
        position: static;
        padding-top: 0;
        margin-top: 30px;
    }
}
/* Contact Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    color: #1a472a;
    font-weight: 700;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px;
}

.form-control:focus {
    border-color: #1a472a;
    box-shadow: 0 0 5px rgba(26, 71, 42, 0.5);
}

.btn-primary {
    background: #1a472a;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background: #ffd700;
    color: #1a472a;
}

.contact-info {
    font-size: 1.1rem;
}

.contact-info i {
    color: #ffd700;
}

.contact-info a {
    color: #1a472a;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ffd700;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
    padding: 60px 0;
}

/* Booking Hero */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-body {
    padding: 20px;
    background: #ffffff;
    text-align: center;
}

.service-body h5 {
    color: #1a472a;
    font-weight: 700;
}

/* Booking Section */
.booking-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.btn-success {
    background: #25D366; /* WhatsApp green */
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: #ffffff;
}

.btn-success:hover {
    background: #1ebe52;
    color: #ffffff;
}

.booking-form h3 {
    color: #1a472a;
}

.form-select, .form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px;
}

.form-select:focus, .form-control:focus {
    border-color: #1a472a;
    box-shadow: 0 0 5px rgba(26, 71, 42, 0.5);
}