body {
    background-color:white;
        font-family: 'Sora', sans-serif;
    }

    .surfer-font {
        font-family: 'Original Surfer', cursive;
    }
    :root {
        --text-dark: #1a2b4a;
    }

    .text-dark {
        color: var(--text-dark);
    }
   .experience-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

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

    .experience-card img {
        transition: transform 0.5s ease;
    }

    .experience-card:hover img {
        transform: scale(1.1);
    }
    .best-exp-overlay {
        position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            text-align: center;
    }
    .experience-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .experience-overlay-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
    }

    .mobile-menu {
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .header-scrolled {
        background-color: #ffffff !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .gallery-item {
        overflow: hidden;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover {
        transform: scale(1.02);
    }

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

    .gallery-item:hover img {
        transform: scale(1.1);
    }
   .quote-icon {
        font-size: 4rem;
        color: #10b981;
        line-height: 1;
    }

    .experience-next,
    .experience-prev {
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .experience-next:after,
    .experience-prev:after {
        font-size: 20px;
        color: #333;
        font-weight: bold;
    }

    .experience-next:hover,
    .experience-prev:hover {
        background: #004A00;
    }

    .experience-next:hover:after,
    .experience-prev:hover:after {
        color: white;
    }

    .testimonial-next,
    .testimonial-prev {
        width: 40px;
        height: 40px;
        background: white;
        top: 23px;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .testimonial-next:after,
    .testimonial-prev:after {
        font-size: 16px;
        font-weight: bold;
        color: #000;
    }

    .testimonial-next {
        right: 20px;
    }

    .testimonial-prev {
        left: auto;
        right: 70px;
    }
    .checkmark-icon {
        color: #10b981;
    }

    /* lightbox modal style */

    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .lightbox.active {
        display: flex;
        opacity: 1;
    }
    .lightbox-img {
        max-width: 90% !important;
        max-height: 90% !important;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    .gallery-img {
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-img:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: white;
        cursor: pointer;
        z-index: 1001;
        transition: transform 0.2s ease;
    }
    .close-btn:hover {
        transform: scale(1.1);
    }
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 50px;
        color: white;
        cursor: pointer;
        padding: 20px;
        user-select: none;
        transition: opacity 0.2s ease;
    }
    .nav-btn:hover {
        opacity: 0.7;
    }
    .prev-btn {
        left: 20px;
    }
    .next-btn {
        right: 20px;
    }
 @keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

    .whatsapp-pulse {
        animation: pulse-ring 2s ease-in-out infinite;
    }

    .whatsapp-tooltip {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .whatsapp-widget:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
    }

     .thumb-image {
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .thumb-image:hover {
        transform: scale(1.1);
        border-color: #FFCC01;
    }
