/* --- Wanderlust Trails Main Stylesheet --- */

/* 1. General Styling & Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-teal: #26707d; 
    --gold-accent: #FFD700;
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
    padding-top: 0 !important; 
    margin: 0;
}

/* 2. Modern Navbar Styling */
.navbar.main-navbar {
    transition: all 0.4s ease-in-out;
    background: transparent !important;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1050;
    border-bottom: none;
}

/* --- Scrolled State (දැන් උස අඩු කර අකුරු කළු කර ඇත) --- */
.navbar.main-navbar.scrolled {
    /* වම් පැත්ත සුදු සහ දකුණු පැත්ත Teal */
    background: linear-gradient(to right, #ffffff 0%, #ffffff 35%, var(--primary-teal) 100%) !important;
    padding-top: 2px !important; /* උස ගොඩක් අඩු කළා */
    padding-bottom: 2px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Logo ප්‍රමාණය පාලනය */
.navbar-brand img {
    height: 70px; /* සාමාන්‍ය උස */
    width: auto;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px; /* Scroll කළ විට උස අඩු කළා */
}

/* --- Nav Links Styling --- */
.navbar-nav .nav-link {
    color: #ffffff !important; /* මුලින් සුදු පාට (වීඩියෝ එක උඩ) */
    font-weight: 600;
    margin-right: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    padding: 10px 15px !important;
}

/* --- Scroll කළ විට අකුරු කළු කිරීම (Black Text on Scroll) --- */
.navbar.scrolled .navbar-nav .nav-link {
    color: #000000 !important; /* අකුරු කළු කළා */
}

/* Hover & Active Styles (Scrolled) */
.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--gold-accent) !important;
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: #000000 !important;
    border-bottom: 3px solid var(--gold-accent);
}

/* 3. Hero Video Section Styling */
.hero-video-section {
    position: relative;
    height: 95vh;
    min-height: 550px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.video-bg {
    width: 100%; height: 100%; object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* 4. Common Buttons */
.btn-hero {
    background-color: var(--gold-accent);
    color: #333;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-hero:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* 5. Content Sections */
section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 35px;
    text-align: center;
}

/* 6. Mobile Adjustments */
@media (max-width: 992px) {
    .navbar.main-navbar {
        background: var(--primary-teal) !important;
        padding: 5px 0;
    }
    .navbar.main-navbar .nav-link { color: #fff !important; text-align: center; }
    .navbar-brand img { height: 45px; }
    .hero-video-section { height: 75vh; }
}

-----------------------------------------------------------------------------------------------------------------------

/* Discover Sri Lanka Section (Main Categories) */
/* "Discover Sri Lanka" Section Styling */
#discover-sri-lanka {
    background-image: url('../images/DiscoverSL4.png'); /* ඔබේ රූපයේ මාර්ගය මෙතනට දමන්න */
    background-size: cover; /* රූපය කොටස සම්පූර්ණයෙන්ම ආවරණය කිරීමට */
    background-position: center center; /* රූපය මධ්යයේ තැබීමට */
    background-repeat: no-repeat; /* රූපය නැවත නැවත නොපෙන්වීමට */
    /* background-attachment: fixed; */ /* (අවශ්ය නම්, පිටුව scroll කරන විට රූපය සිරවී තැබීමට) */
    padding: 80px 0; /* Bootstrap's py-5 class එකට වඩා වැඩි padding එකක් අවශ්ය නම් */

    /* රූපය මත අකුරු හොඳින් පෙන්වීමට, රූපයට උඩින් වර්ණ overlay එකක් දමමු. */
    /* මෙම කේතය background-image එකට පසුව යෙදිය යුතුය. */
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/DiscoverSL.png');
    color: #ffffff; /* පසුබිම අඳුරු වන නිසා අකුරු සුදු කරන්න */
}

/* "Discover Sri Lanka" සහ "Explore the diverse..." යන අකුරු සුදු වන නිසා */
/* ඒවායේ වර්ණය සුදු ලෙස පෙන්වීමට පහත CSS එකතු කරන්න: */
#discover-sri-lanka h2, 
#discover-sri-lanka p.lead {
    color: #555 !important; /* !important එක යෙදුවේ දැනටමත් වෙනත් CSS වලින් වර්ණයක් දී ඇත්නම් එය overwrite කිරීමටයි */
}


/* Section Background Image Overlay */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Background image එක අඳුරු කිරීමට */
    z-index: 0; /* Content එකට යටින් තියන්න */
}

#discover-sri-lanka h2 {
    text-align: center;
    font-size: 3rem; /* Heading එක තව ටිකක් ලොකු කරන්න */
    font-weight: 700;
    color: #fff; /* Heading එක සුදු කරන්න */
    margin-bottom: 15px;
    position: relative; /* Overlay එකට උඩින් තියන්න */
    z-index: 1;
}

#discover-sri-lanka p.lead {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8); /* Text එක ලා සුදු කරන්න */
    margin-bottom: 60px;
    position: relative; /* Overlay එකට උඩින් තියන්න */
    z-index: 1;
}

/* New Styling for Image-Focused Cards (පෙර තිබූ කේතයම ටිකක් වෙනස් කර ඇත) */
.category-card {
    position: relative;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* Shadow එක තවත් කැපී පෙනෙන්න */
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    height: 380px; /* Cards වල උස තව ටිකක් වැඩි කරන්න */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start; /* Text වමට align කරන්න */
    text-align: left; /* Text වමට align කරන්න */
    padding: 25px; /* Content එකට padding */
}

.category-card:hover {
    transform: translateY(-15px) scale(1.04); /* Hover effect තවත් කැපී පෙනෙන්න */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 1;
}

.category-card:hover img {
    transform: scale(1.08); /* Hover කරන විට Image එක zoom වේ */
}

/* Card Content Overlay (Image එකට උඩින්, Text එකට යටින්) */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%); /* පහළින් තද, උඩට යන විට ලා වන overlay එකක් */
    z-index: 2;
    transition: background 0.4s ease;
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%); /* Hover කරන විට overlay එක තව ටිකක් අඳුරු කරන්න */
}

.category-card .card-body {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 0; /* Card body එකේ padding එක card එකේ padding වලින් control කරන්න */
    width: 100%;
    display: flex; /* Content align කිරීමට */
    flex-direction: column;
    align-items: flex-start; /* Text වමට align කරන්න */
    justify-content: flex-end;
    /*pointer-events: none; /* Hover effect button එකටත් යන්න දෙන්න */
}

.category-card .card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px; /* button එකට පෙර ඇති margin එක අඩු කරන්න */
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    /*pointer-events: auto; /* Title එක click කරන්න පුළුවන් නම් */
}

.category-card .card-text {
    display: none; /* Description ඉවත් කරන්න */
}

.category-card .btn-primary {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1a5e66 !important;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    pointer-events: auto; /* Button එක click කරන්න පුළුවන් */
}

.category-card .btn-primary:hover {
    background-color: #e0b400;
    border-color: #e0b400;
    transform: translateY(-3px); /* Button එකට වෙනම hover effect */
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #discover-sri-lanka {
        padding: 50px 0;
    }
    #discover-sri-lanka h2 {
        font-size: 2.5rem;
    }
    #discover-sri-lanka p.lead {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    .category-card {
        height: 300px;
        padding: 20px;
    }
    .category-card .card-title {
        font-size: 1.5rem;
    }
    .category-card .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    #discover-sri-lanka h2 {
        font-size: 2rem;
    }
    #discover-sri-lanka p.lead {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .category-card {
        height: 250px;
        border-radius: 15px;
    }
    .category-card .card-title {
        font-size: 1.3rem;
    }
    .category-card .btn-primary {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* Featured Tour Packages Section */
#featured-packages {
    background: url('../images/What Makes Us Different1.jpg') no-repeat center center/cover; /* Replace with a suitable CTA background */
    color: white;
    text-align: center;
    padding: 100px 0;
}
#featured-packages h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #0d6efd; /* Primary blue for headings */
}

#featured-packages p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.package-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure all cards have same height */
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.package-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.package-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-card .card-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0d6efd;
}
.package-card .card-text {
    font-size: 1rem;
    color: #555;
    min-height: 80px; /* Ensure consistent height */
    flex-grow: 1;
}
.package-card .duration {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
    display: block;
}
.package-card .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: background-color 0.3s ease;
    margin-top: auto;
}
.package-card .btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
}

/* Why Choose Us Section */
.reason-card {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    background: url('../images/vision.png') no-repeat center center/cover; 
}
.reason-card:hover {
    transform: translateY(-5px);
}
.reason-card .icon {
    font-size: 3.5rem;
    color: #E67E22; /* Gold (Highlight) */
    margin-bottom: 20px;
}
.reason-card h5 {
    font-weight: bold;
    color: #E67E22;
    margin-bottom: 15px;
}
.reason-card p {
    font-size: 1rem;
    color: #E67E22;
}

/* Testimonials Section */

#testimonials {
    background: url('../images/What Makes Us Different1.jpg') no-repeat center center/cover; /* Replace with a suitable CTA background */
    color: white;
    text-align: center;
    padding: 100px 0;
}
#testimonials h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #0d6efd; /* Primary blue for headings */
}

#testimonials p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}
.testimonial-card {
    background: url('../images/promis.png') no-repeat center center/cover;
	background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    text-align: center;
    height: 100%; /* Ensure consistent height for cards */
    display: flex; /* Use flexbox to align content */
    flex-direction: column;
    justify-content: space-between; /* Push elements apart */
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1; /* Allow paragraph to take space */
}
.testimonial-card .author {
    font-weight: bold;
    display: block;
    color: #0d6efd;
    font-size: 1.05rem;
}
.testimonial-card .rating {
    color: #ffc107; /* Gold stars */
    margin-bottom: 10px;
}


/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cta-bg.jpg') no-repeat center center/cover; /* Replace with a suitable CTA background */
    color: white;
    text-align: center;
    padding: 100px 0;
}
.cta-section h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff; /* White for CTA heading */
}
.cta-section p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}
.cta-section .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    margin: 0 10px;
    transition: all 0.3s ease;
}
.cta-section .btn-warning { /* Gold button */
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
}
.cta-section .btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}
.cta-section .btn-outline-light { /* White outline button */
    border-color: #fff;
    color: #fff;
}
.cta-section .btn-outline-light:hover {
    background-color: #fff;
    color: #0d6efd;
}

/* Footer */
footer {
    background-color: #212529 !important; /* Darker grey */
	background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../images/footer.jpg') no-repeat center center/cover;
    color: #f8f9fa;
    padding: 60px 0 20px 0;
}
footer h5 {
    color: #ffc107 !important; /* Gold for footer headings */
    margin-bottom: 20px;
}
footer p, footer ul {
    font-size: 0.95rem;
}
footer p a, footer ul li a {
    color: #adb5bd !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer p a:hover, footer ul li a:hover {
    color: #ffc107 !important;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer .social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #adb5bd;
    transition: color 0.3s ease;
}
footer .social-links a:hover {
    color: #ffc107;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-carousel .carousel-caption h1 {
        font-size: clamp(1.8rem, 4vw, 3rem); /* Adjust clamp values for smaller screens */
    }
    .hero-carousel .carousel-caption p {
        font-size: clamp(0.9rem, 2vw, 1.4rem);
    }
    section h2 {
        font-size: 2.2rem;
    }
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 56px; /* Adjust for smaller navbar height */
    }
    .hero-carousel {
        height: 70vh; /* Adjust for mobile screens */
    }
    .hero-carousel .carousel-caption h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    .hero-carousel .carousel-caption p {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    }
    .btn-hero {
        padding: 10px 20px; /* Smaller padding for mobile buttons */
        font-size: 1rem;
    }
    section {
        padding: 50px 0;
    }
    section h2 {
        font-size: 1.8rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.2rem;
    }
    .cta-section .btn {
        margin-bottom: 10px;
        width: auto; /* Allow buttons to take natural width, not 100% */
        display: block; /* Make them stack vertically */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-caption h1 {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
    .hero-carousel .carousel-caption p {
        font-size: clamp(0.7rem, 3vw, 1rem);
    }
    .btn-hero {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .cta-section .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

---------------------------------------

/* Customizing Bootstrap's .container max-width */
/* මෙය සියලුම screens වලට බලපායි, නමුත් responsive design වලට @media queries භාවිතා කිරීම වඩා හොඳයි */
.container {
    max-width: 1300px !important; /* ඔබට අවශ්‍ය උපරිම පළල මෙතනට දමන්න */
                                  /* මෙය දැනට තිබෙන 1140px ට වඩා පළල් වේ */
                                  /* ඔබට 1200px, 1400px, හෝ 90% වැනි අගයක් දිය හැක */
}

/* Responsive adjustments for different screen sizes */
/* විවිධ screen sizes වලට container එකේ පළල පාලනය කිරීමට මෙය එකතු කරන්න */

/* Extra small devices (less than 576px) - Bootstrap default is 100% */
/* @media (max-width: 575.98px) {
    .container {
        max-width: 90% !important; 
    }
} */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px !important; /* Bootstrap default */
        /* ඔබට අවශ්‍ය නම් වෙනස් කරන්න */
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px !important; /* Bootstrap default */
        /* ඔබට අවශ්‍ය නම් වෙනස් කරන්න */
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px !important; /* Bootstrap default */
        /* ඔබට අවශ්‍ය නම් වෙනස් කරන්න */
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px !important; /* Bootstrap default */
        max-width: 1250px !important; /* ඔබට අවශ්‍ය පළල මෙතනට දමන්න */
                                      /* උදා: 1200px, 1350px, 90vw (viewport width) */
    }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1450px !important; /* ඔබට අවශ්‍ය පළල මෙතනට දමන්න */
                                      /* උදා: 1400px, 1500px, 90vw */
    }
}

---------------------------------------------------------------------------------------------------------------------------
/* About Us Page Specific Styling */

/* Hero Banner Styling (Override general section styling if needed) */
.hero-banner {
    /* රූපය අවශ්‍ය නැති නිසා background image එක අයින් කරමු */
    /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('http://localhost/wanderlust/assets/images/about-banner.jpg') no-repeat center center/cover; */
	
    /* රූපය වෙනුවට සරල background color එකක් දෙමු */
    /*background-color: #e67e22; /* ඔබට අවශ්‍ය ඕනෑම වර්ණයක් මෙතනට දාන්න */
    /* උදා: #3498db (නිල්), #2ecc71 (කොළ), #e67e22 (තැඹිලි) */

    /*height: 300px;
    display: flex;
    flex-direction: column; /* text එකයි line එකයි එකට තියාගන්න */
    /*align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;*/
}

/* Custom CSS for About Us Page Banner */
.about-us-banner {
    background: url('../images/hero-banner.jpg') no-repeat center center; /* කොටියාගේ රූපය මෙතනට දමන්න */
    background-size: cover;
    color: white; /* අකුරු සුදු පැහැයෙන් */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1); /* අකුරුවලට සෙවනැල්ලක් */
    padding: 200px 0; /* උස වැඩි කිරීමට padding */
    position: relative;
}

.about-us-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* අඳුරු overlay එකක් */
}

.about-us-banner h1 {
    font-size: 3.5rem; /* සිරස්තලයේ අකුරු ප්‍රමාණය */
    font-weight: bold;
    z-index: 1; /* overlay එකට උඩින් පෙන්වීමට */
    position: relative;
}

.about-us-banner p {
    font-size: 1.5rem; /* විස්තරයේ අකුරු ප්‍රමාණය */
    z-index: 1; /* overlay එකට උඩින් පෙන්වීමට */
    position: relative;
}



/* Introduction Section Styling */
.intro-section {
    padding: 100px ; /* Use consistent section padding */
    background: url('../images/abb.png') no-repeat center center; 
}

.intro-section h2 {
    font-size: 3rem; /* Consistent with your general section h2 */
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #0d6efd; /* Primary blue for headings - consistent with home page */
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Vertically align items */
    gap: 40px; /* Space between text and image */
}

.intro-text {
    flex: 1; /* Allows text to take available space */
    min-width: 300px; /* Ensures text doesn't get too small on smaller screens */
    font-size: 1.15rem; /* Consistent with your section p */
    line-height: 1.8; /* Consistent with your section p */
    color: #555; /* Consistent with your general body text */
}

.intro-text p:last-child {
    margin-bottom: 0; /* No bottom margin for last paragraph */
}

.intro-image {
    flex: 1; /* Allows image to take available space */
    min-width: 300px;
    text-align: center; /* Center image if it doesn't fill the space */
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Soften edges */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Subtle shadow */
}

/* Vision & Mission Section Styling */
.vm-section {
    padding: 60px 0; /* Slightly less padding than intro, or adjust as needed */
    background-color: #f8f9fa; /* Light gray background, consistent with body */
    text-align: center;
}

.vm-section h2 {
    font-size: 3rem; /* Consistent with your general section h2 */
    font-weight: bold;
    margin-bottom: 40px;
    color: #0d6efd; /* Primary blue for headings */
}

.vm-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Space between cards */
}

.vm-card {
    background: url('../images/vision.png') no-repeat center center/cover; /* Replace with a suitable CTA background */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtle card shadow */
    flex: 1 1 45%; /* Allows cards to take approx 45% width, wraps on smaller screens */
    max-width: 550px; /* Maximum width for a single card */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover effect */
}

.vm-card:hover {
    transform: translateY(-5px); /* Lift slightly on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Enhanced shadow on hover */
}

.vm-card h3 {
    font-family: 'Montserrat', sans-serif; /* A sans-serif for card titles, if you prefer */
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center; /* Align icon and text vertically */
    font-weight: 700; /* Bold text for card headings */
}

.vm-card h3 i {
    margin-right: 10px;
    font-size: 28px;
}

.vm-card.vision h3 {
    color: #0d6efd; /* Primary blue for Vision, consistent with your site */
}
.vm-card.mission h3 {
    color: #28a745; /* A good contrasting green for Mission */
}

.vm-card p {
    font-family: 'Open Sans', sans-serif; /* Or 'Poppins' if you prefer */
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Responsive Adjustments for About Us Sections */
@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 40px;
    }
    .intro-section h2, .vm-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
    }
    .hero-banner h1 {
        font-size: 36px;
    }
    .intro-content {
        flex-direction: column; /* Stack text and image vertically */
        gap: 30px;
    }
    .intro-text, .intro-image {
        flex: none; /* Reset flex grow */
        width: 100%; /* Take full width */
    }
    .vm-card {
        flex: 1 1 100%; /* Cards take full width on smaller screens */
        max-width: 100%;
    }
    .intro-section h2, .vm-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 30px;
    }
    .intro-section h2, .vm-section h2 {
        font-size: 1.8rem;
    }
    .vm-card h3 {
        font-size: 22px;
    }
    .vm-card p {
        font-size: 15px;
    }
}

/* About Us - Our Values Section Styling */
.values-section {
    padding: 80px 0; /* Consistent with other sections */
    background: url('../images/promis.png') no-repeat center center/cover; /* Replace with a suitable CTA background */
}

.values-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px; /* Slightly less margin than intro h2 */
    text-align: center;
    color: #0d6efd; /* Primary blue for headings */
}

.values-section p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.value-card {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%; /* Ensure consistent height for all cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: url('../images/promis.png') no-repeat center center/cover; /* Replace with a suitable CTA background */
}

.value-card:hover {
    transform: translateY(-5px); /* Lift slightly on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}

.value-card .icon {
    font-size: 3.5rem;
    color: #E67E22; /* Use your highlight color, e.g., orange/gold from why-choose-us icons */
    margin-bottom: 20px;
}

.value-card h5 {
    font-weight: bold;
    color: #0d6efd; /* Primary blue for card titles */
    margin-bottom: 15px;
    font-size: 1.3rem; /* Slightly larger heading for clarity */
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Responsive Adjustments for Values Section */
@media (max-width: 992px) {
    .values-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .values-section h2 {
        font-size: 2rem;
    }
    .value-card {
        padding: 25px;
    }
    .value-card .icon {
        font-size: 3rem;
    }
    .value-card h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .values-section h2 {
        font-size: 1.8rem;
    }
    .value-card .icon {
        font-size: 2.5rem;
    }
    .value-card h5 {
        font-size: 1.1rem;
    }
    .value-card p {
        font-size: 0.95rem;
    }
}

/* About Us - What Makes Us Different Section Styling */
.what-makes-us-different-section {
    background: url('../images/What Makes Us Different1.jpg') no-repeat center center/cover; /* Replace with a suitable CTA background */
    color: white;
    text-align: center;
    padding: 100px 0;
}


.what-makes-us-different-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #0d6efd; /* Primary blue for headings */
}

.what-makes-us-different-section p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.feature-item {
    margin-bottom: 30px; /* Spacing between features */
}

.feature-item .icon {
    font-size: 2.8rem; /* Size of the icon */
    color: #E67E22; /* Highlight color for icons */
    line-height: 1; /* Adjust line height for icon */
    width: 60px; /* Fixed width for consistent alignment */
    text-align: center;
}

.feature-item h4 {
    font-family: 'Montserrat', sans-serif; /* Or 'Poppins' */
    font-size: 1.6rem;
    color: #333; /* Darker color for headings */
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Responsive Adjustments for What Makes Us Different Section */
@media (max-width: 992px) {
    .what-makes-us-different-section h2 {
        font-size: 2.5rem;
    }
    .feature-item h4 {
        font-size: 1.4rem;
    }
    .feature-item .icon {
        font-size: 2.5rem;
        width: 50px;
    }
}

@media (max-width: 768px) {
    .what-makes-us-different-section h2 {
        font-size: 2rem;
    }
    .feature-item {
        flex-direction: column; /* Stack icon and text vertically on small screens */
        text-align: center;
    }
    .feature-item .icon {
        margin-right: 0 !important; /* Remove right margin */
        margin-bottom: 20px; /* Add bottom margin */
        width: 100%; /* Allow icon to center */
    }
    .feature-item h4 {
        font-size: 1.3rem;
    }
    .feature-item p {
        font-size: 0.95rem;
    }
}

-----------------------------------------------------------------------------------------------

/* --- tour-packages.php specific styles --- */

/* --- Global Fixes --- */
.packages-page-wrapper {
    overflow-x: hidden;
}

/* --- Hero Banner (අනෙක් පිටුවල බැනර් උසටම සකස් කළා) --- */
.tour-packages-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/tourpackages/tbanner.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 200px 0; /* කලින් 100px තිබූ මෙය 200px කළා */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tour-packages-hero h1 {
    font-size: 3.5rem; /* අකුරු වල ප්‍රමාණය 3.5rem කළා */
    font-weight: bold;
}

.tour-packages-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* --- Sidebar (දැන් ඔබ මෙය භාවිතා නොකරන නිසා මෙය අත්‍යවශ්‍ය නැත) --- */
.tour-filter-sidebar {
    border-radius: 15px;
    border: 1px solid #eee;
}

/* --- Package Card Styling --- */
.tour-package-card {
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.tour-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.tour-package-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Image ඇතුලේ තියෙන Duration Badge එක */
.duration-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffcc00;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tour-package-card .card-title {
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 700;
}

.tour-package-card .price-tag {
    color: #008080; 
}

.text-primary {
    color: #008080 !important;
}

/* Buttons */
.btn-outline-dark {
    border: 2px solid #222;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    background-color: #008080;
    border-color: #008080;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-packages-hero { padding: 120px 0; }
    .tour-packages-hero h1 { font-size: 2.2rem; }
    .tour-package-card .card-img-top { height: 200px; }
}

---------------------------------------------------------------------------------------------------------------------

/* Custom CSS for Destinations Page */
.destination-banner-background{
	background:url('../images/dest.jpg');
	width:100%;
	height:100px;
	background-position:center;
	display:flex;
	background-size:cover;
	justify-content:center;
	align-items:center;
}   


   .destination-banner {
        background: url('../images/dest.jpg') no-repeat center center; /* ඔබේ බැනර් රූපය මෙතනට දමන්න */
        background-size: cover;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
        padding: 200px 0;
        position: relative;
    }

    .destination-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* අඳුරු overlay එකක් */
    }

    .destination-banner h1 {
        font-size: 3.5rem;
        font-weight: bold;
        z-index: 1;
        position: relative;
    }

    .destination-banner p {
        font-size: 1.5rem;
        z-index: 1;
        position: relative;
    }

/* ... (ඔබේ දැනට තිබෙන CSS) ... */

/* Destinations Display Section Background Image - Full Width */
.destinations-fullwidth-bg { 
    /*background-image: url('../images/What Makes Us Different2.jpg'); /* මෙතනට ඔබේ පසුබිම් රූපයේ path එක දෙන්න */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */ 
    padding-top: 5rem; 
    padding-bottom: 5rem; 
    position: relative; 
    z-index: 0; 
}

    .destination-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* border-radius: 10px; */ /* කලින් තිබූ border-radius එක ඉවත් කරන්න හෝ override කරන්න */
    
    /* අපේ අලුත් border-radius values */
    border-top-right-radius: 150px; /* උඩ දකුණු කෙළවරට */
    border-bottom-left-radius: 40px; /* යට වම් කෙළවරට */
    border-top-left-radius: 5px;   /* උඩ වම් කෙළවර සුළු වශයෙන් round කරන්න */
    border-bottom-right-radius: 5px; /* යට දකුණු කෙළවර සුළු වශයෙන් round කරන්න */

    overflow: hidden; /* රූපය card එකට හරියට ගැලපෙන්න */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%; /* සියලුම card වල උස සමාන කිරීමට */
    display: flex;
    flex-direction: column;
    border: none; /* Bootstrap's default card border එක ඉවත් කරන්න, නැතිනම් එය radius එකට බලපාන්න පුළුවන් */
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.destination-card img {
    height: 200px; /* රූපවලට ස්ථාවර උසක් දෙන්න */
    object-fit: cover; /* රූපය card එකට ගැලපෙන්න resize කරන්න */
    width: 100%;
    /* රූපයේ ද කෙළවර round කිරීමට */
    border-top-right-radius: 25px; /* Card එකට වඩා ටිකක් අඩු අගයක් දීමෙන් පෙනුම හොඳයි */
    border-top-left-radius: 5px;
}

    .destination-card .card-body {
        flex-grow: 1; /* Card body එක ඉතිරි ඉඩ ගන්න */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .destination-card .card-title {
        color: #0d6efd; /* Bootstrap primary color */
        font-weight: bold;
    }

    /* Custom styles for Learn More button - Gradient */
.destination-card .btn-primary {
    /* Gradient Background */
    background: linear-gradient(to right, #0d6efd, #00b0ff); /* නිල් වර්ණ දෙකක gradient එකක් */
    border: none; /* Border එකක් අවශ්‍ය නැහැ */
    color: white;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.destination-card .btn-primary:hover {
    /* Hover කරන විට gradient එකේ වර්ණ ටිකක් වෙනස් කරන්න */
    background: linear-gradient(to right, #0b5ed7, #0099e6);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9; /* ටිකක් පාරදෘශ්‍ය කරන්න */
}

   /* Optional: Search/Filter Section */
.search-filter-section {
    background: linear-gradient(to right, #e0f2f7, #d4eaf7); /* Gradient background එකක් */
    /* කලින් තිබූ background-color: #f8f9fa; එක ඉවත් කරන්න */
    padding: 30px; /* Padding වැඩි කරන්න */
    border-radius: 15px; /* කොන් වටකුරු කරන්න */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Shadow එකක් දෙන්න */
    margin-bottom: 50px; /* පහළින් තව ඉඩක් දෙන්න */
    border: none; /* Border එකක් අවශ්‍ය නැහැ */
    position: relative; /* පසුබිම් element සඳහා */
    overflow: hidden; /* child elements overflow වීම වැළැක්වීමට */
}

/* කුඩා පසුබිම් design elements */
.search-filter-section::before,
.search-filter-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2); /* සුදු පැහැති, අඩ-විනිවිද පෙනෙන හැඩතල */
    border-radius: 50%; /* වටකුරු හැඩය */
    z-index: 1; /* අන්තර්ගතයට යටින් පෙන්වීමට */
}

.search-filter-section::before {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    opacity: 0.6;
}

.search-filter-section::after {
    width: 120px;
    height: 120px;
    bottom: -40px;
    right: -40px;
    opacity: 0.4;
}

/* Search Input Field */
.search-filter-section .form-control-lg {
    border: 1px solid #a7d9f2; /* දේශසීමා වර්ණය වෙනස් කරන්න */
    border-radius: 25px; /* තවත් වටකුරු කරන්න */
    padding: 12px 20px; /* Padding වැඩි කරන්න */
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* කුඩා shadow එකක් */
    transition: all 0.3s ease;
}

.search-filter-section .form-control-lg::placeholder {
    color: #888; /* Placeholder text එකේ වර්ණය */
}

.search-filter-section .form-control-lg:focus {
    border-color: #0d6efd; /* Focus කරන විට border වර්ණය වෙනස් කරන්න */
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* Focus shadow එකක් */
    outline: none; /* Outline එක ඉවත් කරන්න */
}

/* Filter Select Dropdown */
.search-filter-section .form-select-lg {
    border: 1px solid #a7d9f2; /* දේශසීමා වර්ණය වෙනස් කරන්න */
    border-radius: 25px; /* තවත් වටකුරු කරන්න */
    padding: 12px 20px; /* Padding වැඩි කරන්න */
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* කුඩා shadow එකක් */
    background-color: #ffffff; /* පසුබිම් වර්ණය සුදු කරන්න */
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Webkit browsers වල default arrow එක ඉවත් කරන්න */
    -moz-appearance: none; /* Mozilla browsers වල default arrow එක ඉවත් කරන්න */
    appearance: none; /* Default arrow එක ඉවත් කරන්න */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); /* Custom arrow එකක් */
    background-repeat: no-repeat;
    background-position: right 15px center; /* Arrow එකේ පිහිටීම */
    background-size: 16px 12px;
}

.search-filter-section .form-select-lg:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}


/* Single Destination Page styles (if implemented) - මෙය වෙනස් කිරීමක් නැත */
.single-destination-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
	
-----------------------------------------------------------------------------------------------------------------------------

/* --- Custom CSS for Transfers Page --- */

/* 1. Hero Banner (අනෙක් පිටුවල බැනර් උසටම සකස් කළා) */
.transfers-banner {
    background-size: cover !important;
    background-position: center center !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    padding: 200px 0 !important; /* මෙහි උස 200px ලෙස අනෙක් පිටුවලට සමාන කළා */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

/* බැනරයට උඩින් ඇති අඳුරු Overlay එක */
.transfers-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* අකුරු හොඳින් පෙනීමට */
    z-index: 0;
}

.transfers-banner .container {
    position: relative;
    z-index: 1;
}

.transfers-banner h1 {
    font-size: 3.5rem; /* අකුරු ප්‍රමාණය වැඩි කළා */
    font-weight: 800;
    margin-bottom: 10px;
}

.transfers-banner p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* 2. Rate Checker Card Styling */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    border: none;
}

.form-select-lg {
    border-radius: 10px;
    border: 2px solid #eee;
}

.form-select-lg:focus {
    border-color: #ffc107;
    box-shadow: none;
}

/* 3. Rates Table Styling */
.table {
    border-radius: 15px;
    overflow: hidden;
}

.table thead {
    background-color: #212529;
}

.table-hover tbody tr:hover {
    background-color: #fff9e6;
}

/* 4. Result Animation */
#rateResult {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 5. Responsive Fixes */
@media (max-width: 768px) {
    .transfers-banner {
        padding: 120px 0 !important; /* Mobile වලදී උස තරමක් අඩු කළා */
    }
    .transfers-banner h1 {
        font-size: 2.2rem;
    }
    .transfers-banner p {
        font-size: 1.1rem;
    }
}
---------------------------------------------------------------------------------------------------------------



----------------------------------------------------------------------------------------------------------

/* General Page Banner - Contact us (Common styles for all banners) */
.contact-banner {
    background-size: cover;
    background-position: center;
    /* min-height: 400px;  // Uncomment this if you want a default minimum height for all banners */
    position: relative;
    color: white;
    display: flex; /* Ensure content is centered */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center;
    overflow: hidden; /* Important for parallax or content within overlay */
}

/* Common Overlay for all banners */
/*.contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
   /* z-index: 1;
}*/

.contact-banner > .container {
    position: relative;
    z-index: 2; /* Ensure text is above overlay */
}

.contact-banner h1 {
    font-family: 'Poppins', serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
}

.contact-banner p.lead {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
}

/* Specific Banner for Contact Us */
.contact-banner {
    background-image: url('../images/category-beach3.jpg'); /* Your specific image for Contact Us */
    padding: 200px 0; /* Custom height for this banner */
}


/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0d2a4f; /* Dark blue from your logo */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;

    /* මෙම පේළි දෙක එකතු කරන්න/වෙනස් කරන්න */
    display: inline-block; /* heading එක එහි අන්තර්ගතයේ පළලට ගැලපීමට */
    /* alternative: width: fit-content; */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* මෙහි width අගය 100% ලෙස වෙනස් කරන්න */
    height: 3px;
    background-color: #ffc107; /* Warning color from your theme */
}

/* Media Queries වලට මේක බලපාන්නේ නැහැ, මොකද left: 0 සහ transform: translateX(-50%) width එකට බලපාන්නේ නැති නිසා. */
@media (min-width: 992px) {
    .section-title.text-lg-start::after {
        left: 0;
    }
}
@media (max-width: 991.98px) {
    .section-title.text-center::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Contact Form Styling */
.contact-section {
    background-color: #f8f9fa; /* Light background for the section */
}

.contact-form label {
    font-weight: 600;
    color: #333;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #ffc107; /* Warning color */
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.btn-primary-custom {
    background-color: #0d2a4f; /* Dark blue from your logo */
    border-color: #0d2a4f;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0a203a; /* Slightly darker blue */
    border-color: #0a203a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.send-message-card {
    background-color: #ecf4fa; /*send us message bg color */
    padding: 30px; /* අන්තර්ගතයට ඉඩක් තබන්න */
    border-radius: 10px; /* කොන් වටකුරු කරන්න */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* මදක් සෙවනැල්ලක් එක් කරන්න */
}

/* වර්ණ පසුබිමක් ඇති විට අකුරු වල වර්ණය වෙනස් කරන්න */
.send-message-card h2,
.send-message-card p,
.send-message-card .form-label {
    color: #343a40; /* තද අළු වර්ණය */
}

.send-message-card .form-control {
    background-color: #ffffff; /* සුදු පැහැති පසුබිම */
    border: 1px solid #ced4da;
    color: #495057;
}

/* Contact Info Blocks */
.contact-info-block {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #ffc107; /* Accent border */
}

.contact-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-block h4 {
    color: #0d2a4f;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.contact-info-block p {
    color: #555;
    margin-bottom: 0;
}

.text-primary-custom {
    color: #0d2a4f !important; /* Use your brand's primary color */
}


/* Google Map */
.map-container {
    height: 350px; /* Fixed height for the map */
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

-------------------------------------------------

/* Single Package Hero Styling */
.single-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.single-hero h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}



.single-hero p {
    font-weight: 300;
}

/* responsive (Phone එකෙන් බලන විට) */
@media (max-width: 768px) {
    .single-hero {
        min-height: 300px;
    }
    .single-hero h1 {
        font-size: 2.2rem;
    }
}

/* --- Itinerary Timeline Fixed Styles --- */

.itinerary-timeline {
    margin-left: 30px; /* ටිකක් ඉඩ වැඩි කළා */
    position: relative;
    padding-top: 10px;
}

.itinerary-item {
    /* Bootstrap border-start එක වෙනුවට වඩාත් පාලනය කළ හැකි border එකක් */
    border-left: 3px solid #008080 !important; 
    padding-left: 45px; 
    position: relative;
    padding-bottom: 40px; /* දින දෙකක් අතර පරතරය */
}

/* අවසන් අයිතමයේ ඉර නැති කිරීමට */
.itinerary-item:last-child {
    border-left: 3px solid transparent !important;
}

.day-circle {
    position: absolute;
    left: -24px; /* ඉර මත රවුම හරියටම මැදට එන්න (45px/2 = ~22.5 + 1.5 border) */
    top: 0;
    width: 45px; /* රවුම ටිකක් විශාල කළා */
    height: 45px;
    background: #008080; /* Wanderlust Teal */
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column; /* DAY සහ අංකය එක යට එක එන්න */
    align-items: center;
    justify-content: center;
    font-size: 0.65rem; /* DAY අකුරු සඳහා */
    font-weight: bold;
    border: 4px solid #fff; /* සුදු පාට බෝඩර් එක */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 2;
    text-transform: uppercase;
    line-height: 1.1;
}

.day-circle span {
    font-size: 1.1rem; /* අංකය (1, 2, 3) ලොකුවට පෙනෙන්න */
    display: block;
}
.booking-card { transition: 0.3s; }
.text-primary { color: #008080 !important; }
.border-primary { border-color: #008080 !important; }

---------------------------------------------------------------------------------


/* ============================================================ */
/* NEW WANDERLUST ARTICLE STYLES                               */
/* ============================================================ */

.article-master-container {
    background-color: #f9f9f9;
}

/* Hero Section with fixed navbar compensation */
.article-hero {
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    /* Navbar එකට උඩින් වැසෙන්නේ නැති වෙන්න padding-top එක 220px කළා */
    padding-top: 220px;
}

.article-header-text {
    max-width: 900px;
    margin: 0 auto;
}

.article-hero .category-tag {
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.article-hero .main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.article-meta {
    font-size: 1rem;
    opacity: 0.9;
}

/* Content Area Styling */
.content-wrapper {
    border-radius: 20px;
    margin-top: -80px; /* Card එක බැනරයට උඩින් ටිකක් පෙනෙන පරිදි - Modern Look */
    position: relative;
    z-index: 10;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #26707d; /* ඔබේ තේමා වර්ණය */
    font-weight: 500;
}

.guide-point p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.conclusion-box {
    background-color: #f0f4f5;
    border-left: 6px solid #FFD700;
}

/* Share Buttons */
.btn-share {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #eee;
    color: #333;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-share.fb:hover { background: #3b5998; color: #fff; }
.btn-share.wa:hover { background: #25d366; color: #fff; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .article-hero {
        padding-top: 150px;
        min-height: 450px;
    }
    .content-wrapper {
        margin-top: -30px;
        padding: 25px !important;
    }
}

---------------------------

/* ============================================================ */
/* MODERN BLOG LISTING PAGE STYLES                             */
/* ============================================================ */

/* 1. Standard Hero Banner (200px padding) */
.blog-main-hero {
    background-size: cover !important;
    background-position: center !important;
    padding: 200px 0 !important; /* අනෙක් පිටුවල උසටම සමාන කළා */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.blog-main-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

/* 2. Blog List Card Styling */
.blog-list-card {
    border-radius: 20px;
    border: none;
    transition: 0.3s;
    min-height: 350px;
}

.blog-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.blog-card-img {
    width: 100%;
    min-width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.blog-card-content h2 {
    font-size: 1.8rem;
    color: #26707d; /* ඔබේ තේමා වර්ණය */
}

/* 3. Sidebar Styling */
.blog-sidebar .rounded-4 {
    border-radius: 20px !important;
}

.blog-sidebar h5 {
    color: #26707d;
}

.blog-sidebar ul li a:hover {
    color: #FFD700 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-main-hero { padding: 120px 0 !important; }
    .blog-list-card { flex-direction: column; }
    .blog-card-img { width: 100%; height: 200px; }
}

/* Blog Listing Page Styles */
.blog-listing-master {
    background-color: #f8f9fa;
}

/* Blog Card Styling */
.blog-custom-card {
    border: none;
    border-radius: 20px;
    transition: 0.3s;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image Side of the Card */
.blog-card-img-side {
    width: 40%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.blog-card-info h2 {
    color: #26707d;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Sidebar styling */
.blog-sidebar-box {
    border-radius: 20px;
    border: none;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .blog-custom-card { flex-direction: column; }
    .blog-card-img-side { width: 100%; height: 200px; }
}

----------------------------------------------------------------------------------------------

/* ============================================================ */
/* WANDERLUST TRAILS - HOME PAGE PROFESSIONAL RE-DESIGN       */
/* ============================================================ */

.text-primary-teal { color: #26707d !important; }
.bg-light-gray { background-color: #f4f7f6 !important; }

/* 1. Standard Heading Styles (For all 4 sections) */
.section-header-master {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-master .main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #26707d !important; /* Teal Color for all 4 headings */
    margin-bottom: 10px;
}

.section-header-master .heading-line {
    width: 70px;
    height: 4px;
    background-color: #FFD700;
    margin: 0 auto 20px auto;
    border-radius: 5px;
}

.section-header-master .sub-heading-dark {
    font-size: 1.15rem;
    color: #555 !important; /* Dark Gray for better readability */
    max-width: 700px;
    margin: 0 auto;
}

/* 2. Intro Section Styling */
.intro-walkers-style .lead-text-dark { color: #444; font-weight: 500; font-size: 1.1rem; }
.btn-primary-teal-outline { border: 2px solid #26707d; color: #26707d; font-weight: 700; transition: 0.3s; }
.btn-primary-teal-outline:hover { background: #26707d; color: #fff; }

/* 3. Sliders Arrows (Global Style) */
.slick-prev, .slick-next {
    width: 45px; height: 45px; background: #fff !important;
    border-radius: 50%; z-index: 5; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.slick-prev::before, .slick-next::before { display: none; }
.slick-prev { left: -15px; }
.slick-next { right: -15px; }

/* 4. Package Cards - Height Fix */
.tour-package-card { height: 100%; display: flex; flex-direction: column; }
.tour-package-card .description-fix { min-height: 80px; display: flex; align-items: center; }

/* 5. Category Cards - Walkers Style */
.category-card-new {
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: flex-end; padding: 25px;
}
.card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.card-label { position: relative; z-index: 2; color: #fff; font-size: 1.3rem; font-weight: 700; }

/* ============================================================ */
/* PROFESSIONAL TESTIMONIALS STYLING                           */
/* ============================================================ */

.testimonial-card-new {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

/* Quote Icon */
.quote-icon {
    font-size: 2rem;
    color: rgba(38, 112, 125, 0.1); /* Very light Teal */
    margin-bottom: 10px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.reviewer-name {
    color: #26707d; /* Brand Teal */
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.rating-stars {
    color: #FFD700; /* Gold */
    font-size: 0.85rem;
}

.source-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3b5998; /* Facebook Blue */
    background: rgba(59, 89, 152, 0.1);
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-tag i { margin-right: 5px; }

/* Slick Dots Styling */
.testimonial-slider .slick-dots li button:before {
    color: #26707d;
}

/* 7. Discover Sri Lanka Background Fix */
#discover-sri-lanka {
    background: linear-gradient(rgba(38, 112, 125, 0.8), rgba(38, 112, 125, 0.8)), 
                url('../images/DiscoverSL4.png') no-repeat center center/cover;
}

/* responsive */
@media (max-width: 768px) {
    .section-header-master .main-heading { font-size: 2.2rem; }
}

-------------------

/* --- Discover Sri Lanka Section Final Text Fix --- */

/* Section ID එක සහ Class එක හරියටම පාවිච්චි කරලා සුදු පාට ලබා දීම */
#discover-sri-lanka .section-header-master h2.main-heading {
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5) !important;
}

#discover-sri-lanka .section-header-master p.sub-heading-dark {
    color: #ffffff !important;
    opacity: 1 !important;
}

#discover-sri-lanka .heading-line {
    background-color: #FFD700 !important;
}

/* ============================================================ */
/* FEATURED PACKAGES - TEXT VISIBILITY FIX                     */
/* ============================================================ */

/* 1. ප්‍රධාන මාතෘකාව සහ යටින් ඇති විස්තරය පෙනෙන ලෙස සැකසීම */
#featured-packages .section-header-master .main-heading {
    color: #26707d !important; /* තද Teal වර්ණය */
    display: block !important;
    visibility: visible !important;
}

#featured-packages .section-header-master .sub-heading-dark {
    color: #555555 !important; /* තද අළු වර්ණය */
    opacity: 1 !important;
}

/* 2. කාඩ්පත් ඇතුළත ඇති අතුරුදහන් වූ අකුරු නිවැරදි කිරීම */
.tour-package-card .card-body span.text-uppercase {
    color: #26707d !important; /* Category එක Teal වර්ණයෙන් */
    font-weight: 700;
}

.tour-package-card .card-body h4 {
    color: #333333 !important; /* පැකේජ් නාමය කළු/තද අළු වර්ණයෙන් */
    display: block !important;
}

.tour-package-card .card-description-box p {
    color: #666666 !important; /* විස්තරය අළු වර්ණයෙන් */
}

/* 3. පතුලේ ඇති Price on Request කොටස */
.card-footer-custom span {
    color: #26707d !important;
    font-weight: 800;
}

/* Slick Dots (කාඩ් වලට යටින් ඇති තිත්) පෙනෙන ලෙස සැකසීම */
.slick-dots li button:before {
    color: #26707d !important;
    opacity: 0.5;
}
.slick-dots li.slick-active button:before {
    color: #26707d !important;
    opacity: 1;
}