/*==================================
* Author        : "ThemeSine"
* Template Name : Travel
* Version       : 1.0
==================================== */

/*==================================

font-family: 'Poppins', sans-serif;

==================================== */

/*=========== TABLE OF CONTENTS ===========

1.  General css (Reset code)
2. 	Header
3. 	About
5.  Travel-box
5.  Service
6.  Gallery
7.  Discount-offer
8.  Packages
9.  Testemonial 
10. Special Offer
11. Blog
12. Subscribe
13. Footer-copyright
===========*/

/*-------------------------------------
        1. General css (Reset code)
--------------------------------------*/

/* Define root color variables for easy branding */
:root {
    --primary-green: #008000; /* Green for nature and adventure */
    --accent-red: #FF0000; /* Red for emphasis and call-to-action */
    --highlight-yellow: #FFD700; /* Yellow for minor highlights */
    --primary-black: #000000; /* Black for text and backgrounds */
}

/* Reset styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-size: 14px;
    color: var(--primary-black);
    background: #ffffff; /* Set background to white for clarity */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Anchor tags */
a, a:hover, a:active, a:focus {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    padding: 0;
    margin: 0;
    color: var(--accent-red); /* Set to red for emphasis */
    transition: color 0.3s ease;
}

a:focus {
    outline: 2px dashed var(--highlight-yellow); /* Focus state for better accessibility */
    outline-offset: 4px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--primary-black);
    text-transform: capitalize;
    font-weight: 600; /* Added a consistent weight for headings */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
}

/* Paragraphs */
p {
    margin: 0;
    color: #c0d4c6;
    font-size: 14px;
    line-height: 1.6; /* Improved readability with increased line height */
}

/* Images */
img {
    border: none;
    max-width: 100%;
    height: auto;
}

/* Unordered lists */
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li {
    list-style: none;
}

/* Form elements */
select, input, textarea, button {
    box-shadow: none;
    outline: 0 !important;
}

/* HTML and body */
html, body {
    height: 100%;
    z-index: 2;
}

/* Placeholder transition for inputs */
[placeholder]:focus::-webkit-input-placeholder {
    transition: opacity 0.3s ease;
    opacity: 0;
}




/*-------------------------------------
        2. Header
--------------------------------------*/
.top-area {
    position: absolute;
    width: 100%;
}
.wrapper {
    position: relative;
    z-index: -1;
}
.header-area {
    position: relative;
    width: 100%;
}

/* Sticky header styling */
.sticky-wrapper {
    position: relative;
    z-index: 2;
    transition: 0.7s;
}
.is-sticky .header-area:after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.8); /* Use a black background with transparency for sticky header */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s linear;
}

/* Logo styling */
.logo a, .logo a:hover, .logo a:focus {
    color: #035708;
    font-size: 24px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    margin: 14px 0px 0;
    padding: 10px 0 0 0;
}
.logo a span {
    color: var(--accent-red); /* Red to match the flag colors */
    text-transform: capitalize;
}

/* Main menu styling */
.main-menu {
    position: relative;
}

.main-menu .nav li {
    position: relative;
    padding: 16px 12px 0px;
    transition: all 0.2s linear;
}

.main-menu .nav li a {
    padding: 11px 0 29px;
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
}

.main-menu .nav li.active a,
.main-menu .nav li a:hover,
.main-menu .nav li a:focus {
    color: var(--primary-green); /* Green color for active links and hover states */
    background-color: transparent;
}

.main-menu .nav a:before {
    position: absolute;
    content: "";
    width: 0px;
    height: 2px;
    bottom: -2.4px;
    left: 0;
    background: transparent;
    transition: 0.3s ease-in-out;
}

.main-menu .nav li.active a:before,
.main-menu .nav a:hover:before {
    background: var(--primary-green); /* Green underline on hover */
    width: 100%;
}

/* Toggle button styling */
.main-menu .navbar-toggle {
    margin-top: 5px;
    border: 1px solid var(--accent-red); /* Border in red for visibility */
    font-size: 16px;
    float: left;
    color: var(--accent-red);
}
.main-menu .navbar-default .navbar-toggle:focus, 
.main-menu .navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

/* Book Button */
.book-btn {
    background: var(--primary-green); /* Primary green for the button */
    border: 1px solid var(--primary-green);
    width: 120px;
    height: 40px;
    white-space: nowrap;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
    border-radius: 5px;
    transition: 0.5s ease-in-out;
}
.book-btn:hover {
    color: #fff;
    background: var(--accent-red); /* Red on hover for a contrasting effect */
    border: 1px solid var(--accent-red);
}


/*-------------------------------------
        3. About
--------------------------------------*/
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url(../../assets/images/home/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 1000px;
}
.about-us:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Changed to a black overlay to add more contrast for the text */
}

/* about-us-content */
.about-us-content {
    margin: -175px 0 0 0;
}
.about-us h2 {
    color: #fff;
    font-size: 84px;
    text-transform: inherit;
    max-width: 800px;
    font-weight: 600;
    line-height: 1.22;
}
.about-us h2 span {
    color: var(--primary-green); /* Updated to green to align with branding */
    margin-top: -11px;
}
.about-btn {
    margin-top: 39px;
    letter-spacing: 1.2px;
    transition: 0.5s ease-in-out;
}

/* about-view button styling */
.about-view {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-red); /* Updated to use the red color from the flag */
    border: 1px solid var(--accent-red);
    width: 200px;
    height: 60px;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
}
.about-btn:hover .about-view {
    color: #fff;
    background: var(--primary-green); /* Hover color updated to green */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-green);
}

/* Reset travel-mrt-0 */
.travel-mrt-0 {
    margin-top: 0px;
}
/* about-us-content */

/*-------------------------------------
        4. Travel-box
--------------------------------------*/
.single-travel-boxes {
    margin-top: -125px;
    background: #fff;
}

/* Description Tabs Styling */
.tab-para p {
    font-size: 24px;
}

/* .desc-tabs */
.desc-tabs {
    border: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.desc-tabs .nav-tabs {
    display: inline-block;
    border-right: 1px solid #fff;
}

/* Active Tab Styling */
.desc-tabs .nav-tabs > li.active > a {
    color: #fff;
    background: var(--primary-green); /* Changed to green for active tab */
    cursor: default;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    transition: 0.5s;
}
.desc-tabs .nav-tabs > li.active > a:focus,
.desc-tabs .nav-tabs > li.active > a:hover {
    color: #565a5c; /* Dark grey for hover focus to maintain visibility */
    text-decoration: none;
}

/* Inactive Tab Styling */
.desc-tabs .nav-tabs > li > a {
    color: #fff;
    background: var(--accent-red); /* Changed to red to match branding */
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
    padding: 17px 40px 17px 46px;
    border: 0;
    transition: 0.5s;
}

/* Inactive Hover State */
.single-travel-boxes .nav > li > a:focus,
.single-travel-boxes .nav > li > a:hover {
    color: #565a5c;
    background: #fff; /* White background on hover */
    border: 0;
    text-decoration: none;
}

/* Icon Padding */
.desc-tabs .nav-tabs > li > a > i {
    padding-right: 6px;
}

/*===ab-select-box===*/
.tab-para {
    padding: 43px 42px 24px;
}
.single-tab-select-box h2 {
    color: #565a5c;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
    margin-bottom: 17px;
}

/* Travel Select Icon */
.travel-select-icon {
    position: relative;
}
.travel-select-icon:after {
    position: absolute;
    content: "\f107";
    right: 0px;
    top: 0;
    font-size: 18px;
    color: #aaa;
    background: #f9f9f9;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    pointer-events: none;
    border: 1px solid #d7d7d7;
    border-bottom: transparent;
    padding: 10px;
}

/* Travel Check Icon */
.travel-check-icon {
    position: relative;
}
.travel-check-icon:after {
    position: absolute;
    content: "\f073";
    right: 0px;
    top: 0;
    font-size: 18px;
    color: #aaa;
    background: #f9f9f9;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    pointer-events: none;
    border: 1px solid #d7d7d7;
    border-bottom: transparent;
    padding: 10px 8px;
}

/* Travel Select Icon Inputs */
.travel-select-icon select,
.travel-check-icon input {
    color: #aaa;
    font-size: 14px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
    height: 48px;
}

/* Styling Form Inputs */
.travel-select-icon .form-control,
.travel-check-icon .form-control {
    appearance: none;
    outline: 0 !important;
    box-shadow: none;
    border: 1px solid #d7d7d7;
    border-radius: 0px;
    margin-bottom: 20px;
}

/* .trip-circle */
.trip-circle {
    display: flex;
    margin-bottom: 17px;
}
.single-trip-circle {
    display: flex;
}
.single-trip-circle:nth-child(2) {
    display: flex;
    margin-left: 42px;
}
.single-trip-circle input[type="radio"] {
    display: none;
}
.single-trip-circle input[type="radio"] + label {
    color: #565a5c;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin-bottom: 17px;
    margin-left: 0px;
}
.single-trip-circle input[type="radio"] + label span.round-boarder {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #aaa;
}
.single-trip-circle input[type="radio"] + label span.round-boarder1 {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: -13px 0px 0 1px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
}
.single-trip-circle input[type="radio"]:checked + label span.round-boarder1 {
    background-color: var(--primary-green); /* Changed to green for selected state */
}
.single-trip-circle input[type="radio"] + label span.round-boarder1,
.single-trip-circle input[type="radio"]:checked + label span.round-boarder1 {
    transition: background-color 0.4s linear;
}

/* Filter */
.travel-budget {
    margin-top: 38px;
}
.travel-budget h3 {
    color: #565a5c;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
}

/* Price Filter Styling */
.price_filter {
    margin-top: 9px;
}
.price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
    background: #d7d7d7;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    height: 6px;
}
.price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
    background: var(--accent-red); /* Changed to red for handle */
    border: 0;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    outline: 0;
    cursor: pointer;
    z-index: 1;
}
.price_filter .ui-slider-range {
    background: var(--primary-green); /* Changed to green for range */
}

/* Price Filter Input */
.price_slider_amount > input[type="text"] {
    font-weight: 500;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 5.5px;
    height: 40px;
    text-align: center;
    width: 280px;
    border: none !important;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

}
.price_slider_amount label {
    font-weight: 500;
    font-size: 14px;
    color: #aaa;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

}
.price_slider_amount > input[type="submit"] {
    font-weight: 500;
    font-size: 14px;
    color: #aaa;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

}

/* Travel Button */
.about-view.travel-btn {
    width: 180px;
    margin-right: 15px;
}


/*-------------------------------------
        5. Service
--------------------------------------*/
.service {
    position: relative;
    padding: 80px 0 54px;
    background: #f9f9f9; /* Light grey to create separation */
}

/* single-service-box */
.single-service-box {
    display: flex;
    margin-bottom: 30px;
}

/* Service Content */
.service-content {
    max-width: 268px;
    margin: 6px 0 30px 7px;
}

.service-content h2 a {
    color: var(--primary-green); /* Green to align with brand */
    font-size: 16px;
    text-transform: capitalize;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 500;
    transition: color 0.3s ease;
}
.service-content h2 a:hover {
    color: var(--accent-red); /* Hover effect with red color for emphasis */
}

.service-content p {
    color: #666666; /* Changed to a slightly darker grey for readability */
    font-size: 14px;
    text-transform: inherit;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    margin-top: 17px;
}

/*-------------------------------------
        6. Gallery
--------------------------------------*/
.gallery {
    background: #ffffff; /* White background to make gallery items pop */
}
.gallery-details {
    margin-top: 100px;
    margin-bottom: 100px;
}
.gallery-content {
    margin-top: 62px;
}

/* Gallery Header */
.gallary-header h2 {
    position: relative;
    color: var(--primary-black); /* Black for a strong title */
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    padding-bottom: 14px;
}
.gallary-header p {
    position: relative;
    color: #565a5c; /* Slightly darker grey to stand out from white */
    font-size: 16px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    margin-top: 17px;
}

/* Gallery Items */
.filtr-container .filtr-item {
    overflow: hidden;
    float: left;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s ease; /* Added smooth transition for entire item */
}

.filtr-container .filtr-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.filtr-container .filtr-item:hover img {
    transform: scale(1.5); /* Zoom-in effect on hover */
}

/* Item Title */
.item-title {
    position: absolute;
    background: rgba(0, 0, 0, 0.6); /* Black semi-transparent background to increase readability */
    bottom: 20%;
    left: 20px; /* Reduced left margin for better alignment */
    padding: 10px 15px;
    width: auto;
    height: auto;
    transition: all 0.6s linear;
    border-radius: 5px; /* Added slight rounding to give a modern look */
}

.item-title a {
    color: var(--highlight-yellow); /* Changed to yellow to highlight title text */
    font-size: 24px;
    text-transform: capitalize;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 500;
    margin-bottom: 3px;
    transition: all 0.6s linear;
}
.item-title p {
    color: #fff; /* White color for subtitle text */
    font-size: 16px;
    text-transform: capitalize;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    transition: all 0.6s linear;
}
.item-title p span {
    padding-right: 30px;
}
.filtr-container .filtr-item:hover .item-title a,
.filtr-container .filtr-item:hover .item-title p {
    color: var(--accent-red); /* Red for text on hover for a striking effect */
}



/*-------------------------------------
        7. Discount-offer
--------------------------------------*/
.discount-offer {
    padding: 120px 0;
    position: relative;
    background: url(../../assets/images/home/offer-timer.jpg) no-repeat center fixed;
    background-size: cover;
    z-index: 1;
}

.discount-offer:after,
.subscribe:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Changed to a black overlay for better text contrast */
    z-index: -1;
}

/* Discount Offer Content */
.dicount-offer-content h2 {
    color: #fff;
    font-size: 36px; /* Increased font size for better visual impact */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 600; /* Increased weight for emphasis */
    line-height: 1.4;
    text-align: center; /* Center the text to draw attention */
}

/* Campaign Timer */
.campaign-timer {
    background: rgba(0, 0, 0, 0.7); /* Changed to black for more focus */
    max-width: 555px;
    margin: 43px auto;
    padding: 24px 0 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.camp {
    display: block;
    font-size: 14px;
    color: var(--highlight-yellow); /* Set to yellow for emphasis */
    font-weight: 600;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    padding: 10px 0;
    text-align: center; /* Center align for consistency */
}
.time-after {
    position: relative;
}
.time-after:after {
    position: absolute;
    content: ':';
    top: 10px;
    right: -8px;
    color: var(--highlight-yellow); /* Set to yellow to match the timer theme */
}
.time {
    display: inline-block;
    line-height: 1;
    padding: 10px 22px 0;
    font-weight: 500;
    font-size: 48px;
    color: var(--accent-red); /* Updated to red for a striking countdown effect */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    text-align: center;
} /* campaign-timer */

/* Discount Offer Button */
.about-view.discount-offer-btn {
    color: #fff;
    background: var(--primary-green); /* Set button background to green for visibility */
    max-width: 160px;
    margin: 20px auto 0; /* Added margin at the top for spacing */
    text-align: center;
    padding: 10px 20px;
    border: 1px solid var(--primary-green);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    transition: all 0.5s ease-in-out;
}
.about-view.discount-offer-btn:hover {
    color: #fff;
    background: var(--accent-red); /* On hover, change background to red for emphasis */
    border: 1px solid var(--accent-red);
}


/*-------------------------------------
        8. Packages
--------------------------------------*/
.packages {
    padding: 120px 0 90px;
    background: #f9f9f9; /* Added a light background to make packages stand out */
}

.packages-content {
    margin-top: 65px;
}

/* Single Package Item */
.single-package-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /* Added rounded corners to give a modern look */
    transition: 0.5s;
    background: #ffffff; /* White background to enhance visibility */
}

.single-package-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); /* Darker shadow on hover to make the item pop */
}

.single-package-item-txt {
    padding: 0 25px;
}

.single-package-item img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; /* Rounded corners to match the container */
}

/* Package Title Styling */
.single-package-item h3 {
    position: relative;
    font-size: 20px;
    color: var(--primary-green); /* Updated to green to align with the brand */
    font-weight: 600; /* Made font weight bolder for emphasis */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    padding: 20px 0;
    transition: color 0.3s ease-in-out; /* Smooth transition for color change */
}

.single-package-item h3:after {
    position: absolute;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-red); /* Updated to red for a cohesive color scheme */
}

.packages-para {
    padding: 17px 0 0;
    text-transform: capitalize;
}

.packages-para p {
    font-size: 14px;
    color: #565a5c; /* Changed to a darker grey for better contrast */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    margin-bottom: 15px;
}

.packages-para p span {
    display: inline-block;
    width: 150px;
}

/* Package Review Styling */
.packages-review p i {
    color: #FFD700; /* Yellow color for star rating */
    font-size: 16px;
}

.packages-review span {
    margin-left: 20px;
    font-size: 14px;
    color: #aaa;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    text-transform: capitalize;
}

/* Package Button Styling */
.about-view.packages-btn {
    width: 130px; /* Increased width for a better button size */
    height: 40px; /* Increased height for improved clickability */
    font-size: 14px;
    color: #fff;
    background: var(--accent-red); /* Set background to red for emphasis */
    text-transform: capitalize;
    border-radius: 5px; /* Added rounded corners for modern styling */
    text-align: center;
    line-height: 40px; /* Center the text vertically */
    transition: 0.5s;
}

.about-view.packages-btn:hover {
    background: var(--primary-green); /* Green on hover for contrast */
    box-shadow: 0 5px 20px rgba(14, 15, 18, 0.3);
}


/*-------------------------------------
        9. Testimonial 
--------------------------------------*/

.testemonial {
    position: relative;
    background: #f9f9f9; /* Light background for separation */
    padding: 120px 0;
    text-align: center; /* Center align content for a more balanced layout */
}

/* Testimonial Carousel Item */
.home1-testm-single {
    max-width: 345px;
    background: #ffffff; /* White background for contrast */
    padding: 30px 20px;
    border-radius: 10px; /* Added rounded corners for modern look */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    margin: auto; /* Center align individual testimonial items */
}
.home1-testm-single:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); /* Darker shadow on hover for emphasis */
}

.home1-testm.item {
    padding-top: 40px;
    padding-bottom: 30px;
}

/* Testimonial Image */
.testemonial .owl-carousel .owl-item img {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-green); /* Added border with green color for emphasis */
    margin-bottom: 20px; /* Added spacing below image */
}

/* Owl Carousel Styling */
.testemonial .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    padding: 0 19px;
}
.testemonial .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 20px;
}
.testemonial .owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 3px;
    border-radius: 50%;
    background: #aaa; 
    transition: background 0.3s ease;
}
.testemonial .owl-theme .owl-dots .owl-dot.active span {
    background: var(--accent-red); /* Set active dot color to red for better emphasis */
}

/* Testimonial Text */
.home1-testm-txt {
    padding-top: 20px;
    text-align: center; /* Center align the testimonial text */
}
.home1-testm-txt p {
    color: #666666; /* Darkened text for readability */
    font-size: 16px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    max-width: 284px;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1.6; /* Improved line spacing for readability */
}
.home1-testm-txt h3 a {
    display: block;
    color: var(--primary-green); /* Set heading color to green for emphasis */
    font-size: 18px; /* Increased font size slightly */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 600; /* Increased font weight for more impact */
    text-transform: capitalize;
    transition: color 0.3s ease;
}
.home1-testm-txt h3 a:hover {
    color: var(--accent-red); /* Change to red on hover for visual interest */
}
.home1-testm-txt h4 {
    color: #aaa; 
    font-size: 14px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 300;
    padding: 15px 0 0px;
}
.home1-testm-txt span {
    color: var(--highlight-yellow); /* Changed to yellow for a subtle visual highlight */
    font-size: 18px;
}


/*-------------------------------------
        10. Special-Offer
--------------------------------------*/
.special-offer {
    position: relative;
    background: url(../../assets/images/offer/offer-banner.jpg) no-repeat center;
    background-size: cover;
    z-index: 1;
    padding: 100px 0; /* Added padding for better spacing */
    text-align: center; /* Center align text for better visual impact */
}
.special-offer:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Changed overlay to black for better text contrast */
    z-index: -1;
}

/* Single Special Offer Background */
.single-special-offer-bg {
    margin-top: -1px;
    position: relative;
    padding-bottom: 42px;
    z-index: -1;
}
.single-special-offer-bg img {
    height: 807px;
    width: 100%; /* Set width to 100% to ensure consistency */
    object-fit: cover; /* Ensure the image covers the container */
}

/* Special Offer Content Text */
.single-special-shape-txt {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%); /* Center the text horizontally */
    text-align: center;
}
.single-special-shape-txt h3,
.single-special-shape-txt h4 {
    color: #fff;
    font-size: 30px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 700;
    line-height: 1.2; /* Better line spacing for readability */
}
.single-special-shape-txt h4 {
    text-transform: uppercase;
    margin: 40px 0; /* Reduced margin for better spacing */
}
.single-special-shape-txt h4 span {
    font-size: 60px;
    color: var(--highlight-yellow); /* Yellow for emphasis */
}
.single-special-shape-txt p {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-green); /* Green for the main paragraph text */
    text-transform: capitalize;
    margin-bottom: 30px;
}
.single-special-shape-txt p span {
    font-size: 60px;
    font-weight: 700;
    color: var(--accent-red); /* Red for numeric values or highlighted content */
}

/* Special Offer Title */
.single-special-offer-txt {
    padding: 100px 0 0; /* Adjusted padding for better spacing */
}
.single-special-offer h2 {
    color: var(--primary-green); /* Green for main heading */
    font-size: 30px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
}

/* Special Offer Description */
.packages-para.special-offer-para p {
    color: #fff;
}
.packages-para.special-offer-para p span {
    display: inline;
    color: var(--highlight-yellow); /* Use yellow for emphasized text */
    width: 100%;
    margin-right: 25px;
}

/* Special Offer Button Group */
.offer-btn-group {
    display: flex;
    justify-content: center; /* Center the button group horizontally */
    gap: 15px; /* Space between buttons */
    margin-top: 20px;
}
.about-view.packages-btn.offfer-btn {
    background: var(--accent-red); /* Red for main button color */
    border: 1px solid var(--accent-red);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.about-view.packages-btn.offfer-btn:hover {
    background: var(--primary-green); /* Green on hover for contrast */
    border: 1px solid var(--primary-green);
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/*-------------------------------------
        11. Blog
--------------------------------------*/
.blog {
    background: #ffffff; /* White background for better contrast */
    padding: 115px 0 92px;
    text-align: center; /* Center-align content for a balanced layout */
}

/* Blog Content */
.blog-content {
    margin-top: 66px;
}

/* Blog Thumbnail */
.blog-content .thumbnail {
    background: #fff;
    border: transparent;
    border-radius: 10px; /* Added rounded corners for a more modern design */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Added soft shadow for depth */
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}
.blog-content .thumbnail:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2); /* Darker shadow on hover for emphasis */
    transform: translateY(-10px) scale(1.03); /* Lift and slightly enlarge the thumbnail on hover */
}

/* Blog Thumbnail Header */
.thumbnail h2 {
    padding: 20px;
    color: var(--primary-green); /* Changed to green for branding */
    font-size: 18px; /* Increased font size for better readability */
    font-weight: 600;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    text-align: left; /* Left-align heading for better visual flow */
    transition: color 0.3s ease-in-out; /* Add transition to header for smooth color change */
}
.thumbnail:hover h2 {
    color: var(--accent-red); /* Change to red when hovered */
}
.thumbnail span {
    color: var(--highlight-yellow); /* Changed to yellow for emphasis */
    font-size: 14px;
    font-weight: normal;
    padding-left: 25px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

}

/* Thumbnail Image */
.thumbnail-img {
    position: relative;
    overflow: hidden; /* Hide overflow for image hover effect */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-content .thumbnail .thumbnail-img img {
    max-width: 100%;
    transition: transform 0.5s ease-in-out; /* Smooth zoom effect */
}
.thumbnail-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better visibility of text */
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; /* Smooth fade-in effect */
}
.blog-content .thumbnail:hover .thumbnail-img img {
    transform: scale(1.1); /* Slight zoom on hover */
}
.blog-content .thumbnail:hover .thumbnail-img-overlay {
    opacity: 1;
    transform: scale(1.05); /* Slightly enlarge the overlay on hover for a parallax effect */
}

/* Caption */
.blog-content .caption {
    background: #ffffff;
    padding: 20px; /* Added padding for better content separation */
    transition: all 0.5s ease;
}
.blog-content .thumbnail:hover .caption {
    border: transparent;
}

/* Blog Text */
.blog-txt {
    margin-top: 15px;
}
.blog-content .caption .blog-txt h3 a {
    color: var(--primary-green); /* Updated to green for heading color */
    font-size: 18px;
    font-weight: 600;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    line-height: 1.6;
    text-align: left; /* Align left for better readability */
    display: block;
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition for color and decoration */
}
.blog-content .caption .blog-txt h3 a:hover {
    color: var(--accent-red); /* Change to red on hover for visual interest */
    text-decoration: underline; /* Add underline to emphasize the link on hover */
}
.blog-content .caption .blog-txt p {
    color: #666666; /* Darkened text color for readability */
    font-size: 15px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    line-height: 1.6; /* Increased line height for better readability */
    text-align: left;
    margin: 10px 0 20px; /* Improved spacing */
    min-height: 105px;
    transition: transform 0.3s ease; /* Added subtle animation */
}
.blog-content .caption:hover .blog-txt p {
    transform: translateY(-5px); /* Make the text lift on hover for an engaging effect */
}

/* Blog Read More Link */
.blog-content .caption .blog-txt a {
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    font-size: 16px;
    color: var(--highlight-yellow); /* Yellow link for call to action */
    text-decoration: none; /* Remove default underline */
    border-bottom: 2px solid transparent; /* Add a border-bottom to create a subtle effect */
    cursor: pointer; /* Show a pointer cursor on hover */
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition for color and border */
}
.blog-content .caption .blog-txt a:hover {
    color: var(--accent-red); /* Change to red on hover for contrast */
    border-bottom: 2px solid var(--accent-red); /* Add red border-bottom on hover for emphasis */
    cursor: pointer; /* Change cursor to indicate it's clickable */
    transform: scale(1.1); /* Slightly enlarge the text on hover for emphasis */
}


/*-------------------------------------
        12. Subscribe (Updated CSS)
--------------------------------------*/
.subscribe {
    position: relative;
    padding: 100px 0;
    background: url(../../assets/images/home/subscribe-banner.jpg) no-repeat center fixed;
    background-size: cover;
    z-index: 1;
    text-align: center;
}
.subscribe:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Subscribe Section */
.subscribe {
    position: relative;
    padding: 100px 0;
    background: url(../../assets/images/home/subscribe-banner.jpg) no-repeat center fixed;
    background-size: cover;
    z-index: 1;
    text-align: center;
}
.subscribe:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Subscribe Section */
.subscribe {
    position: relative;
    padding: 80px 0;
    background: url(../../assets/images/home/subscribe-banner.jpg) no-repeat center fixed;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.subscribe:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Subscribe Title */
.subscribe-title h2 {
    color: #28a745; /* Dark green color for heading */
    font-size: 36px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    transition: color 0.3s ease-in-out;
}
.subscribe-title p {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    margin-top: 5px;
}

/* Custom Input Group */
.custom-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
}
.custom-input-group i {
    position: absolute;
    color: #ff0000;
    font-size: 22px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.3s ease;
}
.custom-input-group .form-control {
    width: 100%;
    padding-left: 50px; /* Spacing for the email icon */
    height: 55px;
    font-size: 18px;
    border-radius: 30px;
    border: 2px solid #28a745; /* Dark green border */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px; /* Space between input and button */
}
.custom-input-group .form-control::placeholder {
    color: #666; /* Darker placeholder for better contrast */
    font-style: italic;
}
.custom-input-group .form-control:focus {
    border-color: #ff0000; /* Red color on focus */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); /* Red glow on focus */
}

/* Subscribe Button */
.custom-input-group .subscribe-btn {
    width: 200px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 30px;
    height: 55px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.custom-input-group .subscribe-btn:hover {
    background: #28a745; /* Dark green on hover */
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}



/* AppsLand Button */
.appsLand-btn {
    background: #ff0000; /* Red for branding */
    display: inline-block;
    padding: 17px 54px;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;

    box-shadow: 0 1px 5px rgba(2, 3, 3, 0.15);
    letter-spacing: 0.7px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.appsLand-btn:hover,
.appsLand-btn:focus,
.appsLand-btn:active {
    background: #006400; /* Dark green on hover */
    color: #fff;
    border: 2px solid #ff0000; /* Red border on hover */
    transform: scale(1.05);
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.25);
}

/* Input Field Adjustments */
input[type="email"]::-webkit-input-placeholder {
    color: #666; /* Darker placeholder for better contrast */
}
input[type="email"]:-moz-placeholder {
    color: #666;
}
input[type="email"]::-moz-placeholder {
    color: #666;
}
input[type="email"]:-ms-input-placeholder {
    color: #666;
}



/*-------------------------------------
        13. Footer-copyright (Refined)
--------------------------------------*/
.footer-copyright {
    background: #222; /* Darker shade for consistency */
    padding: 0 0 60px;
    color: #e0e0e0; /* Light text color for readability */
}
.footer-content {
    padding: 80px 0; /* Reduced padding for balanced spacing */
}

/* Single Footer Item */
.single-footer-item {
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    text-transform: capitalize;
}
.single-footer-item h2 {
    color: #ffffff; /* White text for headings */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px; /* Adjusted margin for balanced spacing */
    transition: color 0.3s ease-in-out;
}
.single-footer-item h2:hover {
    color: #32a852; /* Accent color (darker green) for consistent branding */
}

/* Footer Logo */
.footer-logo {
    padding-top: 50px; /* Reduced padding for consistency */
}
.footer-logo a,
.footer-logo a:hover,
.footer-logo a:focus {
    color: #e0e0e0; /* Light grey text */
    font-size: 26px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    font-weight: 700;
    margin: 14px 0px 0;
    padding: 10px 0 0 0;
    transition: color 0.3s ease-in-out;
}
.footer-logo a span {
    color: #32a852; /* Dark green for contrast */
}
.footer-logo p {
    color: #b0b0b0; /* Subtle light grey text */
    font-size: 16px;
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
    margin-top: 10px;
}

/* Single Footer Text */
.single-footer-txt p {
    margin-bottom: 12px; /* Increased margin for spacing */
}
.single-footer-txt p a {
    color: #e0e0e0; /* Consistent light grey for footer links */
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}
.single-footer-txt p a:hover {
    color: #32a852; /* Dark green accent on hover */
    transform: scale(1.1); /* Slight increase for interaction */
    transition: all 0.3s ease-in-out;
}

/* Specific styling to ensure email remains lowercase */
.foot-email a {
    text-transform: none; /* Override capitalization for email */
    font-family: 'Comic Sans MS', 'Comic Sans', sans-serif;
}

/* Footer Copyright Divider */
.footer-copyright hr {
    border-top: 1px solid #444; /* Darker divider line for subtle contrast */
    margin: 20px 0; /* Adjusted margin for even spacing */
}

/* Footer Icons */
.foot-icons {
    text-align: center;
    margin-top: 40px; /* Reduced top margin */
}
.foot-icons .footer-social-links li {
    display: inline-block;
    padding: 0 15px; /* Balanced spacing for icons */
}
.foot-icons .footer-social-links a {
    color: #ffffff;
    display: block;
    font-size: 22px; /* Slightly larger font for better visibility */
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #444; /* Darker grey for subtle icon background */
    transition: all 0.5s ease-in-out;
}
.foot-icons .footer-social-links a:hover {
    color: #ffffff;
    background: #32a852; /* Dark green accent color */
    transform: rotate(360deg);
    transition: all 0.5s ease-in-out;
}

/* Scroll Top Button */
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 26px; /* Reduced size for better balance */
    cursor: pointer;
    z-index: 15;
    color: #ffffff;
    background: #32a852; /* Dark green color to match the theme */
    border: 1px solid #32a852;
    border-radius: 50%; /* Rounded button */
    transition: all 0.5s ease;
    box-shadow: 0 0 10px rgba(50, 168, 82, 0.3); /* Softer box shadow */
}
#scroll-Top .return-to-top:hover {
    background: #28a745; /* Slightly lighter green on hover */
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(50, 168, 82, 0.5);
}

/* Sticky WhatsApp Icon CSS */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    overflow: hidden; /* Ensure the icon doesn't overflow */
}

/* WhatsApp Icon */
.whatsapp-icon {
    font-size: 30px;
    line-height: 55px; /* Match the height of the container */
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

/* Hover Effect */
.whatsapp-float:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
    background-color: #22c15e; /* Slightly darker shade for hover effect */
}

/* Tooltip styling */
.whatsapp-float::after {
    content: 'Click to talk via WhatsApp';
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Show the tooltip on hover */
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}









