
html {
    scroll-behavior: smooth;
}

 body {
        font-family: 'Poppins', sans-serif;
    }

/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

/* back-to-to */
.back-to-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 40px;
    margin: 0px;
    font-size: 18px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    z-index: 999;
    transform: skew(18deg);
}

.back-to-top a i {
    transform: skew(-18deg);
}

.back-to-top a:hover {
    background: var(--bs-dark);
    color: var(--bs-white); 
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-light span,
.btn.btn-light i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}


.btn.btn-dark {
    color: var(--bs-primary);
    border: none;
    transform: skew(18deg);
    transition: 0.5s;
}

.btn.btn-dark span,
.btn.btn-dark i {
    display: inline-block;
    transform: skew(-18deg);
}

.btn.btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/* navbar start */

 .btn:hover {
        background: linear-gradient(90deg, #007bff, #0056b3);
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .btn:hover {
        background: linear-gradient(90deg, #007bff, #0056b3);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

/* navbar end */

 .info-card {
        display: flex;
        align-items: center;
        padding: 20px 25px;
        border-radius: 15px;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, background 0.3s ease;
        text-align: left;
        gap: 15px;
        -webkit-transition: transform 0.3s ease, background 0.3s ease;
        -moz-transition: transform 0.3s ease, background 0.3s ease;
        -ms-transition: transform 0.3s ease, background 0.3s ease;
        -o-transition: transform 0.3s ease, background 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        background: #0056b3;
    }

    .info-icon {
        flex-shrink: 0;
        width: 65px;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    }

    .info-icon img {
        width: 45px;
        height: auto;
    }

    .info-text h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .info-text p {
        margin: 0;
        font-size: 1rem;
        color: #ddd;
    }

    @media (max-width: 768px) {
        .info-card {
            flex-direction: row;
            text-align: left;
            padding: 18px 20px;
            gap: 12px;
        }

        .info-icon {
            width: 55px;
            height: 55px;
        }

        .info-icon img {
            width: 35px;
        }

        .info-text h3 {
            font-size: 1.15rem;
        }

        .info-text p {
            font-size: 0.9rem;
        }
    }

/*** About Start ***/

.about {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    transition: background 0.5s ease-in-out;
}

.about-content {
    max-width: 600px;
}

.about .tab-class .nav .nav-item a {
    text-align: center;
    background: #fff;
    color: #000;
    border-radius: 5px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.about .tab-class .nav .nav-item a.active {
    background: #007bff;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about {
        min-height: auto;
        padding: 50px 0;
    }
    .about-content {
        max-width: 100%;
        padding: 30px;
    }
    .about .tab-class .nav .nav-item a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 15px !important; /* Kurangi padding */
        text-align: center;
        margin-top: -50px !important; /* Angkat ke atas */
    }

    .about-content h1 {
        font-size: 22px !important;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

    .about-content h4 {
        font-size: 18px !important;
    }

    .about-content p {
        font-size: 14px !important;
    }

    .nav-pills .nav-link {
        font-size: 14px !important;
        padding: 8px 12px !important;
    }

    .about {
        background-size: cover !important;
        background-position: center !important;
        padding-top: 30px !important;
        width: 100vw !important; /* Lebarkan gambar hingga penuh */
        height: 700px !important;
    }

    .about img {
        width: 100% !important; /* Buat gambar memenuhi lebar layar */
        height: auto !important;
        display: block;
    }
}


@media (min-width: 992px) { /* Untuk laptop & desktop */
    .about-content {
        margin-top: 20px; /* Atur sesuai kebutuhan */
    }
}

@media (max-width: 768px) {
    .nav-pills {
        justify-content: center !important;
    }
}

/*** About End ***/

/*** Fitness Goal Start ***/
.goal {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(255, 245, 225, 0.9), rgba(12, 24, 68, 0.9)), url(../img/goal-background-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.goal::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    right: 0;
    margin-right: -200px;
    transform: skew(18deg);
    background: rgba(200, 0, 54, .1);
}

.goal .goal-item {
    transform: skew(10deg);
    box-shadow: 0 0 45px rgba(12, 24, 68, 0.4);
    margin: 0 15px 15px 15px;
}

@media (min-width: 992px) {
    .goal .goal-content {
        padding-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .goal .goal-content {
        padding-bottom: 0;
    }
}
/*** Fitness Goal End ***/

/* Product Start */

.feature {
    overflow: hidden;
    padding: 50px 0;
}

.feature-carousel.owl-carousel {
    z-index: 9;
    padding: 0 30px;
    transform: none;
}

.feature .feature-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Efek hover: naik sedikit ke atas + bayangan */
.feature .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Styling gambar */
.feature .feature-item .feature-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.feature .feature-item .feature-img img {
    width: 100%;
    transition: transform 0.5s ease-in-out, filter 0.3s ease-in-out;
}

/* Efek hover hanya sedikit memperjelas gambar */
.feature .feature-item:hover .feature-img img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Warna background dan teks yang lebih menarik */
.feature .feature-item .feature-content {
    position: relative;
    background: var(--bs-white);
    text-align: center;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.feature .feature-item .feature-content h4 {
    color: #333;
    transition: color 0.3s ease-in-out;
}

.feature .feature-item .feature-content p {
    color: #2F80ED;
    transition: color 0.3s ease-in-out;
}

/* Efek hover untuk latar belakang */
.feature .feature-item:hover .feature-content {
    background: #1C5FA8 !important;
}

/* Efek hover untuk teks agar tetap kontras */
.feature .feature-item:hover .feature-content h4,
.feature .feature-item:hover .feature-content p {
    color: white !important;
}

/* Tombol */
.feature .feature-item .feature-content a {
    background-color: #2F80ED;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* Tombol sedikit membesar saat hover */
.feature .feature-item .feature-content a:hover {
    background-color: #1C5FA8;
    transform: scale(1.08);
}

/* Navigasi carousel */
.feature-carousel .owl-nav .owl-prev,
.feature-carousel .owl-nav .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-dark);
    color: var(--bs-white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
    border-radius: 50%;
}

.feature-carousel .owl-nav .owl-prev:hover,
.feature-carousel .owl-nav .owl-next:hover {
    background: #1C5FA8;
}

.feature-carousel .owl-nav .owl-prev {
    left: -15px;
}

.feature-carousel .owl-nav .owl-next {
    right: -15px;
}

/* Efek Fokus untuk Produk di Tengah */
.feature .feature-item.center {
    transform: scale(1.1);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(47, 128, 237, 0.1);
    border-radius: 10px;
}

/* Efek fokus pada item yang berada di tengah */
.feature-carousel .owl-item.center .feature-item {
    transform: scale(1.1); /* Memperbesar item tengah */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2); /* Menambah bayangan agar lebih menarik */
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-carousel.owl-carousel {
        padding: 0;
    }
    .feature .feature-item {
        margin-bottom: 20px;
    }
    .feature-carousel .owl-nav .owl-prev,
    .feature-carousel .owl-nav .owl-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .feature .feature-item .feature-content {
        padding: 15px;
    }
    .feature-carousel .owl-nav .owl-prev,
    .feature-carousel .owl-nav .owl-next {
        display: none;
    }
}

/* Product End */

/*** Courses Start ***/
/* .courses {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/Cabang.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.courses .courses-item {
    position: relative;
    overflow: hidden;
}

.courses .courses-item p {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses .courses-item:hover p {
    color: var(--bs-body);
}

.courses-item .courses-item-inner {
    position: relative;
    transform: skew(4deg);
    margin: 0 15px;
    background: rgba(255, 245, 225, .5);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner {
    background: none;
}

.courses-item .courses-item-inner:hover {
    transform: skew(-4deg);
}

.courses-item .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .data-info .courses-trainer {
    color: var(--bs-body);
}

.courses-item .courses-item-inner .data-info .courses-date {
    font-size: 13px;
}

.courses-item .courses-item-inner .courses-icon-img {
    width: 80px; 
    height: 80px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.courses-item .courses-item-inner .courses-icon-img img {
    filter: grayscale(100%);
    transition: 0.5s;
}

.courses-item:hover .courses-item-inner .courses-icon-img img {
    filter: grayscale(0%);
}

.courses-item-inner:hover a {
    color: var(--bs-white);
    transition: 0.5s;
}

.courses-item-inner:hover a:hover {
    color: var(--bs-primary);
}

.courses-item-inner::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: rgba(12, 24, 68, 0.9);
    transition: 0.5s;
    z-index: -1;
}

.courses-item-inner:hover:after {
    height: 100%;
} */
/*** Courses End ***/

/*** Blog Start ***/
.blog {
    overflow: hidden;
}

.blog .blog-item {
    position: relative;
    border: 1px solid var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(100deg);
    background: #005eff;
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog .blog-item .blog-img::before {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(-100deg);
    background: #005eff;
    border: none;
    transition: 0.5s;
    z-index: -1;
}

.blog-content .blog-comment {
    transform: skew(8deg);
    background: #005eff;
}

.blog-content .blog-comment div.small,
.blog-content .blog-comment span {
    transform: skew(-4deg);
}

.blog-carousel .owl-stage-outer {
    margin-right: -1px;
}

.blog-carousel .owl-dots {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-dark);
    transform: skew(18deg);
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 50px;
    background: #005eff;
    transition: 0.5s;
}

.blog-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
    height: 30px;
    margin-top: 10px;
}

.blog-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #005eff;
    transition: 0.5s;
}
/*** Blog End ***/

/*** Explore Fitness Start ***/
.explore {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(12, 24, 68, 0.7), rgba(12, 24, 68, 0.7)), url(../img/services-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    /* background-size: cover; */
}
/*** Explore Fitness End ***/

/*** Team Start ***/
.team {
    overflow: hidden;
}

.team .team-item {
    position: relative;
}
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 245, 225, .5);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}

.team .team-item .team-img .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon a  {
    margin: 0 7px;
}

.team .team-item .team-content {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 25px;
    border: 1px solid var(--bs-primary);
    border-top: none;
    transform: matrix(1, -0.1, 0, 1, 0, 0);
    transition: 0.5s;
}

.team .team-item .team-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover .team-content,
.team .team-item:hover .team-img {
    transform: matrix(1, 0.1, 0, 1, 0, 0);
    border: none;
}

.team .team-item:hover .team-content::after {
    height: 100%;
    background: var(--bs-dark);
}

.team .team-item .team-content h4 {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item .team-content p {
    color: #0C1844;
    transition: color 0.5s;
}

.team .team-item:hover .team-content p {
    color: white;
    transition: 0.5s;
}

/*** Team End ***/

/*** Testimonial Start ***/

.carousel-control-prev-icon,
.carousel-control-next-icon {
    opacity: 0; /* Bikin transparan */
}

/*** Testimonial End ***/

/*** Conatct Start ***/
.contact {
    overflow: hidden;
}

.contact .form-section form .form-section-col {
    transform: skewX(18deg);
    margin: 0 12px;
}

.contact .contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--bs-dark);
    background: linear-gradient(rgba(255, 245, 225, 0.2), rgba(12, 24, 68, 0.1), rgba(200, 0, 54, 0.3));
}

.contact .contact-banner::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-image: url(../img/contact-banner.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact form button {
    border: none;
    transition: 0.5s;
}

.contact form button:hover {
    background: var(--bs-white);
    color: var(--bs-primary);
}
/*** Contact End ***/

/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 5px;
    width: auto;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float img {
    width: 200px;
    height: auto;
    max-width: 100%;
}

/* Hover effect */
.wa-float:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .wa-float {
        bottom: 20px;
        right: 5px;
    }

    .wa-float img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 5px;
    }

    .wa-float img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .wa-float {
        bottom: 20px;
        right: 5px;
    }

    .wa-float img {
        width: 150px;
    }
}

/* Footer Start */

/* Menggunakan font Poppins untuk seluruh footer */
.footer, .copyright {
    font-family: 'Poppins', sans-serif !important;
}

/* Memberikan efek hover pada ikon sosial media */
.btn-outline-light {
    transition: all 0.3s ease-in-out;
}

.btn-outline-light:hover {
    background-color: #ffffff !important;
    color: #0a192f !important;
}

/* Styling untuk teks agar lebih elegan */
.footer-item h4 {
    font-weight: 700; /* Lebih tegas */
    letter-spacing: 0.5px;
}

.footer-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6; /* Supaya lebih mudah dibaca */
    opacity: 0.9;
}

/* Copyright text styling */
.copyright span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

/* Efek hover untuk link */
.copyright a:hover {
    color: #005eff !important;
    text-decoration: underline;
}

/* Footer End */





