/********** Template CSS **********/
:root {
    --primary: #2EB872;
    --light: #F3F4F5;
    --dark: #282F34;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar {
    transition: none !important;
}

.navbar.sticky-top {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}


.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ---------------------- Desktop Product Layout ----------------------- */
.gallery-wrapper {
    position: relative;
    max-width: 500px;
}

.gallery-main {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #000;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
	opacity: 30%;
}

#arrow-left { left: 50px; }
#arrow-right { right: 50px; }

/* --------- Hide arrows by default --------- */
.gallery-wrapper .arrow {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; /* prevent hover issue when hidden */
}

/* --------- Show arrows on hover --------- */
.gallery-wrapper:hover .arrow {
    opacity: 0.5;
    pointer-events: auto;
}

.bullets {
    text-align: center;
    margin-top: 12px;
}

.bullets span {
    height: 10px;
    width: 10px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.bullets .active {
    background: #333;
}

/* Bullet container */
.bullets {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Single bullet */
.bullets span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

/* Active bullet */
.bullets span.active {
    background-color: #2EB872;
}

/* ---------------------- Mobile Fullscreen Viewer ---------------------- */
#fullscreen-viewer {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    z-index: 1;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#fs-image {
    max-width: 100%;
    max-height: 100%;
}

.fs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    padding: 10px;
}

#fs-prev { left: 10px; }
#fs-next { right: 10px; }

#fs-close {
    color: #000;
    font-size: 35px;
    position: absolute;
    top: 25px;
    right: 35px;
}

/* Bullet container */
.bullets {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Single bullet */
.bullets span {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

/* Active bullet */
.bullets span.active {
    background-color: #2EB872;
}

/* Disable fullscreen for desktop */
@media (min-width: 768px) {
    #fullscreen-viewer { display: none !important; }
}

/* Product Buttons */
.product-btn {
    padding: 10px 50px;
	background-color: #2EB872;
    border: none;
    border-radius: 0px;
    cursor: pointer;
	color:#FFF;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover effect */
.product-btn:hover {
    background-color: var(--primary);
}

@media (max-width: 600px) {
    .product-btn {
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-btn-bt {
        width: 100%;
        text-align: center;
    }
}

/* Fix unwanted horizontal scroll */
body, html {
    overflow-x: hidden !important;
}

/* Ensure gallery fits on mobile */
.gallery-wrapper, 
.gallery-main, 
#fullscreen-viewer img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

/* Fix arrow overflow */
.arrow {
    font-size: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 10px;
    color: #000;
    border-radius: 50%;
    z-index: 20;
}

#arrow-left { left: 10px !important; }
#arrow-right { right: 10px !important; }

/* Fullscreen viewer full fit */
#fullscreen-viewer {
    position: fixed;
    inset: 0;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden !important;
}

/* Prevent bullets from stretching out of screen */
.bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
}

/*** Dealer & Service Center***/
.dealer-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 25px;
    transition: 0.3s ease;
    border: 1px solid #e6e6e6;
}

.dealer-box:hover {
    background: #2EB872;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    color: #fff !important;
}

/* Ensure headings + icons also turn white */
.dealer-box:hover h4,
.dealer-box:hover h5,
.dealer-box:hover p,
.dealer-box:hover i {
    color: #fff !important;
}

.dealer-box a.dealer-link {
    color: inherit;            /* same color as surrounding text */
    text-decoration: none;     /* remove underline */
}

.dealer-box a.dealer-link:hover {
    text-decoration: underline; /* optional: small hover effect */
}

/* Floating WhatsApp button */
.whatsapp-pill {
    position: fixed;
    right: 10px;
    bottom: 120px; /* adjust upward */
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
}

.wa-icon {
    width: 32px;      /* larger icon */
    height: 32px;
}

.wa-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.line1 {
    font-size: 14px;
	text-align:center;
}

.line2 {
    font-size: 14px;
	text-align:center;
}


/* show label on >= 576px */
@media (min-width: 576px) {
  .whatsapp-float .wa-label { display: inline-block; }
}

/* slightly smaller on very small screens */
@media (max-width: 360px) {
  .whatsapp-float .wa-btn { width: 48px; height: 48px; font-size: 20px; }
  .whatsapp-float { right: 12px; bottom: 12px; }
}

/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/1.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** product ***/
.product-item {
    position: relative;
    display: block;
}

.product-item .product-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/* Single Service */

/* Center the tab buttons */
.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
}

/* Tab Buttons */
.tab-btn {
    padding: 10px 50px;
	background-color: var(--light);
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover effect */
.tab-btn:hover {
    background-color: var(--primary);
}

/* Active Tab */
.tab-btn.active {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Tab Content Box */
.tab-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Make the active tab visible */
.tab-content.active {
    display: block;
}

.tab-btn {
    padding: 10px 30px;
    font-size: 18px;
}

@media (max-width: 600px) {
    .tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.product-auth-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 50px;
}

.product-auth {
    display: flex;
}

.product-auth input {
    border-radius: 6px 0px 0px 6px;
    padding: 10px;
}

.product-auth button {
    border-radius: 0px 6px 6px 0px;
    padding: 12px 24px;
}

.product-auth-image {
    text-align: center  ;
    margin-top: 50px;
}

.product-auth-image img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    filter: brightness(1.5);
    margin-top: 20px;
    width: 50%;
}

.product-auth-parent {
    padding: 20px;
}

@media (max-width: 1024px) {
    .product-auth-image img {
        width: 70%;
    }
}

@media (max-width: 600px) {
    .product-auth-image img {
        width: 80%;
    }
    .product-auth-container {
        padding: 30px 20px;
    }
    .product-auth-image p {
        font-size: 12px;
    }
    .product-auth-image img {
        margin-top: 20px;
    }
}