.slider {
    position: relative;
    margin-bottom: 0px !important;
}

.slider,
.slider .slick-slide {
    height: 100vh;
    /* Full viewport height */
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Crop image nicely to fill screen */
}

.slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.slider .slick-dots li {
    margin: 0 6px;
}

.slider .slick-dots li button {
    width: 4px;
    height: 4px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    transition: width 0.3s ease, background 0.3s ease;
}

.slider .slick-dots li.slick-active button {
    width: 20px;
    background: var(--white);
}

.slider .slick-dots li button:before {
    display: none;
}

.main-header {
    position: relative;
    overflow: hidden;
}

.main-nav {
    height: 100vh;
}

.about-us-container {
    position: relative;
    z-index: 0;
    min-height: 300px;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    opacity: 1;
}

.about-us-container:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    /* background-image: url('../images/about_us_background.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}

.section-header-text {
    /* font-family: 'Philosopher', sans-serif; */
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary);
    text-align: center;
    font-weight: bold;
}

.section-header-text span {
    color: var(--accent);
}

.about-us-container p {
    font-size: 16px;
    /* font-family: 'Raleway', sans-serif; */
    padding-right: 70px;
    padding-left: 70px;
    font-weight: 400;
    text-align: center;
    color: var(--primary);
}

.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 12rem;
    height: auto;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 1.625rem;
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--white);
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--white);
    border-right: 0.125rem solid var(--white);
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

.learn-more:hover .circle {
    width: 100%;
    background-color: var(--accent);
}

.learn-more:hover .circle .icon.arrow {
    background: var(--white);
    transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
    color: var(--white);
}

.our-packges-container {
    position: relative;
    z-index: 0;
    min-height: 300px;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    opacity: 1;
}

.our-packges-container:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/packages_back.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.our-packages-header h5 {
    padding-top: 0px !important;
}

.our-packages-header p {
    margin-bottom: 0px;
    color: var(--primary);
    font-weight: bold;
    font-size: 14px;
}

.product-card {
    border: none !important;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    align-items: center;
    border-radius: 15px;
    width: 70%;
}

.product-card .card-header {
    border: none;
    text-align: center;
    background-color: transparent;
    padding: 0px;
    width: 100%;
    max-height: 310px;
    overflow: hidden;
}

.product-card .card-title {
    font-family: var(--font-heading);
    text-align: center;
    font-weight: bold;
    font-size: 17px;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card .card-body {
    align-items: center;
    text-align: center;
    font-size: 14px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: var(--white);
    margin-top: -30px;
    min-height: 175px !important;
    /* font-family: 'Raleway', sans-serif; */
    width: 100%;
}

.product-card .card-footer {
    background-color: var(--white);
    border-top: none;
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
    padding-bottom: 20px;
    width: 100%;
}

.product-card-link {
    color: var(--white);
    background-color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    margin-bottom: 10px;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
}

.product-card-link:hover {
    background-color: var(--accent);
}

.package-slider .slick-list {
    padding-bottom: 15px !important;
}

.package-slider .slick-prev {
    left: -5px;
    z-index: 10000000;
}

.package-slider .slick-next {
    right: -5px;
    z-index: 10000000;
}

.package-slider .slick-prev:before,
.package-slider .slick-next:before {
    color: var(--primary);
}

.package-slider .slick-dots li button:before {
    display: none;
}

.package-slider .slick-dots li button {
    width: 4px;
    height: 4px;
    border: none;
    border-radius: 5px;
    background: var(--primary);
}

.package-slider .slick-dots li.slick-active button {
    background: var(--accent);
}

.explore-sri-lanka-container {
    position: relative;
    z-index: 0;
    min-height: 300px;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    opacity: 1;
}

.explore-sri-lanka-content-row {
    padding-left: 150px;
    padding-right: 150px;
}

.explore-sri-lanka-content-row {
    min-height: 500px;
}

.explore-sri-lanka-content-row .explore-sri-lanka-image-content {
    background-image: url('../images/explore_sri_lanka.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.explore-sri-lanka-text-content {
    background: var(--primary);
    color: var(--white);
    padding-top: 130px;
    padding-left: 30px;
    padding-right: 30px;
}

.explore-sri-lanka-text-content h5 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--accent);
}

.explore-sri-lanka-text-content p {
    text-align: justify;
    margin-top: 30px;
}

.expore-button .button-text {
    color: var(--white);
}

.expore-button .circle {
    border: 1px solid var(--white);
}

.expore-button:hover .circle {
    border: 1px solid var(--accent);
}

.learn-more .button-text {
    margin: 0 0 0 2.5rem;
}

.tour-plan-container {
    min-height: 500px;
    position: relative;
    z-index: 0;
    align-items: center;
    text-align: center;
    opacity: 1;
    padding-left: 150px;
    padding-right: 150px;
    padding-bottom: 30px;
}

.tour-plan-container:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-image: url('../images/tour_plan_back.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.tour-plan-header p {
    margin-bottom: 0px;
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
}

.tour-plan-header .section-header-text {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    font-weight: bold;
}

.tour-plan-text-content .learn-more .button-text {
    color: var(--white);
}

.tour-plan-text-content .learn-more:hover .circle {
    width: 100%;
    background-color: var(--accent);
}

.tour-plan-text-content {
    margin-left: 0px;
    margin-right: 0px;
}

.tour-plan-text-content:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    /* background: rgba(255, 255, 255, 0.4); */
    z-index: -1;
    pointer-events: none;
}

.tour-plan-text-content p {
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    color: var(--white);
    padding-left: 100px;
    padding-right: 100px;
}

.inner-header {
    position: relative;
    margin-bottom: 0px !important;
}

/* =========================
   Floating WhatsApp Button
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 99999;
    text-decoration: none;
}

/* Icon Circle */
.whatsapp-float i {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover Effect */
.whatsapp-float:hover i {
    transform: scale(1.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* Text Label */
.whatsapp-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

/* Pulse animation */
.whatsapp-float i::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float i {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .whatsapp-text {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/*extra small - mobile devices */
@media (max-width: 575px) {
    .main-nav {
        height: 30vh;
    }

    .slider,
    .slider .slick-slide {
        height: 30vh;
    }

    .about-us-container p {
        font-size: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .explore-sri-lanka-content-row {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
}

/*small devices - large mobiles and small tablets */
@media (min-width: 576px) and (max-width: 767px) {
    .main-nav {
        height: 30vh;
    }

    .slider,
    .slider .slick-slide {
        height: 30vh;
    }

    .about-us-container p {
        font-size: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .explore-sri-lanka-content-row {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
    }
}

/*medium devices - tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .main-nav {
        height: 30vh;
    }

    .slider,
    .slider .slick-slide {
        height: 30vh;
    }

    .about-us-container p {
        font-size: 23px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .our-packages-header p {
        font-size: 18px;
    }

    .product-card {
        width: 80%;
        margin-top: 20px;
    }

    .product-card .card-text {
        font-size: 20px;
        line-height: 20px;
    }

    .explore-sri-lanka-content-row {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 20px;
    }

    .explore-sri-lanka-text-content {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .explore-sri-lanka-text-content p {
        font-size: 23px;
        font-family: 'Raleway', sans-serif;
        line-height: 30px;
    }

    .tour-plan-text-content p {
        font-size: 23px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .tour-plan-text-content p {
        font-size: 20px;
    }

    .tour-plan-text-content p {
        font-size: 20px;
    }

    .footer-container {
        min-height: 315px;
    }

    .footer-links-column ul {
        font-size: 20px;
    }

    .footer-contacts-column ul {
        font-size: 20px;
    }

    .footer-links-column ul li {
        margin-bottom: 0px;
    }
}