*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f4f4;
}

/* ===================================
            HEADER
=================================== */

.main-header{
    position:relative;
    background: linear-gradient(135deg, #000000, #212529);
    
    border-top:4px solid #ff4d4d;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(255,77,77,0.08);
}

/* background glow */

.main-header::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255, 255, 255, 0.08);
    border-radius:50%;
    top:-180px;
    left:-120px;
}

.main-header::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,120,120,0.08);
    border-radius:50%;
    bottom:-100px;
    right:-80px;
}

/* ===================================
              LOGO
=================================== */

.logo-box{
    position:relative;
    z-index:5;
}

.logo-box img{
    width:120px;
    transition:0.4s;
}

.logo-box img:hover{
    transform:scale(1.05);
}

/* ===================================
          BUTTON STYLE
=================================== */

.service-btn{
    background:linear-gradient(135deg,#ff4d4d,#ff7676);
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    border-radius:60px;
    font-weight:600;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    z-index:5;
    box-shadow:0 10px 25px rgba(255,77,77,0.25);
}

/* shine effect */

.service-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.25);
    transform:skewX(-25deg);
    transition:0.6s;
}

.service-btn:hover::before{
    left:120%;
}

.service-btn:hover{
    transform:translateY(-3px) scale(1.03);
    color:#fff;
}

/* ===================================
        MOBILE TOGGLE
=================================== */

.mobile-toggle{
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#ff4d4d,#ff7676);
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.4s;
    box-shadow:0 8px 20px rgba(255,77,77,0.25);
}

.mobile-toggle:hover{
    transform:rotate(90deg);
}

.mobile-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    position:relative;
}

.mobile-toggle span::before,
.mobile-toggle span::after{
    content:"";
    position:absolute;
    width:22px;
    height:2px;
    background:#fff;
    left:0;
}

.mobile-toggle span::before{
    top:-7px;
}

.mobile-toggle span::after{
    top:7px;
}

/* ===================================
         MOBILE MENU
=================================== */

.mobile-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    padding:20px;
    display:none;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    border-radius:0 0 25px 25px;
    z-index:99;
}

.mobile-menu a{
    display:block;
    text-decoration:none;
    color:#444;
    padding:14px 18px;
    margin-bottom:10px;
    border-radius:14px;
    font-weight:600;
    background:#fff5f5;
    transition:0.3s;
}

.mobile-menu a:hover{
    background:#ff4d4d;
    color:#fff;
    transform:translateX(5px);
}

/* ===================================
           RESPONSIVE
=================================== */

@media(max-width:991px){

    .desktop-btn{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .logo-box img{
        width:95px;
    }

}

@media(max-width:767px){

    .main-header{
        padding:14px 0;
    }

    .logo-box img{
        width:80px;
    }

    .mobile-btn{
        display:flex !important;
        padding:10px 18px;
        font-size:13px;
    }

}
/* ===================================
          HEADER STYLE
=================================== */

.main-header{
    background:#0f0f0f;
    padding:18px 0;
    border-top:4px solid #ffb400;
    position:relative;
    z-index:99;
    box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

/* ===================================
              LOGO
=================================== */

.logo-box img{
    width:120px;
}

/* ===================================
       CONTACT WRAPPER
=================================== */

.header-contact-wrapper{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

/* ===================================
        MINI CONTACT BOX
=================================== */

.mini-contact-box{
    display:flex;
    align-items:center;
    gap:10px;
    background:#1a1a1a;
    border:1px solid rgba(255,255,255,0.06);
    padding:10px 14px;
    border-radius:50px;
    transition:0.3s ease;
}

.mini-contact-box:hover{
    border-color:#ffb400;
    transform:translateY(-2px);
}

/* ICON */

.mini-icon{
    width:38px;
    height:38px;
    border-radius:50%;
      background: linear-gradient(135deg, #ffb400, #ffa700);
      box-shadow: 0 10px 30px rgba(255, 180, 0, 0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:15px;
}

/* TEXT */

.mini-text small{
    color:#fff;
    font-size:13px;
    display:block;
    line-height:1;
}

.mini-text p{
    color:#fff;
    margin:2px 0 0;
    font-size:13px;
    font-weight:600;
    line-height:1.2;
}

/* ===================================
            BUTTON
=================================== */

/* ===================================
        ATTRACTIVE JOIN BUTTON
=================================== */

.join-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#111;
    background:linear-gradient(135deg,#ffcc00,#ff7b00);
    overflow:hidden;
    z-index:1;
    transition:0.4s ease;
    box-shadow:
        0 10px 25px rgba(255,180,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Glow Border */

.join-btn::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:60px;
    background:linear-gradient(
        90deg,
        #ffcc00,
        #ff7b00,
        #ffcc00
    );
    z-index:-2;
    animation:borderGlow 3s linear infinite;
}

/* Inner Background */

.join-btn::after{
    content:"";
    position:absolute;
    inset:2px;
    border-radius:60px;
    background:linear-gradient(135deg,#ffcc00,#ff9900);
    z-index:-1;
}

/* Shine Animation */

.join-btn span{
    position:relative;
    z-index:2;
}

/* Shine Animation - White Fitness Glow */

.join-btn .btn-shine{
    position:absolute;
    top:0;
    left:-120%;
    width:80px;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255,255,255,0.85),
        rgba(255,255,255,0)
    );
    transform:skewX(-25deg);
    animation:shineMove 2.8s infinite;
    filter:blur(1px);
}

/* Hover */

.join-btn:hover{
    transform:translateY(-4px) scale(1.04);
    color:#111;
    box-shadow:
        0 18px 35px rgba(255,180,0,0.45),
        0 0 20px rgba(255,180,0,0.35);
}

/* Pulse */

@keyframes borderGlow{

    0%{
        filter:hue-rotate(0deg);
    }

    100%{
        filter:hue-rotate(360deg);
    }

}

/* Shine */

@keyframes shineMove{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }

}

/* Mobile */

@media(max-width:767px){

    .join-btn{
        width:100%;
        padding:14px 20px;
        font-size:13px;
    }

}

/* ===================================
          RESPONSIVE
=================================== */

@media(max-width:991px){

    .header-contact-wrapper{
        justify-content:flex-end;
        gap:10px;
    }

    .mini-contact-box{
        padding:8px 12px;
    }

    .mini-text p{
        font-size:12px;
    }

}

/* ===================================
          RESPONSIVE MOBILE
=================================== */

@media(max-width:767px){

    /* COLUMN FULL WIDTH */
    .main-header .col-6{
        width:100%;
        flex:0 0 100%;
        max-width:100%;
    }

    /* LOGO CENTER */
    .logo-box{
        text-align:center;
        margin-bottom:18px;
    }

    .logo-box img{
        width:90px;
    }

    /* ALL ITEMS CENTER */
    .header-contact-wrapper{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:14px;
    }

    /* CONTACT BOX */
    .mini-contact-box{
        width:100%;
        justify-content:center;
        text-align:center;
        border-radius:20px;
        padding:14px;
        flex-direction:column;
    }

    .mini-icon{
        width:42px;
        height:42px;
        font-size:15px;
    }

    .mini-text small{
        font-size:11px;
    }

    .mini-text p{
        font-size:12px;
        line-height:1.7;
        margin-top:5px;
    }

    /* BUTTON */
    .join-btn{
        width:100%;
        text-align:center;
        justify-content:center;
        padding:13px 20px;
        font-size:13px;
    }

}

@media(min-width:992px){
    .mobile-btn{
        display:none !important;
    }
}
/* banner */

/* =========================================
            FITNESS HERO
========================================= */

.fitness-hero{
    position:relative;
    overflow:hidden;
    background:#0f0f0f;
    /* min-height:100vh; */
    display:flex;
    align-items:center;
}

/* =========================================
            BACKGROUND IMAGE
========================================= */

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.35;
}

/* =========================================
                OVERLAY
========================================= */

.hero-overlay{
    position:absolute;
    inset:0;
   background: linear-gradient(90deg, rgb(0 0 0 / 57%) 25%, rgb(0 0 0 / 35%) 60%, rgb(0 0 0 / 67%) 100%);
    z-index:2;
}

/* =========================================
            FLOATING GLOW
========================================= */

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:2;
}

.glow1{
    width:280px;
    height:280px;
    background:rgba(255,180,0,0.18);
    top:-80px;
    left:-60px;
}

.glow2{
    width:240px;
    height:240px;
    background:rgba(255,98,0,0.18);
    bottom:-80px;
    right:-50px;
}

/* =========================================
            HERO CONTENT
========================================= */

.hero-content{
    position:relative;
    z-index:5;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,180,0,0.12);
    border:1px solid rgba(255,180,0,0.4);
    color:#ffb400;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
    text-transform:uppercase;
}

.hero-content h1 span{
    color:#ffb400;
    text-shadow:0 0 20px rgba(255,180,0,0.5);
}

.hero-content p{
    color:#d2d2d2;
    font-size:17px;
    line-height:1.9;
    max-width:600px;
    margin-bottom:35px;
}

/* =========================================
            BUTTONS
========================================= */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.hero-btn{
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-size:15px;
    font-weight:700;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

/* Primary */

.primary-btn{
    background:linear-gradient(135deg,#ffb400,#ff7b00);
    color:#111;
    box-shadow:0 10px 30px rgba(255,180,0,0.25);
}

.primary-btn:hover{
    transform:translateY(-4px);
    color:#111;
}

/* Secondary */

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(255,255,255,0.08);
    color:#fff;
    backdrop-filter:blur(12px);
}

.secondary-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-4px);
}

/* =========================================
                STATS
========================================= */

.fitness-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    padding:22px 28px;
    border-radius:24px;
    min-width:150px;
    transition:0.4s;
}

.stat-box:hover{
    transform:translateY(-6px);
    border-color:rgba(255,180,0,0.5);
}

.stat-box h3{
    color:#ffb400;
    font-size:32px;
    font-weight:800;
    margin-bottom:6px;
}

.stat-box span{
    color:#ddd;
    font-size:14px;
}

/* =========================================
            RIGHT IMAGE
========================================= */

.hero-image{
    position:relative;
    z-index:5;
    text-align:center;
}

.hero-image img{
    width:100%;
    /* max-width:580px; */
    animation:floatImage 4s ease-in-out infinite;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,0.6));
}

/* Floating Animation */

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================
            FLOATING CARD
========================================= */

.floating-card{
    position:absolute;
    bottom:60px;
    left:0;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(16px);
    padding:18px 24px;
    border-radius:22px;
    color:#fff;
    text-align:left;
    animation:cardMove 3s ease-in-out infinite;
}

.floating-card h4{
    color:#ffb400;
    margin-bottom:5px;
    font-weight:800;
}

.floating-card p{
    margin:0;
    color:#ddd;
    font-size:13px;
}

@keyframes cardMove{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================
                RESPONSIVE
========================================= */

@media(max-width:991px){

    .fitness-hero{
        padding:120px 0 80px;
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        margin:auto;
        margin-bottom:35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .fitness-stats{
        justify-content:center;
    }

    .hero-image{
        margin-top:60px;
    }

    .floating-card{
        left:50%;
        transform:translateX(-50%);
        bottom:20px;
    }

}

@media(max-width:767px){

    .fitness-hero{
        min-height:auto;
        padding:110px 0 70px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-btn{
        width:100%;
        justify-content:center;
        padding:15px 20px;
    }

    .fitness-stats{
        gap:14px;
    }

    .stat-box{
        width:100%;
    }

    .hero-image img{
        max-width:320px;
    }

    .floating-card{
        width:220px;
        padding:15px 18px;
    }

}

/* end ----------------------------------*/
/* enquire form */
 /* ===================================
        MODAL STYLE
=================================== */

.enquiry-modal{
    background:#111;
    border:none;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

/* ===================================
        LEFT SIDE
=================================== */

.popup-left{
    position:relative;
    height:100%;
    min-height:650px;
    background:url('assets/img/banner/gym-popup.jpg') center/cover;
    display:flex;
    align-items:center;
    padding:50px;
    overflow:hidden;
}

.popup-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.9)
    );
}

.popup-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.popup-tag{
    display:inline-block;
    background:rgba(255,180,0,0.12);
    border:1px solid rgba(255,180,0,0.35);
    color:#ffb400;
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:25px;
}

.popup-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.popup-content p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

/* FEATURES */

.popup-feature{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.feature-item i{
    color:#ffb400;
    font-size:18px;
}

/* ===================================
        FORM SIDE
=================================== */

.popup-form-wrapper{
    position:relative;
    background:#161616;
    padding:50px;
    height:100%;
}

.popup-form-wrapper h3{
    color:#fff;
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.popup-form-wrapper p{
    color:#aaa;
    margin-bottom:35px;
}

/* CLOSE */

.custom-close{
    position:absolute;
    right:25px;
    top:25px;
    filter:invert(1);
    opacity:1;
}

/* ===================================
        INPUT STYLE
=================================== */

.form-group-custom{
    position:relative;
}

.form-group-custom i{
    position:absolute;
    top:18px;
    left:18px;
    color:#ffb400;
    z-index:2;
}

.custom-input{
    background:#222 !important;
    border:1px solid rgba(255,255,255,0.08) !important;
    border-radius:18px !important;
    height:58px;
    padding-left:52px !important;
    color:#fff !important;
    box-shadow:none !important;
}

.custom-input::placeholder{
    color:#999 !important;
}

.custom-input:focus{
    border-color:#ffb400 !important;
    box-shadow:0 0 0 4px rgba(255,180,0,0.08) !important;
}

textarea.custom-input{
    height:auto;
    padding-top:18px;
    resize:none;
}

/* ===================================
        SUBMIT BUTTON
=================================== */

.submit-btn{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#ffcc00,#ff7b00);
    color:#111;
    border-radius:60px;
    padding:16px 24px;
    font-weight:800;
    letter-spacing:1px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:0.4s ease;
    box-shadow:0 12px 30px rgba(255,180,0,0.25);
}

.submit-btn:hover{
    transform:translateY(-4px);
}

/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:991px){

    .popup-left{
        min-height:420px;
        padding:40px;
    }

    .popup-content h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .popup-left{
        min-height:320px;
        padding:30px;
    }

    .popup-form-wrapper{
        padding:35px 25px;
    }

    .popup-content h2{
        font-size:28px;
    }

    .popup-form-wrapper h3{
        font-size:28px;
    }

    .custom-input{
        height:54px;
    }

}
/* end */