@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* theme color  */

:root {
    --primary-color: #1757A8;
    --primary-dark: #114b97;
    --primary-light: #3d7bc6;
    --secondary-color: #FF6B6B;
    --secondary-dark: #ee5a52;
    --accent-color: #4ECDC4;
    --success-color: #45B7AA;
    --white-color: #fff;
    --gradient-primary: linear-gradient(135deg, #1757A8 0%, #3d7bc6 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6B6B 0%, #ee5a52 100%);
}

/* font colors  */

:root {
    --gray-font: rgb(145, 145, 145);
    --white-font: #fff;
    --dark-font: #1b1b1b;
    --light-font: #e6e6e6;
}

/* background color  */

:root {
    --light-back: #fff;
    --gray-back: #F2F3F8;
}

* {
    font-family: "Poppins", sans-serif;
    color: var(--dark-font);
}

html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Preloader styling */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

.preloader-animation {
    width: 300px;
    height: 300px;
}

/* Main content initially hidden */
.main-content {
    display: none;
}

/* Hidden utility class */
.hidden {
    display: none;
}

/* Footer CTA section */
.footer-cta-section {
    background: var(--gradient-secondary);
}

/* Card hover effects */
.card, .review-card, .service-sec-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.card::after, .review-card::after, .service-sec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.card:hover::after, .review-card:hover::after, .service-sec-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card:hover, .review-card:hover, .service-sec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(23, 87, 168, 0.15);
}

/* Pulse animation for CTAs */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

.theme-dark-btn.pulse {
    animation: pulse 2s infinite;
}

/* Improved heading styles */
.heading-2 .theme-text {
    position: relative;
    display: inline-block;
}

.heading-2 .theme-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Social proof badges */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(69, 183, 170, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 50px;
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    margin: 5px;
}

.trust-badge i {
    font-size: 18px;
}

/* Floating Book Now Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: floatBtn 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

.floating-book-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(23, 87, 168, 0.5);
    color: white;
    animation: none;
}

.floating-book-btn i {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.floating-book-btn:hover i {
    transform: rotate(15deg);
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes glow {
    from { box-shadow: 0 8px 30px rgba(255, 107, 107, 0.45); }
    to { box-shadow: 0 8px 40px rgba(255, 107, 107, 0.65); }
}

/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.floating-whatsapp i {
    font-size: 32px;
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,1) 100%);
    padding: 15px 15px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.mobile-sticky-cta .cta-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mobile-sticky-cta .btn-call {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 15px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(23, 87, 168, 0.3);
    transition: all 0.3s ease;
}

.mobile-sticky-cta .btn-call:hover,
.mobile-sticky-cta .btn-call:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(23, 87, 168, 0.4);
}

.mobile-sticky-cta .btn-book {
    flex: 1;
    background: var(--gradient-secondary);
    color: white;
    padding: 14px 15px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.mobile-sticky-cta .btn-book:hover,
.mobile-sticky-cta .btn-book:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.mobile-sticky-cta .btn-whatsapp {
    background: #25D366;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.mobile-sticky-cta .btn-whatsapp:hover,
.mobile-sticky-cta .btn-whatsapp:active {
    transform: scale(0.95);
}

.mobile-sticky-cta .btn-whatsapp i {
    font-size: 26px;
    color: white;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .floating-book-btn {
        bottom: 85px;
        right: 15px;
        padding: 10px 15px;
    }

    .floating-whatsapp {
        display: none;
    }

    /* Add padding to footer to prevent overlap */
    .footer-section {
        padding-bottom: 80px;
    }
}


/* Statistics Section Styles */
.stats-section .stat-item {
    transition: transform 0.3s ease;
}

.stats-section .stat-item:hover {
    transform: scale(1.1);
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stats-section .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Urgency CTA Banner */
.urgency-cta-banner {
    position: relative;
    overflow: hidden;
}

.urgency-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.urgency-cta-banner .btn-light {
    transition: all 0.3s ease;
    animation: subtleBounce 2s ease-in-out infinite;
}

.urgency-cta-banner .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.urgency-cta-banner h3 i {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Trust Badges Section */
.trust-badges-section {
    border-top: none;
    border-bottom: none;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.trust-badge-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 5px;
}

.trust-badge-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(23, 87, 168, 0.12);
}

.trust-badge-item i {
    transition: all 0.4s ease;
}

.trust-badge-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.trust-badge-item p {
    color: var(--dark-font);
    font-size: 14px;
    font-weight: 600;
}

/* FAQ Section Styling */
.faq-section .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-button {
    background-color: white;
    color: var(--dark-font);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
    background-color: #fafafa;
}

.faq-section .accordion-body a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-section .accordion-body a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for floating button */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-book-btn span {
        display: none;
    }

    .floating-book-btn i {
        font-size: 28px;
    }

    .trust-badge-item p {
        font-size: 12px;
    }

    .trust-badge-item i {
        font-size: 2rem !important;
    }

    .faq-section .accordion-button {
        font-size: 14px;
        padding: 15px 20px;
    }

    .faq-section .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/******************* global component styling *************************** */

.heading-1 {
    font-size: 47px;
    font-weight: 700;
    line-height: 57px;
}

.heading-2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.heading-2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 4px;
    margin: 15px auto 0;
}

.heading-2.text-start::after,
.heading-2:not(.text-center)::after {
    margin-left: 0;
}

.heading-3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.tagline {
    font-size: 19px;
    line-height: 29px;
}

.para {
    font-size: 16px;
    line-height: 26px;
}

.section {
    padding: 60px 0;
}

.theme-text {
    color: var(--primary-color);
}

.theme-text-2 {
    color: var(--secondary-color);
}

.theme-primary-bg {
    background-color: var(--primary-color);
}
.theme-secondary-bg {
    background-color: var(--secondary-color);
}


.theme-dark-btn {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    color: var(--white-color);
    background: var(--gradient-secondary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.3px;
}

.theme-dark-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.theme-dark-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: var(--white-color);
}

.theme-dark-btn:hover::before {
    left: 100%;
}

.theme-dark-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.theme-dark-btn-2 {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 32px;
    color: var(--white-color);
    background: var(--gradient-secondary);
    transition: all 0.3s ease;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.theme-dark-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-dark);
    transition: all 0.3s ease;
    z-index: -1;
}

.theme-dark-btn-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: var(--white-color);
}

.theme-dark-btn-2:hover::before {
    width: 100%;
}

.theme-light-bg {
    background-color: var(--gray-back);
}

.theme-check-list {
    list-style: none;
    padding-left: 0;
}

.theme-check-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 26px;
}

.theme-check-list li::before {
    content: "\F270";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}

.secondary-text {
    color: var(--secondary-color);
}


.corner-effect {
    position: relative;
    z-index: 1;
    /* Ensure content has a higher z-index than the pseudo-elements */
}

/* Top-right diamond */
.corner-effect::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}

/* Bottom-left diamond */
.corner-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}



/***************** navigation bar styling  *****************/
/* Header styling */

.header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    flex-shrink: 0;
    z-index: 10;
}

.header .logo img {
    display: block;
    max-width: 160px;
    height: auto;
}

.header .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar {
    background: var(--gradient-primary);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar ul.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Social icons styling */
.header .social-icons a {
    font-size: 1.2rem;
}

/* Navbar styling */
.navbar-nav .nav-link {
    color: #fff !important;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    border-radius: 4px;
}

/* Button styling */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

/* Positioning the Book Online button */
.navbar .btn-primary {
    margin-right: auto;
    /* Push the button to the left */
}

.header .social-icons i {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: bold;
    transition: .6s;
}

.header .social-icons i:hover {
    color: var(--secondary-color);
}

.navbar .navbar-toggler {
    border: 2px solid var(--light-font);
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Navigation Optimization */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--gradient-primary);
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        gap: 5px !important;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        font-size: 16px;
    }

    .navbar-nav .dropdown-menu {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 8px;
        padding: 10px 0;
        margin-top: 5px;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: #fff;
        padding: 10px 20px;
        font-size: 15px;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .theme-dark-btn {
        display: inline-block;
        margin-bottom: 10px;
    }
}


/* *********************** Hero Section Styling *************************** */

/* Modern Hero Section */
.hero-section-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f3d6e 0%, #1757A8 50%, #3d7bc6 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4ECDC4, #FF6B6B);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    bottom: -80px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4ECDC4, #1757A8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroFloat 10s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.8s ease-out;
}

.hero-badge i {
    color: #ffc107;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-highlight {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Card */
.hero-search-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Filter Buttons */
.filter-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    min-width: 110px;
}

.filter-btn i {
    font-size: 16px;
    color: white;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7AA 100%);
    border-color: #4ECDC4;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
}

/* Search Input */
.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    pointer-events: none;
}

.hero-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #4ECDC4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
}

/* Book Now Button */
.btn-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a52 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #ee5a52 0%, #FF6B6B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 107, 0.5);
    color: white;
}

.btn-book-now i {
    transition: transform 0.3s ease;
    color: white;
}

.btn-book-now:hover i {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    color: #4ECDC4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section-modern {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-search-card {
        padding: 20px;
    }

    .filter-btn-group {
        width: 100%;
    }

    .filter-btn {
        flex: 1 1 calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-search-card {
        padding: 15px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 10px 15px;
        min-width: auto;
    }

    .btn-book-now {
        padding: 12px 25px;
        font-size: 15px;
    }

    .hero-trust-indicators {
        gap: 15px;
    }

    .trust-item {
        font-size: 12px;
    }

    .trust-item i {
        font-size: 18px;
    }

    .hero-decoration-1,
    .hero-decoration-2,
    .hero-decoration-3 {
        display: none;
    }
}

/* *********************** Modern About Section *************************** */

.about-sec-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-sec-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-sec-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 87, 168, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(23, 87, 168, 0.1) 0%, rgba(78, 205, 196, 0.15) 100%);
    border: 2px solid rgba(78, 205, 196, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(78, 205, 196, 0.35); }
}

.section-badge i {
    color: var(--accent-color);
    font-size: 16px;
}

/* About Heading */
.about-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-font);
    line-height: 1.25;
    letter-spacing: -1px;
}

.about-heading::after {
    display: none;
}

.theme-text-gradient {
    background: linear-gradient(135deg, #1757A8 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.about-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.about-feature-item:hover {
    background: white;
    border-color: transparent;
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 20px 40px rgba(23, 87, 168, 0.15);
}

.about-feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1757A8 0%, #4ECDC4 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(23, 87, 168, 0.25);
    transition: all 0.4s ease;
}

.about-feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(23, 87, 168, 0.35);
}

.feature-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-font);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */
.about-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1757A8 0%, #3d7bc6 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(23, 87, 168, 0.3);
}

.btn-about-primary:hover {
    background: linear-gradient(135deg, #3d7bc6 0%, #1757A8 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(23, 87, 168, 0.4);
    color: white;
}

.btn-about-primary i {
    transition: transform 0.3s ease;
    color: white;
}

.btn-about-primary:hover i {
    transform: translateX(5px);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(23, 87, 168, 0.3);
}

.btn-about-secondary i {
    color: inherit;
}

/* Visual Wrapper */
.about-visual-wrapper {
    position: relative;
    z-index: 1;
}

.about-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(23, 87, 168, 0.2);
    border: 5px solid white;
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: -1;
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-card:hover::before {
    opacity: 0.15;
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-card:hover .about-main-image {
    transform: scale(1.08);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.play-button-overlay i {
    font-size: 90px;
    color: white;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 8px 30px rgba(23, 87, 168, 0.5));
}

.play-button-overlay span {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.35);
    padding: 10px 24px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.review-vid-wrapper:hover .play-button-overlay i {
    transform: scale(1.25);
    opacity: 1;
    filter: drop-shadow(0 12px 40px rgba(23, 87, 168, 0.7));
}

/* Stats Badge */
.about-stats-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 25px 35px;
    box-shadow: 0 20px 60px rgba(23, 87, 168, 0.2);
    display: flex;
    gap: 35px;
    z-index: 10;
    border: 2px solid rgba(78, 205, 196, 0.2);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-badge-item {
    text-align: center;
}

.stat-badge-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1757A8 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.stat-badge-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-sec-modern {
        padding: 60px 0;
    }

    .about-heading {
        font-size: 2.2rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-badge {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-stats-badge {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }

    .play-button-overlay i {
        font-size: 60px;
    }

    .play-button-overlay span {
        font-size: 14px;
    }
}

/* *********************** Trips Carousel Section *************************** */
.trips-section .card-img-top {
    width: 100%;
    object-fit: fill;
    height: 380px;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: white;
    background-color: #007bff;
    border-radius: 50%;
    padding: 8px;
    margin: 5px;
}

/* Remove bullet points */
.owl-theme .owl-dots {
    display: none;
}

.no-trips-message {
    text-align: center;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 40px;
    background-color: #f1f1f1;
    border-radius: 10px;
    margin-top: 40px;
}

/* Initial state: hidden with no visibility */
.owl-carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    /* Animation duration */
    -webkit-transition: opacity 1s ease;
    /* Webkit compatibility */
}

/* Final state: visible with opacity animation */
.owl-carousel.delayed-visible {
    visibility: visible;
    opacity: 1;
}

.trip-card {
    border-radius: 25px;
    background-color: var(--secondary-color) !important;
}

.trip-card .card-body {
    padding: 10px !important;
}

.trip-card img {
    border-radius: 20px !important;
}


/* **************** about use section ****************** */

.review-vid-wrapper {
    position: relative;
    cursor: pointer;
}

.review-vid-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 3px 5px 7px rgba(0, 0, 0, 0.418);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: var(--white-color);
    text-shadow: 3px 5px 8px black;
}

/******************** video section  ********************/


.video-grid-sec h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 500px;
    /* Set a fixed height for consistent layout */
}

.video-thumbnail,
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio and cover entire container */
    display: block;
}

.video {
    display: none;
}

.controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-pause {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 3em;
    color: white;
    transition: opacity 0.3s;
}

.play-pause i {
    color: white;
    font-size: 60px;
    text-shadow: 3px 4px 5px black;
}

.video.playing+.controls .play-pause {
    opacity: 0.4;
}




/* ************************* review tabs styling *********************** */

section.review-sec-tab.section .nav-link.active {
    background: var(--primary-color);
}

section.review-sec-tab.section .nav-link.active span {
    color: white;
}


section.review-sec-tab.section .tabs {
    padding: 20px;
    border: 2px solid lightgray;
    border-radius: 18px;
    box-shadow: 0px 1px 26px #00000024;
    margin-top: 40px;
}

section.review-sec-tab.section .tabs iframe {
    border-radius: 18px;
}

section.review-sec-tab.section .nav-link img {
    padding: 2px;
    border: 2px dashed var(--secondary-color);
}

section.review-sec-tab.section .nav-link.active img {
    border-color: white;
}


div#hide-marketing {
    width: 300px;
    height: 40px;
    background-color: white !important;
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

div#fb-review .SZtf {
    display: none;
}

/* bus section styling start  */

.bus-sec .bus-img img {
    border-radius: 20px;
    box-shadow: 16px -16px var(--secondary-color);
    border: 12px solid var(--white-color);
    border-left: none;
    border-bottom: none;
}



/******************* bus services ection styling  ************************/

.service-sec-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.service-sec-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(23, 87, 168, 0.15);
    border-bottom-color: var(--accent-color);
}

.service-sec-icon {
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(23, 87, 168, 0.25);
    transition: all 0.3s ease;
}

.service-sec-card:hover .service-sec-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(23, 87, 168, 0.35);
}

.service-sec-icon i {
    color: white;
}

.service-sec-body {
    flex-grow: 1;
}

.service-sec-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-sec-text {
    color: #555;
}


.insta-sec {
    background-image: url("../images/insta-bg.JPG");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}


/* ******************** About Page Styling *********************** */

.abt-info-sec .carousel-item img {

    /* height: 400px; */
    object-fit: contain;
}

.abt-info-sec .carousel-indicators li {
    background-color: var(--secondary-color);
    /* Customize indicator color */
}

.abt-info-sec .carousel-control-prev-icon,
.abt-info-sec .carousel-control-next-icon {
    background-color: var(--secondary-color);
    /* Customize arrow color */
}

/* ********************** Reviews section ***************************** */


/* reviews section styling  */

.custom-reviews .review-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.custom-reviews .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-reviews .review-name {
    font-weight: bold;
}

.custom-reviews .review-date {
    font-size: 0.85rem;
    color: #666;
}

.custom-reviews .review-content .stars {
    font-size: 2rem;
    /* Increased star size */
    color: #ffc107;
    margin-bottom: 8px;
}

.custom-reviews .read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.custom-reviews .modal-header {
    border-bottom: none;
}

.custom-reviews .modal-content {
    border-radius: 10px;
    padding: 20px;
}

.custom-reviews .modal-stars {
    font-size: 1.5rem;
    color: #ffc107;
}

.review-main-header .stars {
    color: #f8bc07;
    line-height: 1;
    font-size: 36px !important;
    line-height: 1;
}

.custom-reviews .modal-body .modal-stars {
    font-size: 33px !important;
    line-height: 1;
}

.custom-reviews .modal-body {
    padding-top: 0 !important;
}

p#modalReviewText {
    margin-top: 20px;
}

/* ******************* about Hero Section ************************ */

.abt-hero-section .c-item {
    height: 403px;
    position: relative;
    /* Position relative to allow absolute positioning of overlay */
}

.abt-hero-section .c-img {
    height: 100%;
    object-fit: cover;
}

/* Add this new overlay class */
.abt-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity for darkness */
    z-index: 1;
    /* Position it below the text */
}

.abt-hero-section .slide-content {
    position: relative;
    /* Position relative to keep it above the overlay */
    padding-top: 8%;
    z-index: 2;
    /* Make sure content appears above overlay */
}

.abt-hero-section .slide-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 3px 4px black;

}

.abt-hero-section .slide-content h1 {
    font-size: 55px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 3px 4px black;
}

.abt-hero-section .slide-content p {
    font-size: 22px;
    color: white;
    font-weight: 400;
}

.ethics-card {
    text-align: center;
    padding: 20px;
    background-color: var(--gray-back);
    border: 2px solid lightgray;
    box-shadow: 2px 3px 8px #0000003b;
    height: 100%;
}

.ethics-card img {
    width: 104px;
    margin-bottom: 20px;
}


.ethics-card h3 {
    font-size: 19px;
    line-height: 28px;
    font-weight: 700;
}

.ethics-card p {
    font-size: 16px;
    line-height: 26px;
}

section.section.ethics-section .corner-effect::before,
section.section.ethics-section .corner-effect::after {
    background-color: #eaebf1 !important;
}


/* ***************** Contact Styling ********************/

.contact-page-sec .contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    height: 100%;
}

.contact-page-sec .contact-info-icon {
    margin-bottom: 15px;
}

.contact-page-sec .contact-info-item {
    background: var(--primary-color);
    padding: 30px 10px;
    height: 100% !important;
    border-radius: 20px;
    border: 4px solid var(--primary-color);
}

.contact-page-sec .contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0px;
}

.contact-page-sec .contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-sec .contact-page-form.contact-form textarea {
    height: 110px;
}

.contact-page-sec .contact-page-form.contact-form input[type="submit"] {
    background: rgb(7, 28, 52);
    width: 150px;
    border-color: rgb(7, 28, 52);
}

.contact-page-sec .contact-info-icon i {
    font-size: 48px;
    color: white;
}

.contact-page-sec .contact-info-text p {
    margin-bottom: 0px;
}

.contact-page-sec .contact-info-text h2 {
    color: rgb(255, 255, 255);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-page-sec .contact-info-text span {
    color: rgb(229, 229, 229);
    font-size: 16px;
    display: inline-block;
    width: 100%;
}

.contact-page-sec .contact-page-form input {
    background: none 0px 0px repeat scroll rgb(249, 249, 249);
    border: 1px solid rgb(249, 249, 249);
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-sec .contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
}

.contact-page-sec .single-input-field textarea {
    background: none 0px 0px repeat scroll rgb(249, 249, 249);
    border: 1px solid rgb(249, 249, 249);
    width: 100%;
    height: 163px;
    padding: 12px 16px;
    border-radius: 4px;
}

.contact-page-sec .single-input-field h4 {
    color: rgb(70, 70, 70);
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-sec .contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-sec .contact-page-map {
    margin-top: 36px;
}

.contact-page-sec .contact-page-form form {
    padding: 20px 15px 0px;
}


/* footer styling  */

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section img {
    max-width: 100%;
    height: auto;
    width: 188px;
    filter: brightness(0) invert(1);
}


.footer-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.footer-section:before {
    content: '';
    position: absolute;
    top: -146%;
    left: -18%;
    width: 44%;
    height: 257%;
    transform: rotate(54deg);
    background-color: var(--primary-dark);
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    z-index: -10;
}

.footer-section:after {
    position: absolute;
    content: '';
    background-color: var(--primary-dark);
    top: -24%;
    right: 4%;
    width: 26%;
    height: 264%;
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    z-index: -10;
}

.footer-section .footer-top {
    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
    color: #ffffff;
}

.footer-section .company-footer-contact-list {
    margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.footer-section .company-footer-contact-list li+li {
    margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
    margin-right: 10px;
    font-size: 20px;
    display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 188px;
}

.widget-title {
    text-transform: capitalize;
}

.footer-top .widget-title {
    color: #ffffff;
    margin: 25px 0;
}

.courses-link-list li+li {
    margin-top: 10px;
}

.courses-link-list li a {
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--para-font);
    font-weight: 400;
}

.courses-link-list li a:hover {
    color: var(--secondary-color);
}

.courses-link-list li i {
    margin-right: 5px;
}

.footer-top .small-post-title a {
    font-family: var(--para-font);
    color: #ffffff;
    font-weight: 400;
}

.small-post-item .post-date {
    color: var(--white-font);
    margin-bottom: 3px;
    font-family: var(--para-font);
    font-weight: 400;
}

.small-post-list li+li {
    margin-top: 30px;
}

.news-letter-form {
    margin-top: 15px;
}

.news-letter-form input {
    width: 100%;
    padding: 12px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
}

.news-letter-form input[type="submit"] {
    width: auto;
    border: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
    padding: 9px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bolx;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--white-font);
    margin-top: 10px;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
    color: #ffffff;
}

.copy-right-text a {
    color: var(--white-font);
}

.terms-privacy li+li {
    margin-left: 30px;
}

.terms-privacy li a {
    color: #ffffff;
    position: relative;
}

.terms-privacy li a:after {
    /* position: absolute; */
    /* content: '-'; */
    color: #ffffff;
    display: inline-block;
    top: 0;
    right: -18px;
}

.terms-privacy li+li a:after {
    display: none;
}

.footer-contact .social-icons {
    margin-top: 10px;
}

.footer-contact .social-icons i:hover {
    color: var(--secondary-color);
}

.footer-contact .social-icons i {
    font-size: 25px;
    color: var(--white-font);
}

/* #preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    font-size: 24px;
    font-weight: bold;
    color: #333;
} */


/* ********************** Blog Page Styling *********************** */


section.blogs-sec .blog-card p.blog-cat {
    margin-bottom: 4px;
    display: inline-block;
    padding: 3px 5px;
    background: #c5e9ff;
    font-size: 13px;
    border-radius: 9px;
    line-height: 1rem;
    border: 1px solid lightskyblue;
}

section.blogs-sec .blog-card h2.blog-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}

section.blogs-sec .blog-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 2px 2px 4px #00000034;
    border: 2px solid lightgray;
    cursor: pointer;
}

section.blogs-sec .blog-card p.blog-excerpt {
    font-size: 14px;
    line-height: 24px;
}

.blog-img img {
    border-radius: 20px;
    box-shadow: 1px 2px 3px #00000042;
}

/* ************************ Blog Hero Section ************************ */

.blog-hero {
    padding: 100px 0 200px 0;
}

section.blog-content-section h3.heading-3 strong,
section.blog-content-section h3.heading-3 * {
    color: var(--primary-color) !important;
}

.content-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 0px 40px #0000003d;
    margin-top: -160px;
}

.content-card p,
.content-card li {
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    line-height: 32px;
}

.content-card p strong,
.content-card li strong {
    font-weight: 600 !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.social-icons a.facebook {
    background-color: #3b5998;
}

.social-icons a.facebook:hover {
    background-color: #2d4373;
}

.social-icons a.x {
    background-color: #1da1f2;
}

.social-icons a.x:hover {
    background-color: #0c85d0;
}

.blog-content-section.theme-light-bg .content-card h3.heading-3 {
    color: var(--primary-color) !important;
}

/* responsive styling  */

@media (max-width: 1024px) {
    .slide-content h3 {
        font-size: 20px;
    }

    .slide-content h1 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .slide-content {
        padding-top: 13%;
    }

    section#hero-section {
        padding-top: 65px !important;
    }
}

@media (max-width: 991px) {
    .header .social-icons {
        order: 2;
        margin-top: 1rem;
        justify-content: end;
        width: 100%;
    }

    .header {
        display: none;
    }

    .navbar {
        flex-wrap: wrap;
        /* Ensure navbar items wrap on smaller screens */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .navbar .navbar-nav {
        margin-top: 27px;
    }

    .header .social-icons i {
        font-size: 18px;
        color: var(--primary-color);
        font-weight: bold;
        transition: .6s;
    }

    .header .logo img {
        width: 120px;
    }

    .slide-content {
        padding-top: 19%;
    }

    section.about-sec img {
        margin-top: 35px;
    }

    div#review-tabContent {
        padding-top: 30px;
    }

    .section {
        padding: 30px 0;
    }

    .bus-img {
        padding: 30px !important;
    }


    .abt-hero-section .slide-content h1 {
        font-size: 37px;
    }

    .abt-hero-section .slide-content {
        padding-top: 18%;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 30px;
    }

    .abt-hero-section .slide-content p {
        font-size: 16px;
    }

    div#gallerySlider,
    div#customGallerySlider {
        margin-top: 30px;
    }

    section.section.ethics-section .row {
        gap: 30px;
    }

    .review-main-header {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-sec .col-md-4 {
        margin-bottom: 30px;
    }

    .hero-section .btn-group.filter-buttons {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        text-align: center;
        display: flex;
        margin-bottom: 12px;
    }
}

@media (max-width: 800px) {}

@media (max-width: 768px) {
    /* Mobile Header */
    .header .logo img {
        width: 140px !important;
    }

    .header .social-icons {
        gap: 12px;
    }

    /* Improve filter button layout on tablets */
    .hero-section .btn-group.filter-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-section .btn-group.filter-buttons .btn {
        flex: 1;
        min-width: 100px;
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Better video grid stacking */
    .video-grid-sec .col-lg-3 {
        margin-bottom: 20px;
    }

    /* Improve review cards */
    .review-card {
        margin-bottom: 15px;
    }

    /* Better heading sizes */
    .heading-2 {
        font-size: 28px;
        line-height: 38px;
    }

    .heading-1 {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 690px) {
    .abt-hero-section .slide-content {
        padding-top: 28%;
    }

    .blog-hero {
        padding: 130px 0 156px 0;
    }

    .content-card p,
    .content-card li {
        font-size: 16px;
        line-height: 30px;
    }

    .content-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content h3 {
        font-size: 17px;
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-content {
        padding-top: 29%;
    }

    .para {
        font-size: 14px;
    }

    .heading-2 {
        font-size: 26px;
        line-height: 36px;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 27px;
    }

    .abt-hero-section .slide-content {
        padding-top: 34%;
    }

    br {
        display: none;
    }

    /* Mobile Header Optimization */
    .header {
        padding: 10px 0 !important;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header .logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header .logo img {
        width: 130px !important;
        max-width: 130px !important;
        display: block !important;
    }

    .header .social-icons {
        display: flex !important;
        gap: 10px;
    }

    .header .social-icons i {
        font-size: 18px;
    }

    /* Mobile Footer Optimization */
    .footer-section .widget {
        margin-bottom: 25px;
    }

    .footer-section .widget-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .terms-privacy {
        justify-content: center !important;
        margin-top: 10px;
    }

    /* Mobile Section Spacing */
    .section {
        padding: 40px 0;
    }

    /* Mobile Review Cards */
    .review-main-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .review-main-header .theme-dark-btn {
        width: 100%;
    }

    /* Mobile Carousel Controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 414px) {
    .abt-hero-section .c-item {
        height: 350px;
        position: relative;
    }

    .abt-hero-section .slide-content {
        padding-top: 29% !important;
    }
}

@media (max-width: 375px) {
    .abt-hero-section .slide-content {
        padding-top: 42%;
    }
}

@media (max-width: 360px) {
    /* Stack filter buttons vertically on very small screens */
    .hero-section .btn-group.filter-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hero-section .btn-group.filter-buttons .btn {
        width: 100%;
    }

    /* Smaller search input */
    #searchQuery {
        font-size: 14px;
        padding: 8px;
    }

    /* Adjust tagline */
    .tagline {
        font-size: 16px;
        line-height: 24px;
    }

    /* Smaller social icons */
    .social-icons a {
        font-size: 14px;
        padding: 6px;
    }
}

/* ============================================
   Available Trips Grid Section
   ============================================ */

.available-trips-sec {
    padding: 60px 0;
}

/* Filter Tabs */
.trips-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trips-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trips-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.trips-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.trips-filter-btn i {
    font-size: 16px;
}

/* Trips Count */
.trips-count {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.trips-count-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trips-count-icon i {
    color: #fff;
    font-size: 18px;
}

.trips-count-text {
    font-weight: 500;
    color: #333;
}

.trips-count-number {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-left: auto;
}

/* Loading State */
.trips-loading {
    text-align: center;
    padding: 60px 20px;
}

/* Trips Grid */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

/* Trip Card */
.trip-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.trip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(23, 87, 168, 0.2);
    border-color: rgba(23, 87, 168, 0.1);
}

.trip-card:hover::before {
    opacity: 1;
}

/* Trip Card Header (Image placeholder) */
.trip-card-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.trip-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 1;
}

.trip-card-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

/* Trip Card with Image */
.trip-card-header.has-image::before,
.trip-card-header.has-image::after {
    display: none;
}

.trip-card-header.has-image {
    background: #1a1a2e;
}

.trip-card-header.has-image .trip-card-icon {
    display: none;
}

.trip-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trip-card:hover .trip-card-image {
    transform: scale(1.1);
}

.trip-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.trip-card-badge.day-trip {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #8b4513;
}

.trip-card-badge.overnight {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2d5a5a;
}

.trip-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trip-card-icon i {
    font-size: 36px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Trip Card Body */
.trip-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.trip-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.trip-card:hover .trip-card-title {
    color: var(--primary-color);
}

.trip-card-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.trip-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
    margin-top: auto;
}

.trip-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.trip-card-meta-item i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Trip Card Footer */
.trip-card-footer {
    padding: 18px 24px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    justify-content: space-between;
    background: #fafafa;
}

.trip-card-seats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.trip-card-seats i {
    color: var(--success-color);
    font-size: 16px;
}

.trip-card-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.trip-card-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.trip-card-book-btn:hover::before {
    left: 100%;
}

.trip-card-book-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: #fff;
}

.trip-card-book-btn i {
    color: #fff;
    transition: transform 0.3s ease;
}

.trip-card-book-btn:hover i {
    transform: translateX(3px);
}

/* No Trips Found */
.no-trips-found {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-trips-found i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 15px;
    display: block;
}

.no-trips-found p {
    font-size: 16px;
}

/* Responsive Trips Grid */
@media (max-width: 992px) {
    .trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trips-filter-tabs {
        gap: 8px;
    }

    .trips-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .trips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trip-card-header {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .trips-filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .trips-filter-btn i {
        font-size: 14px;
    }

    .trip-card-body {
        padding: 15px;
    }

    .trip-card-footer {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .trip-card-book-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CONVERSION BOOSTING ELEMENTS
   ============================================ */

/* Social Proof Notification Popup */
.social-proof-popup {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-width: 320px;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--success-color);
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    position: relative;
}

.social-proof-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-icon i {
    color: white;
    font-size: 20px;
}

.social-proof-text {
    flex: 1;
}

.social-proof-title {
    font-weight: 700;
    color: #333;
    font-size: 14px;
    margin: 0 0 2px;
}

.social-proof-message {
    color: #666;
    font-size: 13px;
    margin: 0 0 4px;
}

.social-proof-time {
    color: #999;
    font-size: 11px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-proof-time i {
    font-size: 10px;
    color: #999;
}

.social-proof-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.social-proof-close:hover {
    color: #333;
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.exit-popup-close:hover {
    background: #ff6b6b;
    color: white;
}

.exit-popup-content {
    padding: 40px 30px 30px;
    text-align: center;
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exit-popup-icon i {
    color: white;
    font-size: 36px;
}

.exit-popup-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.exit-popup-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.exit-popup-content strong {
    color: #ff6b6b;
    font-size: 20px;
}

.exit-popup-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.exit-popup-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #555;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
}

.exit-popup-features i {
    color: var(--success-color);
    font-size: 14px;
}

.exit-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.exit-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    color: white;
}

.exit-popup-btn i {
    font-size: 20px;
    color: white;
}

.exit-popup-subtext {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Selling Fast / Popular Badge for Trip Cards */
.trip-card-urgency {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.trip-card-urgency.selling-fast {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.trip-card-urgency.popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.trip-card-urgency i {
    font-size: 10px;
    color: white;
}

/* Countdown Timer for Limited Seats */
.trip-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #ff4757;
    font-weight: 600;
    margin-top: 8px;
}

.trip-countdown i {
    animation: clockPulse 1s infinite;
    color: #ff4757;
}

@keyframes clockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Low Stock Warning */
.low-stock-warning {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border: 1px solid #ffcccc;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #cc0000;
    font-weight: 600;
}

.low-stock-warning i {
    color: #ff4757;
    font-size: 14px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-proof-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .exit-popup-content {
        padding: 30px 20px 20px;
    }

    .exit-popup-content h3 {
        font-size: 22px;
    }

    .exit-popup-btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    .exit-popup-features {
        gap: 8px;
    }

    .exit-popup-features span {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Fluid Typography with Clamp */
.heading-1 {
    font-size: clamp(28px, 5vw, 47px);
    line-height: 1.2;
}

.heading-2 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
}

.heading-3 {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.35;
}

.tagline {
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.5;
}

.para {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.65;
}

/* Large Tablets (max-width: 1200px) */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .stats-section .stat-number {
        font-size: 2.5rem;
    }
}

/* Tablets (max-width: 991px) */
@media (max-width: 991px) {
    .section {
        padding: 40px 0;
    }

    .header .logo img {
        max-width: 130px;
    }

    .header .social-icons i {
        font-size: 22px;
    }

    .stats-section .stat-number {
        font-size: 2.2rem;
    }

    .stats-section .stat-label {
        font-size: 1rem;
    }

    /* Service Cards */
    .service-sec-card {
        padding: 25px 20px;
    }

    .service-sec-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Review Cards */
    .custom-reviews .review-card {
        padding: 20px;
    }

    /* Footer */
    .footer-section .widget-title {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .section {
        padding: 35px 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header */
    .header {
        padding: 8px 0;
    }

    .header .logo img {
        max-width: 120px;
    }

    .header .social-icons {
        gap: 10px;
    }

    .header .social-icons i {
        font-size: 20px;
    }

    /* Navbar */
    .navbar {
        padding: 0.6rem 1rem;
    }

    .theme-dark-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Hero Section */
    .hero-section-modern {
        padding: 50px 0 40px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    /* About Section */
    .about-sec-modern {
        padding: 50px 0;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .about-feature-item {
        padding: 18px;
        gap: 12px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 13px;
    }

    /* Stats Section */
    .stats-section {
        padding: 30px 0;
    }

    .stats-section .stat-number {
        font-size: 2rem;
    }

    .stats-section .stat-label {
        font-size: 0.9rem;
    }

    .stats-section .stat-item {
        margin-bottom: 15px;
    }

    /* Service Cards */
    .service-sec-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .service-sec-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-sec-title {
        font-size: 1.1rem;
    }

    .service-sec-text {
        font-size: 14px;
    }

    /* Review Cards */
    .custom-reviews .review-card {
        padding: 18px;
        margin-bottom: 15px;
    }

    .custom-reviews .review-content .stars {
        font-size: 1.5rem;
    }

    .review-main-header .stars {
        font-size: 28px !important;
    }

    /* Trip Cards */
    .trip-card {
        margin-bottom: 15px;
    }

    .trip-card-title {
        font-size: 1rem;
    }

    .trip-card-subtitle {
        font-size: 13px;
    }

    .trip-card-meta-item {
        font-size: 12px;
    }

    .trip-card-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    /* About Hero */
    .abt-hero-section .c-item {
        height: 300px;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 32px;
    }

    .abt-hero-section .slide-content h3 {
        font-size: 16px;
    }

    .abt-hero-section .slide-content p {
        font-size: 16px;
    }

    /* Footer */
    .footer-section {
        padding-bottom: 100px;
    }

    .footer-section .widget {
        margin-bottom: 30px;
    }

    .footer-section .widget-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-section .courses-link-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Trust Badges */
    .trust-badge-item {
        padding: 15px;
        margin: 3px;
    }

    /* FAQ Section */
    .faq-section .accordion-item {
        margin-bottom: 10px;
    }

    /* Video Section */
    .video-container {
        height: 300px;
    }

    .play-pause i {
        font-size: 45px;
    }

    /* CTA Banner */
    .urgency-cta-banner h3 {
        font-size: 1.25rem;
    }

    .urgency-cta-banner .btn-light {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .section {
        padding: 30px 0;
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Header */
    .header .logo img {
        max-width: 100px;
    }

    .header .social-icons {
        gap: 8px;
    }

    .header .social-icons i {
        font-size: 18px;
    }

    /* Buttons */
    .theme-dark-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .theme-dark-btn-2 {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Hero */
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-search-card {
        padding: 12px;
    }

    .filter-btn {
        font-size: 11px;
        padding: 8px 10px;
    }

    .btn-book-now {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* About Section */
    .about-heading {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .about-feature-item {
        padding: 14px;
        gap: 10px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    /* Image Card */
    .about-image-card {
        border-radius: 15px;
    }

    .play-button-overlay i {
        font-size: 50px;
    }

    .play-button-overlay span {
        font-size: 12px;
    }

    .about-stats-badge {
        padding: 12px 18px;
        gap: 10px;
    }

    .stat-badge-item h4 {
        font-size: 1.1rem;
    }

    .stat-badge-item p {
        font-size: 0.75rem;
    }

    /* Stats */
    .stats-section .stat-number {
        font-size: 1.75rem;
    }

    .stats-section .stat-label {
        font-size: 0.8rem;
    }

    .stats-section .stat-icon {
        font-size: 1.5rem;
    }

    /* Service Cards */
    .service-sec-card {
        padding: 18px 12px;
    }

    .service-sec-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .service-sec-title {
        font-size: 1rem;
    }

    /* Review Cards */
    .custom-reviews .review-card {
        padding: 15px;
    }

    .custom-reviews .review-header {
        gap: 8px;
    }

    .custom-reviews .review-name {
        font-size: 14px;
    }

    .custom-reviews .review-date {
        font-size: 12px;
    }

    .custom-reviews .review-content .stars {
        font-size: 1.3rem;
    }

    /* Trip Cards */
    .trips-section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .trips-count {
        width: 100%;
        justify-content: center;
    }

    .trips-filter-tabs {
        justify-content: center;
        width: 100%;
    }

    .trip-card-header {
        height: 140px;
    }

    .trip-card-body {
        padding: 12px;
    }

    .trip-card-footer {
        padding: 10px 12px;
    }

    .trip-card-title {
        font-size: 0.95rem;
    }

    .trip-card-urgency {
        font-size: 9px;
        padding: 5px 10px;
    }

    .low-stock-warning {
        padding: 6px 10px;
        font-size: 11px;
    }

    /* About Hero */
    .abt-hero-section .c-item {
        height: 250px;
    }

    .abt-hero-section .slide-content {
        padding-top: 15%;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 24px;
    }

    .abt-hero-section .slide-content h3 {
        font-size: 14px;
    }

    .abt-hero-section .slide-content p {
        font-size: 14px;
    }

    /* Footer */
    .footer-section {
        padding-bottom: 110px;
    }

    .footer-section .widget-title {
        font-size: 0.95rem;
    }

    .footer-section .courses-link-list li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom span {
        font-size: 12px;
    }

    /* Trust Badges */
    .trust-badges-section {
        padding: 20px 0;
    }

    .trust-badge-item {
        padding: 12px;
    }

    .trust-badge-item i {
        font-size: 1.8rem !important;
    }

    .trust-badge-item p {
        font-size: 11px;
    }

    /* Video Section */
    .video-container {
        height: 220px;
    }

    .video-grid-sec h2 {
        font-size: 1.5em;
    }

    /* FAQ */
    .faq-section .accordion-button {
        font-size: 13px;
        padding: 12px 15px;
    }

    .faq-section .accordion-body {
        padding: 12px 15px;
        font-size: 13px;
    }

    /* Corner Effects */
    .corner-effect::before,
    .corner-effect::after {
        width: 80px;
        height: 80px;
    }

    /* CTA Banner */
    .urgency-cta-banner {
        padding: 20px 15px;
    }

    .urgency-cta-banner h3 {
        font-size: 1.1rem;
    }

    .urgency-cta-banner .btn-light {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* Social Proof Popup */
    .social-proof-popup {
        bottom: 90px;
        left: 8px;
        right: 8px;
    }

    .social-proof-content {
        padding: 12px;
        gap: 10px;
    }

    .social-proof-icon {
        width: 40px;
        height: 40px;
    }

    .social-proof-icon i {
        font-size: 18px;
    }

    .social-proof-title {
        font-size: 13px;
    }

    .social-proof-message {
        font-size: 12px;
    }

    /* Exit Popup */
    .exit-popup {
        margin: 10px;
        border-radius: 16px;
    }

    .exit-popup-content {
        padding: 25px 15px 15px;
    }

    .exit-popup-icon {
        width: 65px;
        height: 65px;
    }

    .exit-popup-icon i {
        font-size: 28px;
    }

    .exit-popup-content h3 {
        font-size: 20px;
    }

    .exit-popup-content > p {
        font-size: 14px;
    }

    .exit-popup-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .exit-popup-features span {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        padding: 12px 10px;
    }

    .mobile-sticky-cta .cta-container {
        gap: 8px;
    }

    .mobile-sticky-cta .btn-call,
    .mobile-sticky-cta .btn-book {
        padding: 12px 10px;
        font-size: 12px;
    }

    .mobile-sticky-cta .btn-whatsapp {
        width: 48px;
        height: 48px;
    }

    .mobile-sticky-cta .btn-whatsapp i {
        font-size: 24px;
    }

    /* Floating Buttons */
    .floating-book-btn {
        bottom: 75px;
        right: 10px;
        padding: 8px 12px;
    }

    .floating-book-btn i {
        font-size: 24px;
    }
}

/* Extra Small Devices (max-width: 375px) */
@media (max-width: 375px) {
    .header .logo img {
        max-width: 90px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .filter-btn {
        font-size: 10px;
        padding: 6px 8px;
    }

    .about-heading {
        font-size: 1.35rem;
    }

    .trip-card-header {
        height: 120px;
    }

    .trip-card-book-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .abt-hero-section .slide-content h1 {
        font-size: 20px;
    }

    .exit-popup-content h3 {
        font-size: 18px;
    }

    .exit-popup-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .mobile-sticky-cta .btn-call,
    .mobile-sticky-cta .btn-book {
        padding: 10px 8px;
        font-size: 11px;
    }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section-modern {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-search-card {
        padding: 10px;
    }

    .abt-hero-section .c-item {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .floating-book-btn,
    .floating-whatsapp,
    .mobile-sticky-cta,
    .social-proof-popup,
    .exit-popup-overlay {
        display: none !important;
    }

    .navbar {
        position: relative;
        box-shadow: none;
    }

    .section {
        padding: 20px 0;
    }
}