﻿@font-face {
    font-family: Aftika;
    src: url(/assets/fonts/aftika.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: GlanceSans;
    src: url(/assets/fonts/GlanceSans-Book.woff2) format("woff2");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: GlanceSans;
    src: url(/assets/fonts/GlanceSans-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: GlanceSans;
    src: url(/assets/fonts/GlanceSans-Light.woff2) format("woff2");
    font-weight: 300;
    font-style: normal
}

p {
    font-family: Roboto,sans-serif
}

.home-testimonial-bg {
    background-image: url(/assets//img/home-testimonial-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

/*table, td, th {
    border: 2px solid #111830
}*/

.mytabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

    .mytabs input[type=radio] {
        display: none
    }

    .mytabs .tab {
        width: 100%;
        order: 1;
        display: none
    }

    .mytabs input[type=radio]:checked + label + .tab {
        display: block
    }

    .mytabs input[type=radio]:not(:checked) + label {
        opacity: .5
    }

.slick-dots {
    margin-top: 30px;
    display: flex !important;
    justify-content: center
}

    .slick-dots li {
        display: inline-block;
        margin: 0 5px
    }

        .slick-dots li button {
            font-size: 0;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #bcbcbc;
            border: none
        }

        .slick-dots li.slick-active button {
            background-color: #111830
        }

.slider2 .slick-dots li.slick-active button {
    background-color: #fff
}

.video-section {
    min-height: 75vh;
    position: relative
}

.video-position {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

#playButton {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: url(/assets/img/play.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: opacity .5s ease-in-out
}

    #playButton.hide {
        opacity: 0
    }

.video-container video {
    width: 100%;
    height: auto;
    z-index: 1
}

.video-position:hover video {
    controls: true
}

@media screen and (max-width:1024px) {
    .video-position {
        width: 90%
    }

    .video-section {
        min-height: 60vh
    }
}

.sl-wrapper {
    background-color: #edebe4b5
}

.glass-light {
    background: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25)
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

#popup {
    animation: fadeIn .3s ease-out
}





/* Reviews Container Styles *********************************************************************************************** */

.home-reviews-bg {
    background-image: url(/assets//img/home-testimonial-image1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}


.reviews-container {
    max-width: 800px;
    margin: 10px auto;
    padding: 40px 60px 30px 60px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
}

.review-box {
    padding: 0px 30px 30px 30px;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Review Content */
.review-content {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s forwards;


}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 20px;
    font-style: italic;
    position: relative;
    padding: 0 20px;


}

    .review-text::before {
        content: '"';
        position: absolute;
        left: 5px;
        top: -10px;
        font-size: 30px;
        color: rgba(255, 255, 255, 0.3);
        font-family: Georgia, serif;
    }

    .review-text::after {
        content: '"';
        position: absolute;
        right: 10px;
        bottom: -30px;
        font-size: 30px;
        color: rgba(255, 255, 255, 0.3);
        font-family: Georgia, serif;
    }

.review-scroller{
    max-height:130px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #d3d3d3 transparent;
}

/* For a specific div - Webkit browsers (Chrome, Safari, Edge) */
    .review-scroller::-webkit-scrollbar {
        width: 10px; /* Width of vertical scrollbar */
        height: 10px; /* Height of horizontal scrollbar */
        background-color: transparent;
    }

    .review-scroller::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .review-scroller::-webkit-scrollbar-thumb {
        background-color: #d3d3d3; /* Light grey */
        border-radius: 5px;
    }

        .review-scroller::-webkit-scrollbar-thumb:hover {
            background-color: #b8b8b8; /* Slightly darker on hover */
        }




/* Stars Rating */
.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Reviewer Info - Centered */
.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(187, 105, 59);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-details {
    text-align: center;
}

.reviewer-name {
    font-weight: 600;
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.reviewer-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .reviewer-location::before {
        content: '📍';
        font-size: 12px;
    }

/* Navigation Arrows - Now inside the box */
.nav-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

    .nav-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-arrow.prev {
        left: 15px;
    }

    .nav-arrow.next {
        right: 15px;
    }

    .nav-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .nav-arrow:disabled:hover {
            transform: translateY(-50%) scale(1);
        }

/* Google Business Profile Link */
.google-profile-link {
    position: absolute;
    bottom: 15px;
    right: Calc(50% - 80px);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .google-profile-link:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

/* Google Logo */
.google-logo {
    height: 16px;
    opacity: 0.9;
}

/* Review Counter */
.review-counter {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: rgb(187, 105, 59);
    font-weight: 500;
}

/* Hidden form field for reviews data */
#reviewsDataField {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-container {
        margin: 20px;
        padding: 30px 50px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

        .nav-arrow.prev {
            left: 10px;
        }

        .nav-arrow.next {
            right: 10px;
        }

    .review-text {
        font-size: 16px;
    }

    .google-profile-link {
        font-size: 11px;
        bottom: 10px;
        right: 15px;
    }
}