/* Consolidated CSS for Homepage - Addresses redundancy */

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 90vh;
}

.hero-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text-overlay {
    max-width: 800px;
    padding: 2rem;
    color: #fff;
}

.hero-text-overlay h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.hero-text-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e26a47;
}

.hero-text-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero-nav-next,
.hero-nav-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-nav-next {
    right: 2rem;
}

.hero-nav-prev {
    left: 2rem;
}

.hero-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #e26a47;
}

/* Booking Form Styles */
.booking-form-container-wrapper {
    position: absolute;
    bottom: 112px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 2rem;
    transform: translateY(50%);
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    align-items: center;
}

.booking-form-col {
    flex: 1;
    padding: 0 10px;
    min-width: 200px;
}

.booking-form-group {
    margin-bottom: 0;
}

.booking-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.booking-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.booking-form-control:focus {
    border-color: #e26a47;
    box-shadow: 0 0 0 3px rgba(226, 106, 71, 0.2);
    outline: none;
}

.booking-form-button {
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .booking-form-container-wrapper {
        display: block;
        bottom: 225px;
    }

    .hero-slide-text {
        position: absolute;
        top: -120px;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-slider {
        height: 100vh;
    }

    .hero-text-overlay {
        padding: 1rem;
    }

    .hero-text-overlay h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-text-overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-text-overlay p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }

    .hero-text-overlay h2 {
        font-size: 2rem;
    }

    .hero-text-overlay h3 {
        font-size: 1.5rem;
    }

    .hero-text-overlay p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero-nav-next,
    .hero-nav-prev {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-nav-next {
        right: 1rem;
    }

    .hero-nav-prev {
        left: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 100vh;
    }

    .hero-text-overlay {
        padding: 0.8rem;
    }

    .hero-text-overlay h2 {
        font-size: 1.8rem;
    }

    .hero-text-overlay h3 {
        font-size: 1.3rem;
    }

    .hero-text-overlay p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-nav-next,
    .hero-nav-prev {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Destination Section Styles */
.destination {
    margin: 20px 0;
}

.destination .swiper {
    padding: 0px 0;
}

.destination .swiper-slide {
    display: flex;
    justify-content: center;
}

.destination .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    width: 90%;
}

.destination .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination .card-title {
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

.destination .card-description {
    font-size: 0.9em;
    color: #555;
    margin: 10px 8px;
    text-align: left
}

.destination .card-btn {
    display: inline-block;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.destination .card-btn:hover {
    background-color: #c55b3e;
}

@media (max-width: 768px) {
    .destination .swiper-slide {
        width: 100%;
    }
}

/* Tour Section Styles */
.upcoming-tours {
    /* Parent styles */
}

.upcoming-tours__section-title {
    margin-bottom: 20px;
}

.upcoming-tours__title-header {
    margin-bottom: 10px;
}

.upcoming-tours__subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #e26a47;
}

.upcoming-tours__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff !important;
}

.upcoming-tours__card {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.upcoming-tours__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.upcoming-tours__image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.upcoming-tours__card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.upcoming-tours__description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333 !important;
}

.upcoming-tours__btn {
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border-color: #e26a47;
}

.upcoming-tours__btn:hover {
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border-color: #d25839;
}

/* Fleet Section Styles */
.fleets-section {
    background-color: #f8f9fa;
}

.fleets-swiper {
    margin-top: 20px;
}

.fleet-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-image {
    width: 100%;
    height: 200px !important;
    object-fit: contain !important;
    border-radius: 10px;
}

.fleet-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #e26a47;
}

.fleet-price {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

.fleet-description {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.btn-main-color {
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    border-radius: 5px;
    padding: 8px 20px;
    margin-top: 10px;
}

.btn-main-color:hover {
    background-color: #d2593d;
}

.gradient-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.gradient-button:hover {
    transform: scale(1.05);
}

.gradient-button span {
    display: inline-block;
}

/* Tour Item Styles */
.tour-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Reverse Layout for Alternating Tours */
.tour-item.reverse {
    flex-direction: row-reverse;
}

/* Content Styling */
.tour-content {
    flex: 1;
    text-align: left;
}

.tour-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #e26a47;
    font-weight: 600;
    text-transform: capitalize;
}

.tour-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.tour-content a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.tour-content a:hover {
    transform: scale(1.05);
}

/* Image Styling */
.tour-image {
    flex: 1;
    text-align: center;
}

.tour-image img {
    max-width: 100%;
    height: 30em;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Swiper Breakpoints */
@media (max-width: 1200px) {
    .swiper {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .swiper {
        width: 100%;
    }

    .fleet-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .swiper {
        width: 100%;
    }

    .swiper-slide {
        width: 100%;
    }

    .tour-item {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-direction: column-reverse;
    }

    .tour-item.reverse {
        flex-direction: column-reverse;
    }
}

/* Swiper Slider Styles */
.swiper-container {
    width: 100%;
    padding: 0px;
    overflow: hidden;
    position: relative;
}

.slide-content {
    width: 100%;
    overflow: hidden;
    height: 90vh;
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-content img {
    width: 100%;
    border-radius: 0px;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.slide-text h2 {
    font-size: 28px;
    font-weight: bold;
}

.slide-text h3 {
    font-size: 24px;
    color: #ddd;
}

.slide-text p {
    font-size: 18px;
    color: #ccc;
}

.custom-next {
    position: absolute;
    top: 45%;
    right: 1rem;
}

.custom-prev {
    position: absolute;
    top: 45%;
    left: 1rem;
}

.custom-next,
.custom-prev {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 50%;
    font-size: 18px;
}

.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.delay-1s {
    animation-delay: 1s;
}

.delay-2s {
    animation-delay: 2s;
}

/* Card Container Styles */
.title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.card-content h3 {
    color: #e67e22;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.explore-btn {
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #d35400;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

iframe#youtube-player {
    width: 100%;
    height: 100vh
}

@media (max-width: 768px) {
    iframe#youtube-player {
        width: 100%;
        height: 30vh
    }
}

.title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 2.5rem;
}

/* Feature Section Styles */
.feature-item {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: translateY(-5px);
}

.feature-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.feature-content {
    flex: 1;
    padding: 20px;
}

.feature-content h3 {
    color: #e67e22;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #e67e22;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #d35400;
    color: #fff;
}

.gradient-button a {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-img img {
        height: 250px;
    }

    .feature-content {
        text-align: center;
        padding: 0;
    }

    .title {
        font-size: 2rem;
    }
}

.parallax-section {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 72%);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.parallax-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-text {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: #e67e22;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }

    .parallax-title {
        font-size: 2.5rem;
    }

    .parallax-text {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .feature-item.reverse {
        flex-direction: column;
    }
}

/* About Section Base Styles */
.about-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(226, 106, 71, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Header Styles */
.about-header {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
}

.about-subtitle {
    display: inline-block;
    color: #e26a47;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 5px 15px;
    background: rgba(226, 106, 71, 0.1);
    border-radius: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

/* Content Layout */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
}

/* Image Styles */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(226, 106, 71, 0.4),
            rgba(60, 148, 150, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

/* Text Content Styles */
.about-text {
    padding: 24px 0;
    position: relative;
}

.about-text-title {
    color: #e26a47;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.about-text-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 20px;
    background: #e26a47;
    transform: translateY(-50%);
    border-radius: 2px;
}

.about-text-subtitle {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.about-description {
    color: #5f6c7b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.about-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #e26a47;
    border-radius: 50%;
}

/* CTA Button Styles */
.about-cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3c9496, #e26a47);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 106, 71, 0.2);
    color: #fff;
}

.about-cta:hover::before {
    opacity: 1;
}

.about-cta span {
    position: relative;
    z-index: 1;
}

.about-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-cta:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-section {
        padding: 100px 0;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-text-subtitle {
        font-size: 2.2rem;
    }

    .about-img {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-img {
        height: 400px;
    }

    .about-text {
        text-align: center;
        padding: 0;
    }

    .about-text-title::before {
        display: none;
    }

    .about-description {
        padding-left: 0;
    }

    .about-description::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 2.4rem;
    }

    .about-text-subtitle {
        font-size: 2rem;
    }

    .about-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text-title {
        font-size: 1.2rem;
    }

    .about-text-subtitle {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Nepal Features Section Styles */
.nepal-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #254f4f, #1a3636);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Feature Card Hover Effects */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .feature-card {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .nepal-features {
        padding: 60px 0;
    }

    .feature-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Modern Section Common Styles */
.modern-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.modern-section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(226, 106, 71, 0.1), rgba(60, 148, 150, 0.1));
    color: #e26a47;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.modern-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modern-section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    margin: 0 auto;
    border-radius: 3px;
}

/* Tours Section Styles */
.modern-tours {
    padding: 0 0;
    background: #fff;
}

.modern-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.modern-tour-item {
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.modern-tour-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.modern-tour-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.modern-tour-info {
    width: 100%;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modern-tour-details {
    display: flex;
    gap: 1rem;
    color: #fff;
    font-size: 0.9rem;
}

.modern-tour-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-tour-content {
    padding: 1.5rem;
}

.modern-tour-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modern-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-tour-btn i {
    transition: transform 0.3s ease;
}

/* Tour Card Hover Effects */
.modern-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-tour-card:hover .modern-tour-image img {
    transform: scale(1.1);
}

.modern-tour-card:hover .modern-tour-overlay {
    opacity: 1;
}

.modern-tour-card:hover .modern-tour-info {
    transform: translateY(0);
}

.modern-tour-btn:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
}

.modern-tour-btn:hover i {
    transform: translateX(5px);
}

/* Fleet Section Styles */
.modern-fleet {
    padding: 6rem 0;
    background: #f8f9fa;
}

.modern-fleet-slider {
    position: relative;
    padding: 2rem 0;
}

.modern-fleet-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-fleet-image {
    position: relative;
    overflow: hidden;
}

.modern-fleet-image img {
    width: 100%;
    height: 20rem;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-fleet-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.modern-fleet-content {
    padding: 1.5rem;
    text-align: center;
}

.modern-fleet-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modern-fleet-specs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.modern-fleet-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modern-fleet-btn i {
    transition: transform 0.3s ease;
}

/* Fleet Card Hover Effects */
.modern-fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modern-fleet-card:hover .modern-fleet-image img {
    transform: scale(1.1);
}

.modern-fleet-btn:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
}

.modern-fleet-btn:hover i {
    transform: translateX(5px);
}

/* Fleet Navigation */
.modern-fleet-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.modern-fleet-prev,
.modern-fleet-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-fleet-prev:hover,
.modern-fleet-next:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #3c9496, #e26a47);
}

.modern-fleet-footer {
    text-align: center;
    margin-top: 3rem;
}

.modern-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-view-all:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
    transform: translateY(-3px);
}

.modern-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .modern-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .modern-section-title {
        font-size: 2rem;
    }

    .modern-tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .modern-section-title {
        font-size: 1.8rem;
    }

    .modern-tour-overlay {
        opacity: 1;
    }

    .modern-tour-info {
        transform: translateY(0);
    }

    .modern-fleet-navigation button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .modern-section-tag {
        font-size: 0.8rem;
    }

    .modern-section-title {
        font-size: 1.5rem;
    }

    .modern-tour-title,
    .modern-fleet-title {
        font-size: 1.2rem;
    }

    .modern-tour-btn,
    .modern-fleet-btn,
    .modern-view-all {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Modern Upcoming Tours Section Styles */
.modern-upcoming-tours {
    padding: 40px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, rgba(226, 106, 71, 0.1), rgba(60, 148, 150, 0.1));
    color: #e26a47;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.tours-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-card:nth-child(even) {
    flex-direction: row-reverse;
}

.tour-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.tour-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tour-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.tour-button i {
    transition: transform 0.3s ease;
}

/* Tour Card Hover Effects */
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-button:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
}

.tour-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .tour-card {
        flex-direction: column !important;
        gap: 20px;
    }

    .tour-image img {
        height: 300px;
    }

    .tour-content {
        padding: 30px;
    }

    .tour-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-upcoming-tours {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tour-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-tag {
        font-size: 0.8rem;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Nepal Features Section Styles */
.nepal-features-parallax {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 79, 79, 0.95), rgba(26, 54, 54, 0.9));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #e26a47;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    perspective: 1000px;
    background: transparent;
}

.feature-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-content {
    padding: 30px;
    text-align: center;
    position: relative;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-btn i {
    transition: transform 0.3s ease;
}

/* Feature Card Hover Effects */
.feature-card-inner:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-inner:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card-inner:hover .feature-overlay {
    opacity: 1;
}

.feature-card-inner:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card-inner:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-btn:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
}

.feature-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .nepal-features-parallax {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .nepal-features-parallax {
        padding: 60px 0;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Fix for mobile parallax */
@media (max-width: 768px) {
    .nepal-features-parallax {
        background-attachment: scroll;
    }
}

/* About Author Section */
.about-author-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-author-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e26a47 0%, #d85a37 100%);
}

.about-author-section .about-author-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-author-section .about-author-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-author-section .about-author-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-author-section .author-img-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.about-author-section .author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-author-section .about-author-wrapper:hover .author-img {
    transform: scale(1.05);
}

.about-author-section .author-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(226, 106, 71, 0.1) 100%
    );
    pointer-events: none;
}

.about-author-section .about-author-content {
    padding: 3rem;
}

.about-author-section .author-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e26a47 0%, #d85a37 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-author-section .author-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.about-author-section .author-subtitle {
    font-size: 1.1rem;
    color: #e26a47;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-author-section .author-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.about-author-section .author-signature {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    font-weight: 600;
    margin: 2rem 0;
}

.about-author-section .author-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #e26a47 0%, #d85a37 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(226, 106, 71, 0.3);
}

.about-author-section .author-book-btn:hover {
    background: linear-gradient(135deg, #d85a37 0%, #c74a27 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 106, 71, 0.4);
    color: #ffffff;
}

.about-author-section .author-book-btn i {
    font-size: 1.2rem;
}

/* Tablet Styles */
@media (max-width: 992px) {
    .about-author-section {
        padding: 3rem 0;
    }

    .about-author-section .about-author-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-author-section .about-author-image {
        min-height: 400px;
        order: 1;
    }

    .about-author-section .about-author-content {
        padding: 2.5rem;
        order: 2;
    }

    .about-author-section .author-title {
        font-size: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .about-author-section {
        padding: 2rem 0;
    }

    .about-author-section .about-author-container {
        padding: 0 1rem;
    }

    .about-author-section .about-author-wrapper {
        border-radius: 15px;
    }

    .about-author-section .about-author-image {
        min-height: 300px;
    }

    .about-author-section .about-author-content {
        padding: 1.5rem;
    }

    .about-author-section .author-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }

    .about-author-section .author-title {
        font-size: 1.8rem;
    }

    .about-author-section .author-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-author-section .author-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .about-author-section .author-signature {
        font-size: 1rem;
        margin: 1.5rem 0;
    }

    .about-author-section .author-book-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .about-author-section .author-book-btn i {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .about-author-section .about-author-image {
        min-height: 250px;
    }

    .about-author-section .about-author-content {
        padding: 1.2rem;
    }

    .about-author-section .author-title {
        font-size: 1.5rem;
    }

    .about-author-section .author-description {
        font-size: 0.9rem;
    }
}

/* Destination Card Styles */
.destination-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-card__image {
    position: relative;
    overflow: hidden;
}

.destination-card__image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-card__image img {
    transform: scale(1.1);
}

.destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-card__overlay {
    opacity: 1;
}

.destination-card__content {
    padding: 25px;
}

.destination-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.destination-card__description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.destination-card__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.destination-card__btn:hover {
    transform: translateX(5px);
    color: #fff;
}

.destination-card__btn-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Blog Swiper */
.blog-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-swiper img {
    width: 100%;
    height: 15em;
    object-fit: cover;
}
/* Footer Styles */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

.first-footer,
.second-footer,
.bottom-footer-text {
    position: relative;
    z-index: 1;
}

.contact-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;/* Footer Styles */
}
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

.first-footer,
.second-footer,
.bottom-footer-text {
    position: relative;
    z-index: 1;
}

.contact-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 16px;
}

.contact-icon.phone-icon {
    background: linear-gradient(45deg, #e26a47, #ff8f6c);
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(45deg, #e26a47, #ff8f6c);
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons .list-inline {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.instagram:hover i {
    color: #E4405F;
}

.social-icon.tiktok:hover i {
    color: #00F2EA;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
}

footer .contact-widget {
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-widget:hover {
    transform: translateY(-5px);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color, #ff5e14);
    color: #ffffff;
}

.title-icon {
    color: var(--primary-color, #ff5e14);
    font-size: 1.5rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #ff5e14);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon {
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: var(--primary-color, #ff5e14);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-text,
.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    color: var(--primary-color, #ff5e14);
}

/* Animations */
.bounce {
    animation: bounce 2s infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.shake {
    animation: shake 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

@media (max-width: 768px) {
    .contact-widget {
        padding: 20px;
    }

    .contact-item {
        padding: 8px;
    }

    .icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .contact-icon {
        font-size: 1rem;
    }
}/* Modern Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e26a47 0%, #d45a37 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding: 12px 24px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-accept {
    background: rgba(255, 255, 255, 0.95);
    color: #e26a47;
    border: 2px solid transparent;
}

.cookie-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.closing {
    animation: slideOutDown 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        width: 100%;
        margin-bottom: 5px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }

    .cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Back-to-Top Button */
.menu ul,
.menu li {
    list-style: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 2px;
    width: 42px;
    height: 42px;
    background-color: #e26a47;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Ensures it stays on top */
    background-color: white;
    /* Optional: Set a background to avoid transparency issues */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: Adds a slight shadow for a better effect */
}

/* Contact Floater Styles */
.contact-floater {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.float-btn i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.float-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp {
    background: #25D366;
}

.phone {
    background: #007bff;
}

.tooltip {
    position: absolute;
    left: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}

@media (max-width: 768px) {
    .contact-floater {
        bottom: 15px;
        left: 15px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
    }

    .float-btn i {
        font-size: 22px;
    }

    .tooltip {
        display: none;
    }

    .contact-floater {
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.float-btn {
    animation: pulse 2s infinite;
}

.float-btn:hover {
    animation: none;
}

/* Modern Banner Styles - Global */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    animation: fadeInUp 1.2s ease-out;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb__title a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__title a:hover {
    color: #e26a47;
}

.breadcrumb__item:last-child .breadcrumb__title {
    color: #e26a47;
    font-weight: 600;
}

/* Banner Shape Decorations */
.banner-shape {
    position: absolute;
    z-index: 1;
}

.banner-shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e26a47, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3c9496, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .page-banner {
        height: 40vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 35vh;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .banner-breadcrumb {
        padding: 8px 15px;
    }

    .breadcrumb__item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 30vh;
        min-height: 250px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-shape-1,
    .banner-shape-2 {
        display: none;
    }
        font-size: 1rem;
    }
}/* Blog Page Styles */
.blog-grid-wrapper {
    padding: 40px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    perspective: 1000px;
}

.blog-card-inner {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-card-inner:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-inner:hover .blog-thumbnail::after {
    opacity: 1;
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-inner:hover .object-fit-cover {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    background: #fff;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #3c9496;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #636e72;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #3c9496 0%, #2980b9 100%);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 148, 150, 0.3);
    background: linear-gradient(135deg, #2980b9 0%, #3c9496 100%);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-thumbnail {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-grid-wrapper {
        padding: 20px 0;
    }

    .blog-thumbnail {
        height: 180px;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Details Page Styles */

/* CUSTOM BLOG CONTAINER STYLES */
.custom-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.custom-blog-container .custom-blog-wrapper {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.custom-blog-container .main-content {
    width: 100%;
}

@media (min-width: 992px) {
    .custom-blog-container .custom-blog-wrapper {
        grid-template-columns: 2.5fr 1fr;
    }
}

@media (max-width: 576px) {
    .custom-blog-container {
        padding: 1rem;
    }
}

/* ARTICLE CONTAINER STYLES */
.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 20px;
    border-left: 4px solid #ff6a00;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

.author-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ff6a00;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.author-title {
    margin: 3px 0 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.article-container .custom-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.article-container .image-wrapper {
    position: relative;
    overflow: hidden;
    max-height: 500px;
}

.article-container .image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.article-container .content-wrapper {
    padding: 2rem;
}

.article-container .post-meta .meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin-bottom: 1.5rem;
    list-style: none;
}

.article-container .post-meta .meta-item {
    display: inline-block;
}

.article-container .post-meta .meta-link {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-container .post-meta .meta-link:hover {
    color: #e26a47;
}

.article-container .post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    width: 100vw;
}

.article-container .share-section {
    padding-top: 1.5rem;
}

.article-container .share-section .share-title {
    color: #2d3748;
}

.article-container .share-section .social-share {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-container .share-section .social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-container .share-section .social-link:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

.article-container .share-section .social-link i {
    font-size: 18px;
}

@media (max-width: 576px) {
    .article-container .custom-card {
        border-radius: 10px;
    }

    .article-container .image-wrapper {
        max-height: 300px;
    }

    .article-container .content-wrapper {
        padding: 1rem;
        width: 100vw;
    }

    .article-container .post-meta .meta-list {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .article-container .post-meta .meta-item {
        font-size: 0.9rem;
    }

    .article-container .post-content {
        line-height: 1.6;
    }

    .article-container .post-content img {
        width: 100%;
        height: auto;
    }

    .article-container .share-section {
        padding-top: 1rem;
    }

    .article-container .share-section .social-link {
        width: 35px;
        height: 35px;
    }

    .article-container .share-section .social-link i {
        font-size: 16px;
    }
}

/* SIDEBAR STYLES */
.custom-blog-container .sidebar {
    position: relative;
}

@media (min-width: 992px) {
    .custom-blog-container .sidebar .sidebar-sticky {
        position: sticky;
        top: 2rem;
        max-height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .custom-blog-container .sidebar .sidebar-sticky::-webkit-scrollbar {
        width: 5px;
    }

    .custom-blog-container .sidebar .sidebar-sticky::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .custom-blog-container .sidebar .sidebar-sticky::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .custom-blog-container .sidebar .sidebar-sticky::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

@media (max-width: 992px) {
    .custom-blog-container .sidebar {
        margin-top: 2rem;
    }
}

/* BRAND WIDGET STYLES */
.brand-widget {
    margin-bottom: 2rem;
}

.brand-widget .brand-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-widget .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.brand-widget .brand-logo-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid #e26a47;
}

.brand-widget .logo-wrapper {
    display: inline-block;
}

.brand-widget .logo-link {
    display: block;
    text-decoration: none;
}

.brand-widget .logo-img-s {
    width: 120px;
    height: 120px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-widget .logo-img-s:hover {
    transform: scale(1.05);
}

.brand-widget .brand-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.brand-widget .brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-widget .brand-card:hover .brand-img {
    transform: scale(1.1);
}

.brand-widget .brand-content {
    padding: 1.5rem;
    text-align: center;
}

.brand-widget .brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.brand-widget .brand-social {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-widget .social-links {
    display: flex;
    gap: 1rem;
}

.brand-widget .social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-widget .social-link:hover {
    background: #e26a47;
    color: #fff;
    transform: translateY(-3px);
}

.brand-widget .social-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 576px) {
    .brand-widget .brand-logo-container {
        padding: 1.5rem 1rem;
    }

    .brand-widget .logo-img-s {
        width: 100px;
        height: 100px;
    }

    .brand-widget .brand-image {
        height: 200px;
    }

    .brand-widget .brand-content {
        padding: 1.2rem;
    }

    .brand-widget .brand-description {
        font-size: 0.9rem;
    }

    .brand-widget .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* RECENT POSTS WIDGET STYLES */
.recent-posts {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.recent-posts .widget-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 1.2rem 1.5rem;
}

.recent-posts .widget-header h5 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recent-posts .widget-content {
    padding: 1.5rem;
}

.recent-posts .recent-post-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.recent-posts .recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts .post-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-posts .thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-posts .recent-post-item:hover .thumbnail-img {
    transform: scale(1.1);
}

.recent-posts .post-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.recent-posts .post-details h4 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-posts .post-details h4 a:hover {
    color: #e26a47;
}

.recent-posts .post-date {
    font-size: 0.85rem;
    color: #718096;
}

@media (max-width: 576px) {
    .recent-posts .recent-post-item {
        grid-template-columns: 60px 1fr;
        gap: 0.8rem;
    }

    .recent-posts .post-thumbnail {
        width: 60px;
        height: 60px;
    }

    .recent-posts .post-details h4 {
        font-size: 0.9rem;
    }

    .recent-posts .post-date {
        font-size: 0.8rem;
    }
}

/* PAGE BANNER STYLES */
.page-banner {
    position: relative;
    height: clamp(250px, 60vh, 600px);
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.7)
    );
    z-index: 1;
}

.page-banner .banner-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.page-banner .banner-shape-1 {
    top: 10%;
    left: 5%;
    width: clamp(60px, 15vw, 120px);
    height: clamp(60px, 15vw, 120px);
    background: linear-gradient(45deg, #e26a47 30%, transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-banner .banner-shape-2 {
    bottom: 10%;
    right: 5%;
    width: clamp(80px, 20vw, 160px);
    height: clamp(80px, 20vw, 160px);
    background: linear-gradient(45deg, #3c9496 30%, transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.page-banner .banner-content-wrapper {
    position: relative;
    width: 100%;
    max-width: min(90%, 1200px);
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.5rem, 2vh, 1.5rem);
}

.page-banner .banner-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out;
}

.page-banner .banner-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.page-banner .banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    margin-top: clamp(1rem, 3vh, 2rem);
    animation: fadeInUp 1.2s ease-out;
    list-style: none;
}

.page-banner .breadcrumb__item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.page-banner .breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 clamp(0.3rem, 1vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
}

.page-banner .breadcrumb__title a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb__title a:hover {
    color: #e26a47;
}

.page-banner .breadcrumb__item:last-child .breadcrumb__title {
    color: #e26a47;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-banner .hide-mobile {
        display: none !important;
    }

    .page-banner {
        min-height: 150px !important;
        height: 30vh !important;
        padding: 1rem !important;
    }

    .page-banner .banner-content-wrapper {
        padding: 0.5rem !important;
    }

    .page-banner .banner-breadcrumb {
        margin-top: 0 !important;
        padding: 8px 15px !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: clamp(180px, 45vh, 300px);
    }

    .page-banner .banner-content-wrapper {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .page-banner .banner-shape {
        display: none;
    }

    .page-banner .banner-breadcrumb {
        flex-wrap: wrap;
        gap: 0.3rem;
        padding: 0.4rem 0.8rem;
        border-radius: 25px;
    }

    .page-banner .breadcrumb__item {
        font-size: 0.8rem;
    }
}

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}/* YouTube Videos Section Styles */
.youtube-videos-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.youtube-videos-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.youtube-videos-section .section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.youtube-videos-section .section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 106, 71, 0.4);
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .youtube-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .youtube-videos-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .youtube-videos-grid {
        grid-template-columns: 1fr;
    }

    .youtube-videos-section {
        padding: 40px 0;
    }

    .youtube-videos-section .section-title {
        font-size: 1.8rem;
    }

    .youtube-videos-section .section-subtitle {
        font-size: 1rem;
    }
}

/* Override any conflicting styles */
.social-icon.tiktok-icon {
    width: 16px !important;
    height: 16px !important;
}

.logo-img-round {
    border-radius: 100% !important;
}

.hide-checkbox, .mobile-menu-checkbox {
    display: none !important;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e26a47 0%, #d45a37 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding: 12px 24px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-accept {
    background: rgba(255, 255, 255, 0.95);
    color: #e26a47;
    border: 2px solid transparent;
}

.cookie-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.closing {
    animation: slideOutDown 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        width: 100%;
        margin-bottom: 5px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }

    .cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Back-to-Top Button */
.menu ul,
.menu li {
    list-style: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 2px;
    width: 42px;
    height: 42px;
    background-color: #e26a47;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Ensures it stays on top */
    background-color: white;
    /* Optional: Set a background to avoid transparency issues */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: Adds a slight shadow for a better effect */
}

/* Contact Floater Styles */
.contact-floater {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.float-btn i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.float-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp {
    background: #25D366;
}

.phone {
    background: #007bff;
}

.tooltip {
    position: absolute;
    left: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}

@media (max-width: 768px) {
    .contact-floater {
        bottom: 15px;
        left: 15px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
    }

    .float-btn i {
        font-size: 22px;
    }

    .tooltip {
        display: none;
    }

    .contact-floater {
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.float-btn {
    animation: pulse 2s infinite;
}

.float-btn:hover {
    animation: none;
}

/* Modern Banner Styles - Global */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    animation: fadeInUp 1.2s ease-out;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb__title a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__title a:hover {
    color: #e26a47;
}

.breadcrumb__item:last-child .breadcrumb__title {
    color: #e26a47;
    font-weight: 600;
}

/* Banner Shape Decorations */
.banner-shape {
    position: absolute;
    z-index: 1;
}

.banner-shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e26a47, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3c9496, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .page-banner {
        height: 40vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 35vh;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .banner-breadcrumb {
        padding: 8px 15px;
    }

    .breadcrumb__item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 30vh;
        min-height: 250px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-shape-1,
    .banner-shape-2 {
        display: none;
    }
}/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e26a47 0%, #d45a37 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    flex-shrink: 0;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    padding: 12px 24px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-accept {
    background: rgba(255, 255, 255, 0.95);
    color: #e26a47;
    border: 2px solid transparent;
}

.cookie-accept:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cookie-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.closing {
    animation: slideOutDown 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-content {
        width: 100%;
        margin-bottom: 5px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 120px;
    }

    .cookie-close {
        position: absolute;
        top: 10px;
        right: 10px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Back-to-Top Button */
.menu ul,
.menu li {
    list-style: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 2px;
    width: 42px;
    height: 42px;
    background-color: #e26a47;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #2980b9;
    transform: scale(1.1);
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Ensures it stays on top */
    background-color: white;
    /* Optional: Set a background to avoid transparency issues */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: Adds a slight shadow for a better effect */
}

/* Contact Floater Styles */
.contact-floater {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.float-btn i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.float-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp {
    background: #25D366;
}

.phone {
    background: #007bff;
}

.tooltip {
    position: absolute;
    left: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}

@media (max-width: 768px) {
    .contact-floater {
        bottom: 15px;
        left: 15px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
    }

    .float-btn i {
        font-size: 22px;
    }

    .tooltip {
        display: none;
    }

    .contact-floater {
        flex-direction: column-reverse;
        gap: 10px;
    }
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.float-btn {
    animation: pulse 2s infinite;
}

.float-btn:hover {
    animation: none;
}

/* Modern Banner Styles - Global */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.banner-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.banner-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    animation: fadeInUp 1.2s ease-out;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb__title a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__title a:hover {
    color: #e26a47;
}

.breadcrumb__item:last-child .breadcrumb__title {
    color: #e26a47;
    font-weight: 600;
}

/* Banner Shape Decorations */
.banner-shape {
    position: absolute;
    z-index: 1;
}

.banner-shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e26a47, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.banner-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #3c9496, transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .page-banner {
        height: 40vh;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 35vh;
    }

    .banner-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .banner-breadcrumb {
        padding: 8px 15px;
    }

    .breadcrumb__item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 30vh;
        min-height: 250px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-shape-1,
    .banner-shape-2 {
        display: none;
    }
}/* YouTube Videos Section Styles */
.youtube-videos-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.video-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.view-all-videos-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #e26a47, #3c9496);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-videos-btn:hover {
    background: linear-gradient(45deg, #3c9496, #e26a47);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 106, 71, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .youtube-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .youtube-videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .video-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .youtube-videos-section {
        padding: 30px 0;
    }

    .youtube-videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-wrapper {
        height: 200px;
    }
}