/* ==========================================================
   i-Chimes Fitness Academy
   Main Stylesheet
   Version 1.0
========================================================== */

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   GLOBAL
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111111;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
}

p{
    color:#d8d8d8;
}

section:not(.hero){
    padding:90px 0;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar{
    background:#000 !important;
    padding:20px 0;
    transition:all .3s ease;
}

.navbar-brand{
    padding:0;
}

.logo{
    height:100px;
    width:auto;
    display:block;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
    font-weight:500;
    transition:.3s;
}

.nav-link:hover{
    color:#E31E24 !important;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-danger{
    background:#E31E24;
    border:none;
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;
}

.btn-danger:hover{
    background:#c3141d;
    transform:translateY(-2px);
}

.btn-light{
    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero{
    position:relative;
    min-height:100vh;
    background:url("../images/hero-banner.webp") center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
}

.hero-buttons{
    position:absolute;
    left:3%;
    bottom:4%;
    z-index:10;
}

.hero-buttons .btn{
    margin-right:15px;
}

/* MAIN TITLE */

.hero-title{
    margin:0;

    font-family:'Arial Narrow',
                'Roboto Condensed',
                'Arial',
                sans-serif;

    font-weight:900;

      font-size:40px;

    text-transform:uppercase;

    line-height:.88;

    letter-spacing:-2px;
}

.hero-title span{
    display:block;
    color:#ffffff;
}


/* CERTIFIED */

.hero-title .hero-title-red{
    color:#E31E24;
}


/* FITNESS PROFESSIONAL
   Slightly smaller like the artwork */

.hero-title .hero-title-small{
    font-size:.78em;
}


/* BUTTONS */

.hero-content .hero-buttons{
    position:static;

    display:flex;
    align-items:center;

    gap:15px;

    margin-top:30px;
}

.hero-content .hero-buttons .btn{
    margin-right:0;
}

/* ==========================================================
   FEATURE BOXES
========================================================== */

.feature-box{
    background:#181818;
    border:1px solid #2c2c2c;
    border-radius:18px;
    padding:40px 30px;
    height:100%;
    transition:all .35s ease;
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#E31E24;
    box-shadow:0 20px 40px rgba(227,30,36,.25);
}

.feature-box i{
    color:#E31E24;
    transition:.3s;
}

.feature-box:hover i{
    transform:scale(1.1);
}

.feature-box h4{
    margin:20px 0 15px;
    font-size:1.35rem;
}

.feature-box p{
    color:#cfcfcf;
    line-height:1.7;
}

/* ==========================================================
   CARDS
========================================================== */

.card{
    background:#181818;
    border:1px solid #2b2b2b !important;
    border-radius:18px;
    transition:all .35s ease;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#E31E24 !important;
    box-shadow:0 20px 40px rgba(227,30,36,.25);
}

.card-body{
    padding:35px;
}

.card h4{
    margin-bottom:18px;
    font-weight:700;
}

.card p{
    color:#d0d0d0;
    line-height:1.8;
    min-height:120px;
}

.badge{
    font-size:.8rem;
    letter-spacing:.5px;
    padding:8px 14px;
}
/* =========================
   ISSA SECTION
========================= */

#issa{
    background:#161616;
}

.issa-logo{
    max-width:320px;
    transition:.4s;
}

.issa-logo:hover{
    transform:scale(1.05);
}

#issa h2{
    margin-bottom:25px;
}

#issa p{
    color:#d7d7d7;
    line-height:1.8;
}

#issa .fa-check-circle{
    color:#E31E24;
}
/* =========================
   CAREER OPPORTUNITIES
========================= */

#careers{

    background:#0f0f0f;

}

.career-card{

    background:#181818;

    border:1px solid #2d2d2d;

    border-radius:18px;

    padding:35px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.career-card:hover{

    transform:translateY(-8px);

    border-color:#E31E24;

    box-shadow:0 20px 40px rgba(227,30,36,.20);

}

.career-card{

    font-size:52px;

}

.career-card h4{

    margin-top:20px;

    margin-bottom:15px;

}

.career-card p{

    color:#d2d2d2;

}

.career-highlight{

    background:#181818;

    border:1px solid #E31E24;

    border-radius:20px;

    padding:45px;

    width:100%;

}
/* =========================
   GLOBAL CAREER MAP
========================= */

#careers{
    padding:0;
    margin:0;
    background:#000;
    line-height:0;
}

.career-map{
    display:block;
    width:100%;
    height:auto;
    margin:0;
    padding:0;
}
/*=========================================================
ABOUT HERO
=========================================================*/

.about-hero{

    position:relative;

    min-height:100vh;

    background-image:url("../images/about-story.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

}

.about-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.05) 100%
    );

}

.hero-height{

    min-height:100vh;

}

.about-hero .container{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    color:#E31E24;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:15px;

}

.hero-title{

    font-size:78px;

    font-weight:800;

    line-height:1.05;

    color:#fff;

    margin:25px 0;

}

.hero-text{

    font-size:22px;

    color:#fff;

    max-width:550px;

}


/*=========================================================
OUR STORY
=========================================================*/

.about-story{
    background:#ffffff;
    padding:140px 0;
}

.story-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.story-image::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#D71920;
    border-radius:50%;
    top:-60px;
    left:-60px;
    opacity:.10;
    z-index:0;
}

.story-image img{
    position:relative;
    z-index:1;
    width:100%;
    height:760px;        /* Increase to 760px if you want it taller */
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .6s ease;
}

.story-image:hover img{
    transform:scale(1.05);
}

.section-subtitle{
    color:#E31E24;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:15px;
}

.section-title{
    font-size:54px;
    font-weight:800;
    line-height:1.15;
    color:#111;
    margin:20px 0;
}

.red-line{
    width:90px;
    height:5px;
    background:#E31E24;
    margin:30px 0;
    border-radius:20px;
}

.about-story p{
    font-size:18px;
    line-height:34px;
    color:#666;
    margin-bottom:22px;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:991px){

    .about-story{
        padding:100px 0;
    }

    .story-image img{
        height:550px;
    }

    .section-title{
        font-size:42px;
    }

}

@media (max-width:768px){

    .about-story{
        padding:80px 0;
    }

    .story-image img{
        height:420px;
    }

    .section-title{
        font-size:34px;
    }

    .about-story p{
        font-size:16px;
        line-height:30px;
    }

}


/*=========================================================
STATISTICS
=========================================================*/

.stats-section{

background:#0B0B0B;

padding:120px 0;

}

.counter{

font-size:72px;

font-weight:800;

color:#E31E24;

margin-bottom:10px;

}

.stats-section h5{

color:#fff;

font-size:20px;

font-weight:600;

}




/* ==========================================
   RESPONSIVE
========================================== */

/* Large Tablets */
@media (max-width: 1199px) {

    .hero-title{
        font-size:60px;
    }

}

/* Tablets */
@media (max-width: 991px) {

    .about-hero{
        min-height:80vh;
        background-position:center;
    }

    .hero-height{
        min-height:80vh;
    }

    .hero-title{
        font-size:48px;
    }

    .section-title{
        font-size:40px;
    }

    .about-story{
        padding:90px 0;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .about-hero{
        min-height:65vh;
        background-position:center;
    }

    .hero-height{
        min-height:65vh;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-text{
        font-size:18px;
    }

    .section-title{
        font-size:32px;
    }

    .about-story{
        padding:70px 0;
    }

    .counter{
        font-size:48px;
    }

    .stats-section{
        padding:80px 0;
    }

}

/* Small Mobile */
@media (max-width: 576px) {

    .about-hero{
        min-height:55vh;
    }

    .hero-height{
        min-height:55vh;
    }

    .section-title{
        font-size:28px;
        line-height:1.2;
    }

    .about-story p{
        font-size:16px;
        line-height:28px;
    }

    .counter{
        font-size:42px;
    }

    .stats-section h5{
        font-size:18px;
    }

}
/*=========================================================
WHY ISSA
=========================================================*/

.why-issa{

    padding:140px 0;

    background:#111111;

    position:relative;

    overflow:hidden;

}

.why-issa::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#D71920;

    opacity:.05;

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.why-issa .container{

    position:relative;

    z-index:2;

}

/*-----------------------------------
SECTION HEADINGS
-----------------------------------*/

.why-issa .section-subtitle{

    color:#D71920;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.why-issa .section-title{

    color:#ffffff;

    font-size:54px;

    font-weight:800;

    line-height:1.15;

    margin:20px 0;

}

.why-issa .red-line{

    width:90px;

    height:5px;

    background:#D71920;

    border-radius:20px;

    margin:30px 0;

}

/*-----------------------------------
TEXT
-----------------------------------*/

.why-issa p{

    color:#d8d8d8;

    font-size:18px;

    line-height:34px;

    margin-bottom:22px;

}

/*-----------------------------------
RIGHT CARD
-----------------------------------*/

.issa-card{

    background:#1c1c1c;

    border-radius:25px;

    padding:50px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    transition:.4s;

}

.issa-card:hover{

    transform:translateY(-10px);

    border-color:#D71920;

    box-shadow:0 30px 80px rgba(215,25,32,.18);

}

.issa-card img{

    max-width:180px;

    margin:0 auto 30px;

    display:block;

}

.issa-card h4{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

    text-align:center;

    margin-bottom:35px;

}

/*-----------------------------------
FEATURE LIST
-----------------------------------*/

.issa-feature{

    display:flex;

    align-items:center;

    gap:18px;

    color:#ffffff;

    font-size:18px;

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.issa-feature:last-child{

    border-bottom:none;

}

.issa-feature i{

    width:48px;

    height:48px;

    min-width:48px;

    background:#D71920;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

/*-----------------------------------
RESPONSIVE
-----------------------------------*/

@media(max-width:991px){

    .why-issa{

        padding:100px 0;

    }

    .why-issa .section-title{

        font-size:42px;

    }

    .issa-card{

        margin-top:50px;

        padding:40px;

    }

}

@media(max-width:768px){

    .why-issa{

        padding:80px 0;

    }

    .why-issa .section-title{

        font-size:34px;

    }

    .why-issa p{

        font-size:16px;

        line-height:30px;

    }

    .issa-card{

        padding:30px;

    }

    .issa-card h4{

        font-size:24px;

    }

    .issa-feature{

        font-size:16px;

        gap:15px;

    }

    .issa-feature i{

        width:42px;

        height:42px;

        min-width:42px;

        font-size:16px;

    }

}
/*=========================================================
WHY CHOOSE
=========================================================*/

.why-choose{

    padding:140px 0;

    background:#f8f9fb;

}

.section-description{

    max-width:780px;

    margin:25px auto 0;

    color:#666;

    font-size:18px;

    line-height:32px;

}

.feature-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    height:100%;

    text-align:left;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.feature-card h4{

    font-size:24px;

    font-weight:700;

    color:#111;

    margin:20px 0 15px;

    line-height:1.3;

}

.feature-card p{

    color:#666;

    font-size:17px;

    line-height:30px;

}

.feature-icon{

    width:75px;

    height:75px;

    background:#D71920;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

}

.feature-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:20px;

}

.feature-card p{

    color:#666;

    line-height:30px;

    margin-bottom:0;

}

.featured-card{

    border:2px solid #D71920;

}

.badge-new{

    position:absolute;

    top:20px;

    right:20px;

    background:#D71920;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}
/*=========================================================
FUTURE OF FITNESS
=========================================================*/

.future-section{

padding:140px 0;

background:#090909;

}

.future-section .section-title{

color:#fff;

}

.future-text{

max-width:820px;

margin:30px auto 60px;

font-size:18px;

line-height:34px;

color:#d7d7d7;

}

.future-card{

background:#161616;

border-radius:25px;

overflow:hidden;

transition:.45s;

height:100%;

box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.future-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 90px rgba(215,25,32,.20);

}

.course-cover{

height:260px;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#0d0d0d,#242424);

border-bottom:1px solid rgba(255,255,255,.08);

position:relative;

overflow:hidden;

}

.course-cover::before{

content:"";

position:absolute;

width:260px;

height:260px;

background:#D71920;

opacity:.08;

border-radius:50%;

top:-120px;

right:-100px;

}

.cover-logo{

font-size:16px;

letter-spacing:5px;

font-weight:700;

color:#D71920;

margin-bottom:25px;

position:relative;

z-index:2;

}

.course-cover h3{

color:#fff;

font-size:32px;

font-weight:800;

text-align:center;

line-height:1.2;

margin-bottom:20px;

position:relative;

z-index:2;

}

.course-cover span{

color:#cfcfcf;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

position:relative;

z-index:2;

}

.future-content{

padding:35px;

}

.future-content h4{

font-size:24px;

font-weight:700;

color:#fff;

margin-bottom:20px;

}

.future-content p{

color:#cfcfcf;

line-height:30px;

margin-bottom:25px;

}

.future-content a{

color:#D71920;

font-weight:700;

text-decoration:none;

}

.future-content a:hover{

letter-spacing:1px;

}

.featured-course{

border:2px solid #D71920;

}

.badge-new{

position:absolute;

top:20px;

right:20px;

background:#D71920;

color:#fff;

padding:8px 15px;

border-radius:30px;

font-size:12px;

font-weight:700;

z-index:10;

}

@media(max-width:768px){

.course-cover{

height:220px;

}

.course-cover h3{

font-size:26px;

}

.future-content{

padding:25px;

}

}
/*=========================================================
OUR PURPOSE
=========================================================*/

.purpose-section{

    padding:150px 0;

    background:#ffffff;

}

.purpose-text{

    max-width:850px;

    margin:30px auto 0;

    font-size:19px;

    line-height:34px;

    color:#666;

}

.glass-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(215,25,32,.10);

    border-radius:30px;

    padding:60px;

    height:100%;

    transition:.45s;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.glass-card:hover{

    transform:translateY(-12px);

    box-shadow:0 40px 90px rgba(215,25,32,.15);

}

.glass-icon{

    width:90px;

    height:90px;

    background:#D71920;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:35px;

}

.glass-card h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:25px;

}

.glass-card p{

    color:#666;

    font-size:18px;

    line-height:34px;

}

/*=========================================================
QUOTE
=========================================================*/

.quote-section{

    padding:180px 0;

    background:#0a0a0a;

    text-align:center;

}

.quote-mark{

    color:#D71920;

    font-size:130px;

    line-height:1;

}

.quote-box h2{

    color:#fff;

    font-size:64px;

    font-weight:800;

    line-height:1.2;

    margin:30px 0;

}

.quote-box span{

    color:#D71920;

}

.quote-box p{

    max-width:760px;

    margin:0 auto;

    color:#d2d2d2;

    font-size:20px;

    line-height:34px;

}

/*=========================================================
PREMIUM CTA
=========================================================*/

.premium-cta{

    padding:160px 0;

    background:linear-gradient(135deg,#090909 0%,#1b1b1b 45%,#D71920 100%);

    position:relative;

    overflow:hidden;

}

.premium-cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-220px;

    right:-150px;

}

.premium-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    bottom:-150px;

    left:-120px;

}

.cta-wrapper{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:900px;

    margin:auto;

}

.premium-cta .section-subtitle{

    color:#ffffff;

    letter-spacing:4px;

}

.cta-wrapper h2{

    color:#fff;

    font-size:68px;

    font-weight:800;

    line-height:1.1;

    margin:25px 0;

}

.cta-wrapper p{

    color:#f2f2f2;

    font-size:20px;

    line-height:36px;

    max-width:760px;

    margin:0 auto 45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    padding:18px 42px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.4s;

}

.cta-buttons .btn-outline-light:hover{

    background:#fff;

    color:#D71920;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:768px){

.premium-cta{

padding:100px 0;

}

.cta-wrapper h2{

font-size:42px;

}

.cta-wrapper p{

font-size:17px;

line-height:30px;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons .btn{

width:100%;

}

}
/* =========================================================
   I-CHIMES FITNESS ACADEMY
   COURSES PAGE — PREMIUM CSS
========================================================= */


/* =========================================================
   COURSES HERO
========================================================= */

.courses-hero {

    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.10) 50%,
            rgba(0,0,0,.05) 100%
        ),
        url("../images/courses-hero.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}
.courses-hero-overlay {

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(215,25,32,.12),
            transparent 40%
        );

    pointer-events: none;
}


.courses-hero .container {

    position: relative;
    z-index: 2;

}


.courses-hero-content {

    max-width: 760px;

    padding: 100px 0;

}


.courses-eyebrow {

    display: inline-block;

    color: #D71920;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 25px;

}


.courses-hero h1 {

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(52px, 6vw, 88px);

    font-weight: 900;

    line-height: .98;

    letter-spacing: -2px;

}


.courses-hero h1 span {

    display: block;

    color: #D71920;

}


.courses-hero p {

    max-width: 650px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.82);

    font-size: 20px;

    line-height: 1.8;

}


.courses-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}


/* =========================================================
   PREMIUM BUTTONS
   ========================================================= */

.premium-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 16px 28px;

    background: #D71920;

    border: 2px solid #D71920;

    border-radius: 8px;

    color: #ffffff !important;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;

    box-shadow:
        0 12px 30px rgba(215,25,32,.22);

}


.premium-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #111111 !important;

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(0,0,0,.18);

}


.premium-btn i {

    transition: transform .3s ease;

}


.premium-btn:hover i {

    transform: translateX(4px);

}


.premium-btn-outline {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border: 2px solid rgba(255,255,255,.65);

    border-radius: 8px;

    color: #ffffff !important;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;

}


.premium-btn-outline:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #111111 !important;

    transform: translateY(-3px);

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading-center {

    max-width: 780px;

    margin: 0 auto 70px;

    text-align: center;

}


.section-heading-center .section-subtitle {

    display: block;

    margin-bottom: 15px;

}


.section-heading-center h2 {

    margin: 0;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 850;

    line-height: 1.08;

    color: #111111;

    letter-spacing: -1px;

}


.section-heading-center p {

    max-width: 680px;

    margin: 25px auto 0;

    color: #666666;

    font-size: 18px;

    line-height: 1.8;

}


/* =========================================================
   CAREER PATHWAYS
   ========================================================= */

.career-pathways {

    padding: 130px 0;

    background: #ffffff;

}


.career-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 22px;

    height: 100%;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 20px;

    color: #111111;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.career-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #D71920;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .4s ease;

}


.career-card:hover {

    color: #111111;

    transform: translateY(-8px);

    border-color: rgba(215,25,32,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);

}


.career-card:hover::before {

    transform: scaleY(1);

}


.career-icon {

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #111111;

    color: #ffffff;

    font-size: 22px;

    transition: all .35s ease;

}


.career-card:hover .career-icon {

    background: #D71920;

    transform: rotate(-5deg) scale(1.05);

}


.career-card span {

    display: block;

    margin-bottom: 7px;

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.career-card h3 {

    margin: 0 35px 8px 0;

    color: #111111;

    font-size: 21px;

    font-weight: 800;

}


.career-card p {

    margin: 0;

    color: #777777;

    font-size: 15px;

    line-height: 1.65;

}


.career-arrow {

    margin-left: auto;

    color: #D71920;

    transition: transform .35s ease;

}


.career-card:hover .career-arrow {

    transform: translateX(6px);

}


/* =========================================================
   FEATURED MENOPAUSE CERTIFICATION
========================================================= */

.featured-certification {

    position: relative;

    width: 100%;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #08090b 0%,
            #111419 55%,
            #08090b 100%
        );

    overflow: hidden;
}


/* =========================================================
   BACKGROUND RED GLOW
========================================================= */

.featured-certification::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.16),
            transparent 68%
        );

    border-radius: 50%;

    filter: blur(40px);

    pointer-events: none;
}


/* =========================================================
   MAIN FEATURE CONTENT
========================================================= */

.featured-cert-card {

    position: relative;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    min-height: 540px;

    overflow: hidden;

    background: transparent;

    border: 0;

    border-radius: 0;

    box-shadow: none;
}


/* =========================================================
   CONTENT
========================================================= */

.featured-cert-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 70px 60px 0;
}


/* =========================================================
   NEW CERTIFICATION BADGE
========================================================= */

.new-badge {

    display: inline-flex;

    align-items: center;

    width: fit-content;

    padding: 8px 14px;

    margin-bottom: 25px;

    border: 1px solid rgba(215,25,32,.5);

    border-radius: 50px;

    background: rgba(215,25,32,.10);

    color: #ff4b50;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   SUBTITLE
========================================================= */

.featured-cert-content .section-subtitle {

    display: block;

    margin-bottom: 15px;

    color: #f5b62e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.featured-cert-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 76px);

    font-weight: 900;

    line-height: .95;

    letter-spacing: -2px;
}


.featured-cert-content h2 span {

    color: #D71920;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.featured-cert-content p {

    max-width: 600px;

    margin-bottom: 30px;

    color: #c5c5c5;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.featured-points {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 35px;
}


.featured-points span {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #eeeeee;

    font-size: 15px;
}


.featured-points i {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 24px;

    width: 24px;

    height: 24px;

    border-radius: 50%;

    background: #D71920;

    color: #ffffff;

    font-size: 11px;
}


/* =========================================================
   VISUAL SIDE
========================================================= */

.featured-cert-visual {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 500px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(215,25,32,.16),
            transparent 55%
        );
}


/* =========================================================
   GLOW
========================================================= */

.featured-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(215,25,32,.18);

    filter: blur(50px);
}


/* =========================================================
   CENTRAL CIRCLE
========================================================= */

.featured-circle {

    position: relative;

    z-index: 2;

    width: 250px;

    height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.35),
            rgba(0,0,0,.9) 70%
        );

    color: #ffffff;

    font-size: 36px;

    font-weight: 900;

    letter-spacing: 4px;

    box-shadow:
        0 0 80px rgba(215,25,32,.18),
        inset 0 0 50px rgba(255,255,255,.03);
}


/* =========================================================
   BACKGROUND WORD
========================================================= */

.featured-word {

    position: absolute;

    z-index: 1;

    color: rgba(255,255,255,.035);

    font-size: 95px;

    font-weight: 900;

    letter-spacing: -4px;

    transform: rotate(-90deg);

    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .featured-cert-card {

        grid-template-columns: 1fr;

    }


    .featured-cert-content {

        padding:
            30px 0 50px;

    }


    .featured-cert-visual {

        min-height: 400px;

    }

}


@media (max-width: 767px) {

    .featured-certification {

        padding:
            85px 0;

    }


    .featured-cert-content h2 {

        font-size: 48px;

    }


    .featured-cert-content p {

        font-size: 16px;

    }


    .featured-cert-visual {

        min-height: 330px;

    }


    .featured-circle {

        width: 190px;

        height: 190px;

        font-size: 28px;

    }


    .featured-word {

        font-size: 65px;

    }

}

/* =========================================================
   CERTIFICATION CATALOGUE
   ========================================================= */

.certification-catalogue {

    padding: 140px 0;

    background: #f7f7f7;

}


.catalogue-category {

    margin-bottom: 100px;

}


.catalogue-category:last-child {

    margin-bottom: 0;

}


.category-heading {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-bottom: 40px;

}


.category-number {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    border-radius: 18px;

    background: #111111;

    color: #ffffff;

    font-size: 16px;

    font-weight: 800;

}


.category-heading span {

    display: block;

    margin-bottom: 6px;

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.category-heading h3 {

    margin: 0;

    color: #111111;

    font-size: 30px;

    font-weight: 850;

}


.cert-card {

    position: relative;

    height: 100%;

    min-height: 285px;

    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.cert-card::after {

    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: rgba(215,25,32,.05);

    transition: all .4s ease;

}


.cert-card:hover {

    transform: translateY(-8px);

    border-color: rgba(215,25,32,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);

}


.cert-card:hover::after {

    transform: scale(1.5);

    background: rgba(215,25,32,.09);

}


.cert-card > span {

    display: inline-block;

    margin-bottom: 18px;

    padding: 6px 11px;

    border-radius: 50px;

    background: rgba(215,25,32,.08);

    color: #D71920;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.cert-card h4 {

    position: relative;

    z-index: 2;

    margin: 0 0 15px;

    color: #111111;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.25;

}


.cert-card p {

    position: relative;

    z-index: 2;

    margin-bottom: 25px;

    color: #777777;

    font-size: 15px;

    line-height: 1.7;

}


.cert-card a {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #111111;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition: all .3s ease;

}


.cert-card a i {

    color: #D71920;

    transition: transform .3s ease;

}


.cert-card:hover a {

    color: #D71920;

}


.cert-card:hover a i {

    transform: translateX(5px);

}


/* =========================================================
   WHY I-CHIMES
   ========================================================= */

.courses-trust {

    padding: 120px 0;

    background: #111111;

    color: #ffffff;

}


.courses-trust .section-subtitle {

    display: block;

    margin-bottom: 15px;

}


.courses-trust h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 850;

    line-height: 1.05;

}


.courses-trust p {

    max-width: 600px;

    margin-bottom: 30px;

    color: #cccccc;

    font-size: 18px;

    line-height: 1.8;

}


.trust-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-left: 40px;

}


.trust-grid > div {

    padding: 35px 30px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background: #191919;

    transition: all .35s ease;

}


.trust-grid > div:hover {

    transform: translateY(-6px);

    border-color: rgba(215,25,32,.5);

    background: #1d1d1d;

}


.trust-grid strong {

    display: block;

    margin-bottom: 8px;

    color: #D71920;

    font-size: 42px;

    font-weight: 900;

    line-height: 1;

}


.trust-grid span {

    color: #dddddd;

    font-size: 14px;

    line-height: 1.5;

}


.courses-trust .premium-btn:hover {

    background: #ffffff;

    color: #111111 !important;

}


/* =========================================================
   FINAL CTA
   ========================================================= */

.courses-final-cta {

    position: relative;

    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #D71920 0%,
            #a90f15 100%
        );

    overflow: hidden;

}


.courses-final-cta::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

}


.courses-final-cta::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -80px;

    border-radius: 50%;

    background: rgba(0,0,0,.08);

}


.final-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.final-cta-content > span {

    display: block;

    margin-bottom: 18px;

    color: rgba(255,255,255,.75);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.final-cta-content h2 {

    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -1.5px;

}


.final-cta-content p {

    max-width: 650px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 1.8;

}


.final-cta-content > div {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}


.premium-btn.light {

    background: #ffffff;

    border-color: #ffffff;

    color: #111111 !important;

    box-shadow:
        0 15px 35px rgba(0,0,0,.18);

}


.premium-btn.light:hover {

    background: #111111;

    border-color: #111111;

    color: #ffffff !important;

}


.cta-phone {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;

}


.cta-phone:hover {

    color: #ffffff;

    transform: translateY(-2px);

}


.cta-phone i {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;

}


/* =========================================================
   GENERAL RED LINE
   ========================================================= */

.red-line {

    width: 90px;

    height: 5px;

    margin: 30px 0;

    background: #D71920;

    border-radius: 20px;

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 991px) {

    .courses-hero {

        min-height: 80vh;

        background-position: 65% center;

    }


    .courses-hero-content {

        max-width: 650px;

        padding: 90px 0;

    }


    .courses-hero h1 {

        font-size: 58px;

    }


    .featured-cert-card {

        grid-template-columns: 1fr;

    }


    .featured-cert-content {

        padding: 55px 40px;

    }


    .featured-cert-visual {

        min-height: 350px;

    }


    .featured-word {

        font-size: 70px;

    }


    .trust-grid {

        margin-left: 0;

        margin-top: 50px;

    }

}


@media (max-width: 767px) {

    .courses-hero {

        min-height: 82vh;

        background-position: 62% center;

    }


    .courses-hero-content {

        padding: 80px 0;

    }


    .courses-eyebrow {

        font-size: 11px;

        letter-spacing: 2.5px;

    }


    .courses-hero h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .courses-hero p {

        font-size: 17px;

        line-height: 1.7;

    }


    .courses-hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .premium-btn,
    .premium-btn-outline {

        width: 100%;

        text-align: center;

    }


    .career-pathways,
    .certification-catalogue,
    .courses-trust,
    .featured-certification {

        padding: 80px 0;

    }


    .section-heading-center {

        margin-bottom: 45px;

    }


    .section-heading-center h2 {

        font-size: 36px;

    }


    .section-heading-center p {

        font-size: 16px;

    }


    .career-card {

        padding: 25px;

    }


    .career-icon {

        flex: 0 0 50px;

        width: 50px;
        height: 50px;

        font-size: 19px;

    }


    .career-card h3 {

        font-size: 19px;

    }


    .featured-cert-content {

        padding: 45px 25px;

    }


    .featured-cert-content h2 {

        font-size: 52px;

    }


    .featured-cert-visual {

        min-height: 300px;

    }


    .featured-circle {

        width: 190px;
        height: 190px;

        font-size: 28px;

    }


    .featured-word {

        font-size: 52px;

    }


    .category-heading {

        gap: 15px;

    }


    .category-number {

        width: 50px;
        height: 50px;

        flex: 0 0 50px;

        border-radius: 14px;

        font-size: 13px;

    }


    .category-heading h3 {

        font-size: 23px;

    }


    .cert-card {

        min-height: auto;

        padding: 28px;

    }


    .trust-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .trust-grid > div {

        padding: 28px;

    }


    .trust-grid strong {

        font-size: 36px;

    }


    .courses-trust h2 {

        font-size: 40px;

    }


    .courses-trust p {

        font-size: 16px;

    }


    .courses-final-cta {

        padding: 85px 0;

    }


    .final-cta-content h2 {

        font-size: 42px;

    }


    .final-cta-content p {

        font-size: 16px;

    }


    .final-cta-content > div {

        flex-direction: column;

    }

}
/* =========================================================
   FITNESS ACADEMY HEADER LOGO
========================================================= */

.site-logo {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
}
/* =========================================================
   FITNESS ACADEMY HEADER / NAVIGATION
========================================================= */

.site-header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .navbar-nav .nav-item {
    display: block;
    width: auto;
}

.site-header .navbar-nav .nav-link {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.site-header .navbar-nav .nav-link:hover,
.site-header .navbar-nav .nav-link.active {
    color: #D71920;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 991px) {

    .site-header .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
    }

    .site-header .navbar-nav .nav-item {
        width: 100%;
    }

    .site-header .navbar-nav .nav-link {
        width: 100%;
        padding: 12px 0;
    }

}

@media (max-width: 480px) {

    .courses-hero h1 {

        font-size: 38px;

    }


    .courses-eyebrow {

        font-size: 10px;

    }


    .featured-cert-content h2 {

        font-size: 45px;

    }


    .category-heading h3 {

        font-size: 21px;

    }


    .cert-card h4 {

        font-size: 20px;

    }


    .final-cta-content h2 {

        font-size: 36px;

    }
}

/* =========================================================
   COURSES HERO — MOBILE OPTIMISATION
========================================================= */

@media (max-width: 767px) {

    .courses-hero {

        min-height: 680px;

        background-position: 68% center;

    }

    .courses-hero-content {

        max-width: 360px;

        padding: 70px 0 55px;

    }

    .courses-eyebrow {

        font-size: 10px;

        line-height: 1.5;

        letter-spacing: 2px;

        margin-bottom: 16px;

    }

    .courses-hero-content h1 {

        font-size: 46px;

        line-height: 1;

        letter-spacing: -1.5px;

        margin-bottom: 20px;

    }

    .courses-hero-content p {

        max-width: 340px;

        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 25px;

    }

    .courses-hero-actions {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .courses-hero-actions a {

        width: auto;

    }

}
/* =========================================================
   =========================================================
   I-CHIMES FITNESS ACADEMY
   ISSA PAGE — ULTRA PREMIUM CSS
   =========================================================
   ========================================================= */


/* =========================================================
   GLOBAL ISSA VARIABLES
========================================================= */

:root {

    --issa-black: #050608;
    --issa-dark: #080b0f;
    --issa-dark-2: #0d1117;

    --issa-white: #ffffff;
    --issa-text: #d9dde2;
    --issa-muted: #8f98a3;

    --issa-red: #d71920;
    --issa-red-dark: #a90f15;

    --issa-gold: #f5b62e;

    --issa-border: rgba(255,255,255,.10);

    --issa-shadow:
        0 25px 70px rgba(0,0,0,.35);

}


/* =========================================================
   ISSA HERO
========================================================= */

.issa-hero {

    position: relative;

    min-height: 72vh;

    display: flex;

    align-items: center;

    background-image:
        url("../images/issa-banner.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* HERO OVERLAY */

.issa-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,8,.88) 0%,
            rgba(3,5,8,.62) 38%,
            rgba(3,5,8,.22) 72%,
            rgba(3,5,8,.05) 100%
        );

    z-index: 1;
}


/* ADDITIONAL OVERLAY */

.issa-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(215,25,32,.12),
            transparent 40%
        );

    pointer-events: none;

    z-index: 2;
}


/* HERO CONTENT */

.issa-hero-content {

    position: relative;

    z-index: 3;

    max-width: 630px;

    padding: 80px 0;
}


/* =========================================================
   ISSA HERO LOGO
========================================================= */

.issa-hero-brand {
    margin-bottom: 24px;
}

.issa-hero-brand a {
    display: inline-block;
}

.issa-hero-brand img {
    display: block;
    width: 210px;
    max-width: 55%;
    height: auto;
    transition: opacity .3s ease, transform .3s ease;
}

.issa-hero-brand a:hover img {
    opacity: .85;
    transform: translateY(-2px);
}
.issa-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 24px;

    color: var(--issa-gold);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.issa-eyebrow::before {

    content: "";

    width: 42px;

    height: 2px;

    background: var(--issa-red);

}


.issa-hero h1 {

    margin: 0;

    color: var(--issa-white);

    font-size: clamp(48px, 6vw, 86px);

    line-height: .98;

    font-weight: 900;

    letter-spacing: -3px;

}


.issa-hero h1 span {

    display: block;

    color: var(--issa-red);

}


.issa-hero-lead {

    max-width: 610px;

    margin:
        30px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 1.8;

}


.issa-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.issa-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding:
        0 25px;

    border-radius: 3px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;

}


.issa-btn:hover {

    transform: translateY(-3px);

}


.issa-btn-primary {

    color: #fff;

    background: var(--issa-red);

    box-shadow:
        0 12px 35px rgba(215,25,32,.25);

}


.issa-btn-primary:hover {

    color: #fff;

    background: #ed1c24;

}


.issa-btn-secondary {

    color: #fff;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.28);

    backdrop-filter: blur(10px);

}


.issa-btn-secondary:hover {

    color: #fff;

    border-color: var(--issa-red);

}


.issa-btn-outline {

    color: var(--issa-white);

    background: transparent;

    border: 1px solid rgba(255,255,255,.22);

}


.issa-btn-outline:hover {

    color: #fff;

    border-color: var(--issa-red);

    background: var(--issa-red);

}


/* =========================================================
   COMMON HEADINGS
========================================================= */

.issa-kicker {

    display: inline-block;

    margin-bottom: 16px;

    color: var(--issa-red);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;

}


.issa-heading {

    max-width: 850px;

    margin-bottom: 55px;

}


.issa-heading.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.issa-heading h2,
.issa-intro-content h2,
.issa-career-header h2,
.career-connect-content h2,
.issa-partner-card h2,
.issa-final-content h2 {

    margin: 0;

    color: var(--issa-white);

    font-size: clamp(36px, 4vw, 60px);

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -2px;

}


.issa-heading h2 span,
.issa-intro-content h2 span,
.issa-career-header h2 span,
.career-connect-content h2 span,
.issa-partner-card h2 span,
.issa-final-content h2 span {

    color: var(--issa-red);

}


.issa-heading p {

    max-width: 680px;

    margin:
        22px auto 0;

    color: var(--issa-muted);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   INTRO
========================================================= */

.issa-intro {

    position: relative;

    padding:
        120px 0;

    background:
        #ffffff;

}


.issa-intro-grid {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 70px;

    max-width: 1150px;

    margin: auto;

}


.issa-section-label {

    padding-top: 8px;

}


.issa-section-label span {

    display: block;

    color: var(--issa-red);

    font-size: 48px;

    line-height: 1;

    font-weight: 900;

}


.issa-section-label small {

    display: block;

    margin-top: 12px;

    color: #7d858e;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.issa-intro-content {

    max-width: 820px;

}


.issa-intro-content h2 {

    color: #101318;

}


.issa-intro-content h2 span {

    color: var(--issa-red);

}


.issa-intro-content .issa-lead {

    margin-top: 25px;

    color: #252a31;

    font-size: 20px;

    line-height: 1.7;

    font-weight: 500;

}


.issa-intro-content p:not(.issa-lead) {

    max-width: 750px;

    color: #68717b;

    font-size: 16px;

    line-height: 1.9;

}


.issa-text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    color: var(--issa-red);

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    text-decoration: none;

}


.issa-text-link:hover {

    color: var(--issa-red-dark);

}


/* =========================================================
   VISION
========================================================= */

.issa-vision {

    position: relative;

    overflow: hidden;

    padding:
        125px 0;

    background:
        linear-gradient(
            135deg,
            #050608 0%,
            #0c1016 55%,
            #080a0d 100%
        );

}


.issa-vision-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -150px;

    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.24),
            transparent 68%
        );

}


.issa-vision-inner {

    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;

}


.issa-vision .issa-kicker {

    color: var(--issa-gold);

}


.issa-vision-number {

    margin:
        12px 0;

    color: rgba(255,255,255,.035);

    font-size: clamp(100px, 17vw, 230px);

    line-height: .8;

    font-weight: 900;

    letter-spacing: -12px;

}


.issa-vision h2 {

    position: relative;

    margin: -35px 0 0;

    color: #fff;

    font-size: clamp(36px, 5vw, 65px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

}


.issa-vision h2 span {

    display: block;

    color: var(--issa-red);

}


.issa-vision p {

    max-width: 650px;

    margin:
        28px auto 0;

    color: rgba(255,255,255,.65);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   GLOBAL STATS
========================================================= */

.issa-global {

    padding:
        120px 0;

    background: #f4f5f6;

}


.issa-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.issa-stat-card {

    position: relative;

    min-height: 250px;

    padding: 32px;

    background: #fff;

    border: 1px solid #e5e7ea;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.issa-stat-card::after {

    content: "";

    position: absolute;

    width: 100px;

    height: 100px;

    right: -50px;

    bottom: -50px;

    border-radius: 50%;

    background: rgba(215,25,32,.08);

}


.issa-stat-card:hover {

    transform: translateY(-8px);

    border-color: rgba(215,25,32,.3);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);

}


.issa-stat-icon {

    color: var(--issa-red);

    font-size: 28px;

}


.issa-stat-card strong {

    display: block;

    margin-top: 30px;

    color: #11151a;

    font-size: 46px;

    line-height: 1;

    font-weight: 900;

}


.issa-stat-card span {

    display: block;

    max-width: 180px;

    margin-top: 12px;

    color: #727a83;

    font-size: 13px;

    line-height: 1.5;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

}


/* =========================================================
   WHAT ISSA OFFERS
========================================================= */

.issa-offers {

    padding:
        120px 0;

    background: #080a0d;

}


.issa-offers .issa-heading h2 {

    color: #fff;

}


.issa-offers .issa-heading p {

    color: #858e98;

}


.issa-offer-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.issa-offer-card {

    position: relative;

    min-height: 360px;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.018)
        );

    border: 1px solid rgba(255,255,255,.09);

    transition:
        transform .35s ease,
        border-color .35s ease;

}


.issa-offer-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(215,25,32,.55);

}


.offer-number {

    position: absolute;

    top: 24px;

    right: 28px;

    color: rgba(255,255,255,.12);

    font-size: 13px;

    font-weight: 900;

}


.offer-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin-bottom: 65px;

    color: var(--issa-red);

    border: 1px solid rgba(215,25,32,.35);

    font-size: 22px;

}


.issa-offer-card h3 {

    margin: 0;

    color: #fff;

    font-size: 23px;

    font-weight: 800;

}


.issa-offer-card p {

    margin-top: 15px;

    color: #7e8791;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   PATHWAYS
========================================================= */

.issa-pathways {

    padding:
        120px 0;

    background: #fff;

}


.issa-pathway-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.issa-pathway-card {

    position: relative;

    display: block;

    min-height: 310px;

    padding: 30px;

    color: inherit;

    background: #f6f7f8;

    border: 1px solid #e5e7ea;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;

}


.issa-pathway-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 0;

    background: var(--issa-red);

    transition:
        height .35s ease;

}


.issa-pathway-card:hover {

    transform: translateY(-8px);

    color: inherit;

    border-color: rgba(215,25,32,.25);

    background: #fff;

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);

}


.issa-pathway-card:hover::before {

    height: 100%;

}


.pathway-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.pathway-top span {

    color: #a1a7ae;

    font-size: 12px;

    font-weight: 900;

}


.pathway-top i {

    color: var(--issa-red);

    font-size: 25px;

}


.issa-pathway-card h3 {

    margin:
        55px 0 12px;

    color: #11151a;

    font-size: 25px;

    font-weight: 900;

}


.issa-pathway-card p {

    max-width: 360px;

    color: #727a83;

    font-size: 14px;

    line-height: 1.75;

}


.pathway-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 20px;

    color: var(--issa-red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   CPT CAREER PATH
========================================================= */

.issa-career-path {

    padding:
        120px 0;

    background:
        linear-gradient(
            180deg,
            #080a0d,
            #0d1116
        );

}


.issa-career-header {

    max-width: 780px;

    margin-bottom: 65px;

}


.issa-career-header h2 {

    color: #fff;

}


.issa-career-header p {

    margin-top: 22px;

    color: #7f8993;

    font-size: 16px;

    line-height: 1.8;

}


.career-timeline {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    position: relative;

}


.career-timeline::before {

    content: "";

    position: absolute;

    left: 10%;

    right: 10%;

    top: 38px;

    height: 1px;

    background:
        rgba(255,255,255,.12);

}


.career-step {

    position: relative;

    z-index: 2;

    padding: 0 18px;

    text-align: center;

}


.career-step-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 76px;

    height: 76px;

    margin:
        0 auto 28px;

    color: #fff;

    background: #0b0e13;

    border: 1px solid rgba(215,25,32,.55);

    border-radius: 50%;

    box-shadow:
        0 0 0 8px #0a0d11;

    font-size: 13px;

    font-weight: 900;

}


.career-step-content span {

    color: var(--issa-red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

}


.career-step-content h3 {

    margin:
        12px 0;

    color: #fff;

    font-size: 21px;

    font-weight: 800;

}


.career-step-content p {

    color: #78818b;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   CAREER CONNECT
========================================================= */

.issa-career-connect {

    padding:
        120px 0;

    background: #f4f5f6;

}


.career-connect-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.career-connect-content h2 {

    color: #11151a;

}


.career-connect-content h2 span {

    display: block;

    color: var(--issa-red);

}


.career-connect-content p {

    max-width: 600px;

    margin-top: 24px;

    color: #6d757e;

    font-size: 16px;

    line-height: 1.9;

}


.career-connect-features {

    padding: 15px;

    background: #fff;

    border: 1px solid #e3e5e8;

    box-shadow:
        0 25px 70px rgba(0,0,0,.08);

}


.career-connect-item {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px;

    border-bottom:
        1px solid #eceef0;

}


.career-connect-item:last-child {

    border-bottom: 0;

}


.career-connect-item > i {

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    color: var(--issa-red);

    background: rgba(215,25,32,.08);

    font-size: 18px;

}


.career-connect-item strong {

    display: block;

    color: #11151a;

    font-size: 15px;

}


.career-connect-item span {

    display: block;

    margin-top: 5px;

    color: #8a9198;

    font-size: 12px;

}


/* =========================================================
   ISSA × I-CHIMES
========================================================= */

.issa-ichimes {

    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #080a0d 0%,
            #0d1117 55%,
            #080a0d 100%
        );

    overflow: hidden;
}


/* SUBTLE RED GLOW */

.issa-ichimes::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.14),
            transparent 70%
        );

    pointer-events: none;
}


/* CONTENT */

.issa-partner-card {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    padding: 20px 0;

    text-align: center;

    background: transparent;

    border: 0;

    box-shadow: none;

}


/* ICON */

.partner-badge {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin: 0 auto 25px;

    color: var(--issa-gold);

    border: 1px solid rgba(245,182,46,.35);

    background: rgba(255,255,255,.025);

    font-size: 24px;

}


/* KICKER */

.issa-partner-card .issa-kicker {

    color: var(--issa-gold);

}


/* HEADING */

.issa-partner-card h2 {

    margin: 0;

    color: #ffffff;

}


.issa-partner-card h2 span {

    color: var(--issa-red);

}


/* DESCRIPTION */

.issa-partner-card > p {

    max-width: 720px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.68);

    font-size: 16px;

    line-height: 1.9;

}


/* POINTS */

.partner-points {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px 35px;

    margin: 32px 0;

}


.partner-points div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.78);

    font-size: 13px;

}


.partner-points i {

    color: var(--issa-red);

}


/* BUTTONS */

.partner-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

}

/* =========================================================
   FINAL CTA — LIGHT PREMIUM SECTION
========================================================= */

.issa-final-cta {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background: #ffffff;

}


/* SUBTLE RED ACCENT */

.issa-final-cta::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.055),
            transparent 68%
        );

    pointer-events: none;

}


/* CONTENT */

.issa-final-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


/* KICKER */

.issa-final-content .issa-kicker {

    color: var(--issa-red);

}


/* HEADING */

.issa-final-content h2 {

    color: #11151a;

}


.issa-final-content h2 span {

    color: var(--issa-red);

}


/* DESCRIPTION */

.issa-final-content p {

    max-width: 620px;

    margin: 24px auto 0;

    color: #6f7780;

    font-size: 17px;

    line-height: 1.8;

}


/* BUTTONS */

.issa-final-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;

}
/* FINAL CTA OUTLINE BUTTON */

.issa-final-cta .issa-btn-outline {

    color: #11151a;

    background: transparent;

    border: 1px solid #d5d8dc;

}


.issa-final-cta .issa-btn-outline:hover {

    color: #ffffff;

    background: var(--issa-red);

    border-color: var(--issa-red);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .issa-stats-grid,
    .issa-offer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .issa-pathway-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 991px) {

    .issa-hero {

        min-height: 760px;

        background-position:
            62% center;

    }


    .issa-hero-content {

        max-width: 600px;

        padding:
            90px 0;

    }


    .issa-intro-grid {

        grid-template-columns:
            1fr;

        gap: 25px;

    }


    .issa-section-label {

        display: flex;

        align-items: center;

        gap: 15px;

    }


    .issa-section-label span {

        font-size: 35px;

    }


    .career-timeline {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 55px 20px;

    }


    .career-timeline::before {

        display: none;

    }


    .career-connect-grid {

        grid-template-columns:
            1fr;

        gap: 50px;

    }


    .issa-partner-card {

        padding: 55px 35px;

    }

}


@media (max-width: 767px) {

    .issa-hero {

        min-height: 720px;

        background-position:
            68% center;

    }


    .issa-hero::before {

        background:
            linear-gradient(
                90deg,
                rgba(3,5,8,.88),
                rgba(3,5,8,.60)
            );

    }


    .issa-hero-content {

        padding:
            75px 0;

    }


    .issa-hero h1 {

        font-size: 50px;

        letter-spacing: -2px;

    }


    .issa-hero-lead {

        font-size: 16px;

    }


    .issa-hero-actions {

        align-items: stretch;

        flex-direction: column;

        max-width: 330px;

    }


    .issa-btn {

        width: 100%;

    }


    .issa-intro,
    .issa-vision,
    .issa-global,
    .issa-offers,
    .issa-pathways,
    .issa-career-path,
    .issa-career-connect,
    .issa-ichimes,
    .issa-final-cta {

        padding:
            85px 0;

    }


    .issa-heading h2,
    .issa-intro-content h2,
    .issa-career-header h2,
    .career-connect-content h2,
    .issa-partner-card h2,
    .issa-final-content h2 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .issa-stats-grid,
    .issa-offer-grid,
    .issa-pathway-grid {

        grid-template-columns:
            1fr;

    }


    .issa-stat-card {

        min-height: 210px;

    }


    .career-timeline {

        grid-template-columns:
            1fr;

    }


    .issa-vision-number {

        font-size: 110px;

        letter-spacing: -6px;

    }


    .issa-vision h2 {

        margin-top: -10px;

    }


    .issa-partner-card {

        padding:
            45px 22px;

    }


    .partner-points {

        align-items: flex-start;

        flex-direction: column;

        width: fit-content;

        margin-left: auto;

        margin-right: auto;

    }

}


@media (max-width: 480px) {

    .issa-hero h1 {

        font-size: 42px;

    }


    .issa-eyebrow {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .issa-heading h2,
    .issa-intro-content h2,
    .issa-career-header h2,
    .career-connect-content h2,
    .issa-partner-card h2,
    .issa-final-content h2 {

        font-size: 34px;

    }


    .issa-stat-card strong {

        font-size: 40px;

    }

}
/* =========================================================
   ISSA GLOBAL REACH — LIGHT SECTION
========================================================= */

.issa-global .issa-heading h2 {
    color: #11151a;
}

.issa-global .issa-heading h2 span {
    color: var(--issa-red);
}
/* =========================================================
   I-CHIMES FITNESS ACADEMY
   BLOG PAGE — ULTRA PREMIUM CSS
========================================================= */


/* =========================================================
   BLOG HERO
========================================================= */

.blog-hero {

    position: relative;

    padding: 150px 0 125px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f8fa 55%,
            #ffffff 100%
        );

    overflow: hidden;
}


.blog-hero-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.10),
            transparent 68%
        );

    filter: blur(30px);

    pointer-events: none;
}


.blog-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.blog-eyebrow {

    display: inline-block;

    margin-bottom: 25px;

    color: #D71920;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.blog-hero h1 {

    margin: 0;

    color: #11151a;

    font-size: clamp(52px, 6vw, 88px);

    font-weight: 900;

    line-height: .98;

    letter-spacing: -3px;
}


.blog-hero h1 span {

    display: block;

    color: #D71920;
}


.blog-hero p {

    max-width: 680px;

    margin: 30px 0 0;

    color: #68717b;

    font-size: 18px;

    line-height: 1.8;
}



/* =========================================================
   SHARED SECTION HEADING
========================================================= */

.section-heading {

    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;
}


.section-heading-left {

    max-width: 760px;

    margin-left: 0;

    text-align: left;
}


.section-kicker {

    display: block;

    margin-bottom: 15px;

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.section-heading h2,
.insights-value-content h2 {

    margin: 0;

    color: #11151a;

    font-size: clamp(40px, 4vw, 62px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.section-heading h2 span,
.insights-value-content h2 span {

    color: #D71920;
}


.section-heading p {

    max-width: 650px;

    margin: 22px auto 0;

    color: #727a83;

    font-size: 16px;

    line-height: 1.8;
}


.section-heading-left p {

    margin-left: 0;
}



/* =========================================================
   ISSA SOCIAL INSIGHTS
========================================================= */

.issa-social-insights {

    padding: 120px 0;

    background: #ffffff;
}


.insight-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.insight-card {

    position: relative;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    padding: 32px;

    border: 1px solid #e6e8eb;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.insight-card:hover {

    transform: translateY(-8px);

    border-color: rgba(215,25,32,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}


.insight-card-dark {

    background:
        linear-gradient(
            145deg,
            #101215,
            #171a1f
        );

    border-color: #24282d;
}


.insight-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}


.insight-number {

    color: #c6cbd0;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.insight-category {

    color: #D71920;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.insight-card h3 {

    margin: 0 0 18px;

    color: #15191d;

    font-size: 24px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -.5px;
}


.insight-card-dark h3 {

    color: #ffffff;
}


.insight-card p {

    margin: 0;

    color: #747c84;

    font-size: 14px;

    line-height: 1.75;
}


.insight-card-dark p {

    color: rgba(255,255,255,.62);
}


.insight-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: auto;

    padding-top: 28px;

    color: #D71920;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

    text-decoration: none;
}


.insight-link i {

    font-size: 10px;

    transition:
        transform .25s ease;
}


.insight-link:hover i {

    transform:
        translate(3px, -3px);
}



/* =========================================================
   LATEST ISSA
========================================================= */

.latest-issa {

    padding: 125px 0;

    background: #f5f6f7;
}


.article-list {

    border-top: 1px solid #dfe2e5;
}


.article-row {

    display: grid;

    grid-template-columns:
        70px
        150px
        1fr
        60px;

    align-items: center;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid #dfe2e5;

    transition:
        padding .3s ease;
}


.article-row:hover {

    padding-left: 12px;
}


.article-index {

    color: #c2c7cc;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.article-category {

    color: #D71920;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.article-content h3 {

    margin: 0 0 10px;

    color: #15191d;

    font-size: 23px;

    font-weight: 800;

    line-height: 1.25;
}


.article-content p {

    max-width: 760px;

    margin: 0;

    color: #727a83;

    font-size: 14px;

    line-height: 1.7;
}


.article-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    border: 1px solid #d8dce0;

    border-radius: 50%;

    color: #15191d;

    text-decoration: none;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.article-arrow:hover {

    background: #D71920;

    border-color: #D71920;

    color: #ffffff;

    transform: translateX(4px);
}



/* =========================================================
   INSIGHTS VALUE
========================================================= */

.insights-value {

    position: relative;

    padding: 125px 0;

    background:
        linear-gradient(
            135deg,
            #090b0e,
            #11151a
        );

    overflow: hidden;
}


.insights-value::before {

    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -220px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.13),
            transparent 68%
        );

    pointer-events: none;
}


.insights-value-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 90px;

    align-items: center;
}


.insights-value-content h2 {

    color: #ffffff;
}


.insights-value-content p {

    max-width: 570px;

    margin: 25px 0 32px;

    color: rgba(255,255,255,.64);

    font-size: 16px;

    line-height: 1.85;
}


.insights-value-content .section-kicker {

    color: #D71920;
}


.insights-value-grid-cards {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


.value-mini-card {

    min-height: 180px;

    padding: 28px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.035);

    transition:
        transform .3s ease,
        background .3s ease;
}


.value-mini-card:hover {

    transform: translateY(-5px);

    background: rgba(255,255,255,.06);
}


.value-mini-card > span {

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.value-mini-card h3 {

    margin: 22px 0 10px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;
}


.value-mini-card p {

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 1.7;
}



/* =========================================================
   PREMIUM BUTTONS
========================================================= */

.premium-red-btn,
.premium-dark-btn,
.premium-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


.premium-red-btn {

    background: #D71920;

    color: #ffffff;

    border: 1px solid #D71920;
}


.premium-red-btn:hover {

    background: #b9151b;

    border-color: #b9151b;

    color: #ffffff;

    transform: translateY(-2px);
}


.premium-dark-btn {

    background: #11151a;

    color: #ffffff;

    border: 1px solid #11151a;
}


.premium-dark-btn:hover {

    background: #D71920;

    border-color: #D71920;

    color: #ffffff;

    transform: translateY(-2px);
}


.premium-outline-btn {

    border: 1px solid rgba(255,255,255,.28);

    color: #ffffff;

    background: transparent;
}


.premium-outline-btn:hover {

    background: #D71920;

    border-color: #D71920;

    color: #ffffff;

    transform: translateY(-2px);
}



/* =========================================================
   FINAL BLOG CTA
========================================================= */

.blog-final-cta {

    padding: 120px 0;

    background: #ffffff;

    text-align: center;
}


.blog-final-content {

    max-width: 850px;

    margin: 0 auto;
}


.blog-final-content h2 {

    margin: 0;

    color: #11151a;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.blog-final-content h2 span {

    color: #D71920;
}


.blog-final-content p {

    max-width: 650px;

    margin: 25px auto 0;

    color: #727a83;

    font-size: 16px;

    line-height: 1.8;
}


.blog-final-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}



/* =========================================================
   BLOG RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .blog-hero {

        padding: 125px 0 100px;

    }


    .insight-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .insights-value-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .article-row {

        grid-template-columns:
            55px
            120px
            1fr
            50px;

        gap: 20px;

    }

}


@media (max-width: 767px) {

    .blog-hero {

        padding: 105px 0 80px;

    }


    .blog-eyebrow {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .blog-hero h1 {

        font-size: 46px;

        letter-spacing: -1.5px;

    }


    .blog-hero p {

        font-size: 15px;

        line-height: 1.7;

    }


    .issa-social-insights,
    .latest-issa,
    .insights-value,
    .blog-final-cta {

        padding: 85px 0;

    }


    .section-heading {

        margin-bottom: 45px;

    }


    .section-heading h2,
    .insights-value-content h2 {

        font-size: 42px;

    }


    .insight-grid {

        grid-template-columns: 1fr;

    }


    .insight-card {

        min-height: 330px;

    }


    .article-row {

        grid-template-columns: 40px 1fr 45px;

        gap: 14px;

        padding: 28px 0;

    }


    .article-category {

        display: none;

    }


    .article-content h3 {

        font-size: 19px;

    }


    .article-content p {

        font-size: 13px;

    }


    .article-arrow {

        width: 40px;

        height: 40px;

    }


    .insights-value-grid-cards {

        grid-template-columns: 1fr;

    }


    .blog-final-content h2 {

        font-size: 43px;

    }


    .blog-final-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .premium-red-btn,
    .premium-dark-btn {

        width: 100%;

    }

}


@media (max-width: 480px) {

    .blog-hero h1 {

        font-size: 39px;

    }


    .blog-hero-content {

        max-width: 350px;

    }


    .section-heading h2,
    .insights-value-content h2 {

        font-size: 36px;

    }


    .insight-card {

        padding: 26px;

    }


    .insight-card h3 {

        font-size: 22px;

    }


    .blog-final-content h2 {

        font-size: 36px;

    }

}
/* =========================================================
   I-CHIMES FITNESS ACADEMY
   CONTACT PAGE — ULTRA PREMIUM CSS
========================================================= */


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {

    position: relative;

    padding: 145px 0 120px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f6f7f8 55%,
            #ffffff 100%
        );

    overflow: hidden;
}


.contact-hero-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -220px;
    top: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.10),
            transparent 68%
        );

    filter: blur(30px);

    pointer-events: none;
}


.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;
}


.contact-eyebrow {

    display: inline-block;

    margin-bottom: 24px;

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.contact-hero h1 {

    margin: 0;

    color: #11151a;

    font-size: clamp(52px, 6vw, 88px);

    font-weight: 900;

    line-height: .98;

    letter-spacing: -3px;
}


.contact-hero h1 span {

    display: block;

    color: #D71920;
}


.contact-hero p {

    max-width: 680px;

    margin: 30px 0 0;

    color: #68717b;

    font-size: 18px;

    line-height: 1.8;
}



/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.contact-main {

    padding: 120px 0;

    background: #ffffff;
}


.contact-grid {

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information h2 {

    margin: 0;

    color: #11151a;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.contact-information h2 span {

    color: #D71920;
}


.contact-intro {

    max-width: 520px;

    margin: 25px 0 40px;

    color: #727a83;

    font-size: 16px;

    line-height: 1.85;
}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 18px 0;

    color: inherit;

    text-decoration: none;

    border-bottom: 1px solid #eceef0;
}


.contact-detail:last-child {

    border-bottom: 0;
}


.contact-detail-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    background: #f5f6f7;

    color: #D71920;

    font-size: 17px;
}


.contact-detail small {

    display: block;

    margin-bottom: 5px;

    color: #9aa1a8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-detail strong {

    display: block;

    color: #171b20;

    font-size: 14px;

    font-weight: 700;
}


.contact-detail:hover strong {

    color: #D71920;
}


/* =========================================================
   CONTACT TRUST
========================================================= */

.contact-trust {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-top: 38px;

    padding-top: 28px;

    border-top: 1px solid #eceef0;
}


.contact-trust-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    background: #11151a;

    color: #ffffff;

    font-size: 14px;
}


.contact-trust strong {

    display: block;

    color: #171b20;

    font-size: 14px;
}


.contact-trust p {

    margin: 5px 0 0;

    color: #7a828a;

    font-size: 12px;

    line-height: 1.6;
}



/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {

    padding: 50px;

    background:
        linear-gradient(
            145deg,
            #101216,
            #171a1f
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);
}


.form-kicker {

    display: block;

    margin-bottom: 14px;

    color: #D71920;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.contact-form-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: 38px;

    font-weight: 900;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.contact-form-header h2 span {

    display: block;

    color: #D71920;
}


.contact-form-header p {

    margin: 18px 0 35px;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.7;
}


.premium-contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;
}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {

    color: rgba(255,255,255,.72);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 15px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 0;

    outline: none;

    background: rgba(255,255,255,.045);

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .25s ease,
        background .25s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255,255,255,.35);
}


.form-group select {

    color: rgba(255,255,255,.7);
}


.form-group select option {

    color: #11151a;

    background: #ffffff;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #D71920;

    background: rgba(255,255,255,.065);
}


.form-group textarea {

    resize: vertical;

    min-height: 125px;
}


.contact-submit {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 16px 22px;

    border: 1px solid #D71920;

    background: #D71920;

    color: #ffffff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}


.contact-submit:hover {

    background: #b9151b;

    transform: translateY(-2px);
}


.form-note {

    margin: 0;

    color: rgba(255,255,255,.35);

    font-size: 10px;

    line-height: 1.6;

    text-align: center;
}



/* =========================================================
   HELP SECTION
========================================================= */

.contact-help {

    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #080a0d,
            #11151a
        );

    overflow: hidden;
}


.contact-help-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    left: -200px;

    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,25,32,.13),
            transparent 68%
        );
}


.contact-help-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


.contact-help-content .section-kicker {

    color: #D71920;
}


.contact-help-content h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 66px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.contact-help-content h2 span {

    color: #D71920;
}


.contact-help-content p {

    max-width: 650px;

    margin: 25px auto 32px;

    color: rgba(255,255,255,.62);

    font-size: 16px;

    line-height: 1.8;
}


.contact-light-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    border: 1px solid #D71920;

    background: #D71920;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.contact-light-btn:hover {

    background: #b9151b;

    color: #ffffff;

    transform: translateY(-2px);
}



/* =========================================================
   DISTRIBUTOR SECTION
========================================================= */

.contact-distributor {

    padding: 120px 0;

    background: #f5f6f7;
}


.distributor-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: center;
}


.distributor-content h2 {

    margin: 0;

    color: #11151a;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.distributor-content h2 span {

    display: block;

    color: #D71920;
}


.distributor-content p {

    max-width: 600px;

    margin: 25px 0 30px;

    color: #727a83;

    font-size: 16px;

    line-height: 1.85;
}


.contact-outline-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 23px;

    border: 1px solid #cdd1d5;

    color: #171b20;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.contact-outline-btn:hover {

    border-color: #D71920;

    background: #D71920;

    color: #ffffff;
}


.distributor-points {

    border-top: 1px solid #dfe2e5;
}


.distributor-point {

    display: grid;

    grid-template-columns:
        55px
        1fr;

    gap: 20px;

    padding: 28px 0;

    border-bottom: 1px solid #dfe2e5;
}


.distributor-point > span {

    color: #D71920;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.distributor-point h3 {

    margin: 0 0 8px;

    color: #171b20;

    font-size: 19px;

    font-weight: 800;
}


.distributor-point p {

    margin: 0;

    color: #777f87;

    font-size: 13px;

    line-height: 1.7;
}



/* =========================================================
   FINAL CONTACT CTA
========================================================= */

.contact-final {

    padding: 120px 0;

    background: #ffffff;

    text-align: center;
}


.contact-final-content {

    max-width: 850px;

    margin: 0 auto;
}


.contact-final-content h2 {

    margin: 0;

    color: #11151a;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;
}


.contact-final-content h2 span {

    color: #D71920;
}


.contact-final-content p {

    max-width: 650px;

    margin: 25px auto 0;

    color: #727a83;

    font-size: 16px;

    line-height: 1.8;
}


.contact-final-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}


.contact-red-btn,
.contact-dark-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease;
}


.contact-red-btn {

    background: #D71920;

    border: 1px solid #D71920;

    color: #ffffff;
}


.contact-red-btn:hover {

    background: #b9151b;

    border-color: #b9151b;

    color: #ffffff;

    transform: translateY(-2px);
}


.contact-dark-btn {

    background: #11151a;

    border: 1px solid #11151a;

    color: #ffffff;
}


.contact-dark-btn:hover {

    background: #D71920;

    border-color: #D71920;

    color: #ffffff;

    transform: translateY(-2px);
}



/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-hero {

        padding: 125px 0 100px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .distributor-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

}


@media (max-width: 767px) {

    .contact-hero {

        padding: 105px 0 80px;

    }


    .contact-eyebrow {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .contact-hero h1 {

        font-size: 46px;

        letter-spacing: -1.5px;

    }


    .contact-hero p {

        font-size: 15px;

        line-height: 1.7;

    }


    .contact-main,
    .contact-help,
    .contact-distributor,
    .contact-final {

        padding: 85px 0;

    }


    .contact-information h2,
    .distributor-content h2 {

        font-size: 42px;

    }


    .contact-form-wrapper {

        padding: 32px 24px;

    }


    .contact-form-header h2 {

        font-size: 32px;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-help-content h2 {

        font-size: 43px;

    }


    .contact-final-content h2 {

        font-size: 43px;

    }


    .contact-final-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .contact-red-btn,
    .contact-dark-btn {

        width: 100%;

    }

}


@media (max-width: 480px) {

    .contact-hero h1 {

        font-size: 39px;

    }


    .contact-information h2,
    .distributor-content h2 {

        font-size: 36px;

    }


    .contact-form-wrapper {

        padding: 28px 20px;

    }


    .contact-help-content h2,
    .contact-final-content h2 {

        font-size: 36px;

    }

}
/* ==========================================================
   SECTIONS
========================================================== */

.bg-black{

    background:#0b0b0b;

}

.bg-dark{

    background:#161616 !important;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#0d0d0d;

    border-top:3px solid #E31E24;

    padding-top:70px;

    padding-bottom:30px;

}

.footer-logo{

    width:320px;

    max-width:120%;

    height:auto;

    display:block;

    margin-bottom:0;

    transition:.4s ease;

}
.footer-logo-wrapper{

    position:relative;

    display:inline-block;

    overflow:hidden;

    border-radius:8px;

}
.logo-shine{

    position:absolute;

    top:0;

    left:-80%;

    width:45%;

    height:100%;

    background:linear-gradient(
        115deg,
        transparent 0%,
        rgba(255,255,255,.15) 40%,
       rgba(227,30,36,.45) 50%,
        rgba(255,255,255,.15) 60%,
        transparent 100%
    );

    transform:skewX(-25deg);

    transition:0s;

    pointer-events:none;

}
.footer-logo-wrapper:hover .logo-shine{

    animation:logoShine .9s ease;

}

.footer-logo-wrapper:hover .footer-logo{

    transform:scale(1.03);

    filter:drop-shadow(0 0 12px rgba(227,30,36,.35));

}
@keyframes logoShine{

    0%{

        left:-80%;

    }

    100%{

        left:140%;

    }

}
.footer-logo-wrapper:hover{

    transform:translateY(-4px) scale(1.03);

    filter:
        drop-shadow(0 0 8px rgba(227,30,36,.35))
        drop-shadow(0 0 20px rgba(227,30,36,.20));

}
.footer-brand{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.footer-badge{

    margin:10px 0 15px;

    color:#E31E24;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:700;

}

.footer-badge i{

    color:#E31E24;

}
.footer-issa{

    color:#E31E24;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

    margin-top:18px;

    margin-bottom:18px;

}

.footer-tagline{

    color:#bfbfbf;

    line-height:1.9;

    font-size:16px;

    margin-top:20px;

    max-width:340px;

}

footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:25px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#E31E24;

    padding-left:6px;

}

footer p{

    color:#d0d0d0;

}

footer i{

    color:#E31E24;

}

.social-icons{

    margin-top:30px;

}

.social-icons a{

    width:46px;

    height:46px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:1px solid #444;

    border-radius:50%;

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#E31E24;

    border-color:#E31E24;

    transform:translateY(-5px);

}

footer hr{

    border-color:#333;

    margin:40px 0 20px;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* ==========================
   TABLETS
========================== */
@media (max-width:991px){

    .logo{
        height:70px;
    }

    .navbar{
        padding:10px 0;
    }

    .nav-link{
        margin-left:0;
        padding:10px 0;
        text-align:center;
    }

    .hero{
        min-height:85vh;
        background-position:72% center;
    }

    section{
        padding:70px 0;
    }

}


/* ==========================
   MOBILE
========================== */
@media (max-width:768px){

    h1{
        font-size:2.2rem;
    }

    h2{
        font-size:1.8rem;
    }

    .hero{
        min-height:75vh;
        background-position:74% center;
    }

    /* Hero Buttons */
    .hero-buttons{

        left:50%;
        bottom:4%;
        transform:translateX(-50%);
        width:90%;
        text-align:center;

    }

    .hero-buttons .btn{

        display:block;
        width:100%;
        margin:10px 0;

    }

    .feature-box{
        margin-bottom:25px;
    }

    .card{
        margin-bottom:25px;
    }

}


/* ==========================
   SMALL PHONES
========================== */
@media (max-width:576px){

    .logo{
        height:60px;
    }

    .hero{
        min-height:65vh;
        background-position:78% center;
    }

    .hero-buttons{

        bottom:3%;
        width:92%;

    }

    .hero-buttons .btn{

        font-size:15px;
        padding:12px 20px;

    }

    .btn-danger,
    .btn-light{

        width:100%;
        margin-bottom:10px;

    }

}
/* =========================================================
   MOBILE HEADER → HERO GAP FIX
========================================================= */

@media (max-width: 991px) {

    .site-header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .site-header .navbar {
        margin-bottom: 0 !important;
    }

    .site-header + section {
        margin-top: 0 !important;
    }

    .site-header + .courses-hero,
    .site-header + .issa-hero {
        margin-top: 0 !important;
    }

}
/* =========================================================
   HEADER SPACER
========================================================= */

.header-spacer {
    height: 90px;
}


/* =========================================================
   MOBILE HEADER SPACER
========================================================= */

@media (max-width: 991px) {

    .header-spacer {
        height: 70px;
    }

}
/* =========================================================
   HOME HERO — PREMIUM MOBILE BUTTONS
========================================================= */

@media (max-width: 767px) {

    .hero-buttons {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        width: calc(100% - 40px);

        max-width: 340px;

        margin: 0 auto;

    }


    .hero-buttons .btn {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        min-height: 54px;

        margin: 0 !important;

        padding: 15px 20px;

        border-radius: 2px;

        font-size: 12px;

        font-weight: 800;

        letter-spacing: 1px;

        text-transform: uppercase;

        transition:
            transform .3s ease,
            background .3s ease,
            border-color .3s ease,
            box-shadow .3s ease;

    }


    /* PRIMARY */

    .hero-buttons .btn-danger {

        background: #D71920;

        border-color: #D71920;

        color: #ffffff;

        box-shadow:
            0 10px 28px rgba(215,25,32,.22);

    }


    .hero-buttons .btn-danger:hover {

        background: #b9151b;

        border-color: #b9151b;

        color: #ffffff;

        transform: translateY(-2px);

    }


    /* SECONDARY */

    .hero-buttons .btn-outline-light {

        background: rgba(0,0,0,.20);

        border: 1px solid rgba(255,255,255,.65);

        color: #ffffff;

        backdrop-filter: blur(6px);

    }


    .hero-buttons .btn-outline-light:hover {

        background: #ffffff;

        border-color: #ffffff;

        color: #11151a;

        transform: translateY(-2px);

    }


    .hero-buttons .btn i {

        font-size: 12px;

    }

}
/* =========================================================
   MOBILE NAVIGATION — HIDE HEADER APPLY BUTTON
========================================================= */

@media (max-width: 991px) {

    .header-apply-btn {
        display: none !important;
    }

}

/* ==========================================================
   PROGRAM PAGE HERO — BANNER DISPLAY
========================================================== */

.program-hero {
    position: relative;
    min-height: 650px !important;
    margin-top: 0 !important;
    overflow: hidden !important;
}


/* ==========================================================
   PROGRAM HERO IMAGE
========================================================== */

.program-hero-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background-size: 100% auto !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 0 !important;
}


/* ==========================================================
   PROGRAM HERO OVERLAY
========================================================== */

.program-hero::before {
    background:
        linear-gradient(
            90deg,
            rgba(5,7,9,.96) 0%,
            rgba(5,7,9,.72) 40%,
            rgba(5,7,9,.10) 72%,
            rgba(5,7,9,0) 100%
        ) !important;

    z-index: 1 !important;
}


/* ==========================================================
   PROGRAM HERO CONTENT
========================================================== */

.program-hero-content {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   PERSONAL TRAINING PROGRAMS
========================================================== */

/* Certified Personal Trainer */

.program-certified-personal-trainer .program-hero-image {
    background-position: center 200% !important;
}


/* Fitness Coach */

.program-fitness-coach .program-hero-image {
    background-position: center -300% !important;
}


/* Elite Trainer */

.program-elite-trainer .program-hero-image {
    background-position: center -275% !important;
}


/* Master Trainer */

.program-master-trainer .program-hero-image {
    background-position: center -250% !important;
}


/* ==========================================================
   PROGRAMS USING STANDARD TOP POSITION
========================================================== */

.program-group-exercise-instructor .program-hero-image,
.program-group-excercise-instructor .program-hero-image,

.program-nutrition-coach .program-hero-image,
.program-weight-management-specialist .program-hero-image,
.program-health-coach .program-hero-image,

.program-certified-pilates-instructor .program-hero-image,

.program-group-personal-training .program-hero-image,

.program-tai-chi-basic-certification .program-hero-image,

.program-fitness-influencer-mini-course .program-hero-image,

.program-transformation-specialist .program-hero-image,

.program-functional-aging-specialist-certification .program-hero-image,

.program-senior-fitness-instructor .program-hero-image,

.program-dna-based-fitness-coach .program-hero-image,

.program-certified-glute-specialist .program-hero-image,

.program-performance-enhancement .program-hero-image,

.program-strength-and-conditioning .program-hero-image,

.program-corrective-exercise-specialist .program-hero-image,

.program-exercise-recovery-specialist .program-hero-image {
    background-size: 100% auto !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
}


/* ==========================================================
   EXERCISE RECOVERY SPECIALIST
   DIRECT IMAGE
========================================================== */

.program-exercise-recovery-specialist .program-hero-direct-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center top !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    z-index: 0 !important;
}


/* ==========================================================
   GLP-1 WEIGHT LOSS COACH
   DIRECT IMAGE
========================================================== */

.program-glp-1-weight-loss-coach .glp1-hero-image {
    position: absolute !important;
    inset: 0 !important;

    overflow: hidden !important;
    background: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 0 !important;
}

.program-glp-1-weight-loss-coach .glp1-hero-image img {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: auto !important;

    max-width: none !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* ==========================================================
   DNA-BASED FITNESS COACH
   SPECIAL DESKTOP TREATMENT
========================================================== */

.program-dna-based-fitness-coach .program-hero {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

.program-dna-based-fitness-coach .program-hero-image {
    position: absolute !important;
    inset: 0 !important;

    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    opacity: 1 !important;
}


/* ==========================================================
   PROGRAM CONTENT SPACING
========================================================== */

.program-content {
    padding-top: 55px !important;
    padding-bottom: 90px !important;
}


/* ==========================================================
   PROGRAM HERO — MOBILE
========================================================== */

@media (max-width: 767px) {

    .program-hero {
        position: relative !important;

        min-height: 650px !important;
        height: 650px !important;

        margin-top: 0 !important;

        overflow: hidden !important;
    }


    /* ALL PROGRAM BANNERS */

    .program-hero .program-hero-image {
        position: absolute !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background-size: cover !important;
        background-position: 70% center !important;
        background-repeat: no-repeat !important;

        opacity: 1 !important;
        visibility: visible !important;

        z-index: 0 !important;
    }


    /* OVERLAY */

    .program-hero::before {
        z-index: 1 !important;
    }


    /* CONTENT */

    .program-hero-content {
        position: relative !important;
        z-index: 2 !important;
    }


    /* DIRECT IMAGE PROGRAMS */

    .program-hero .program-hero-direct-image {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: 70% center !important;

        display: block !important;

        opacity: 1 !important;
        visibility: visible !important;

        z-index: 0 !important;
    }


    /* GLP-1 DIRECT IMAGE */

    .program-glp-1-weight-loss-coach .glp1-hero-image img {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: auto !important;

        max-width: none !important;
    }

}


/* ==========================================================
   VERY SMALL PHONES
========================================================== */

@media (max-width: 480px) {

    .program-hero {
        min-height: 620px !important;
        height: 620px !important;
    }

    .program-hero .program-hero-image {
        background-position: 70% center !important;
    }

    .program-hero .program-hero-direct-image {
        object-position: 70% center !important;
    }

}


/* ==========================================================
   HOMEPAGE HERO BUTTONS
========================================================== */

.hero-buttons {
    position: absolute;

    left: 3%;
    bottom: 5%;

    z-index: 10;

    display: flex;
    align-items: center;
    gap: 14px;
}


.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: 3px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .7px;

    text-transform: uppercase;
    text-decoration: none;

    transition: all .3s ease;
}


/* ==========================================================
   EXPLORE PROGRAMS
========================================================== */

.hero-buttons .btn-danger {
    background: #E31E24;
    border: 1px solid #E31E24;
    color: #ffffff;
}

.hero-buttons .btn-danger:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;

    transform: translateY(-2px);
}


/* ==========================================================
   BUTTON ARROW
========================================================== */

.button-arrow {
    margin-left: 10px;

    font-size: 17px;
    line-height: 1;
}


/* ==========================================================
   APPLY NOW
========================================================== */

.hero-buttons .btn-outline-light {
    background: rgba(0,0,0,.25);

    border: 1px solid rgba(255,255,255,.7);

    color: #ffffff;
}

.hero-buttons .btn-outline-light:hover {
    background: #E31E24;
    border-color: #E31E24;
    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================================
   HOMEPAGE HERO BUTTONS — MOBILE
========================================================== */

@media (max-width: 767px) {

    .hero-buttons {
        left: 18px !important;
        right: auto !important;
        bottom: 20px !important;

        transform: none !important;

        width: auto !important;
        max-width: none !important;

        margin: 0 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        gap: 8px !important;
    }


    .hero-buttons .btn {
        width: auto !important;

        min-height: 38px !important;

        margin: 0 !important;

        padding: 7px 12px !important;

        font-size: 9px !important;
        line-height: 1.2 !important;

        white-space: nowrap;
    }


    .button-arrow {
        margin-left: 5px;

        font-size: 12px;
    }

}
/* ==========================================================
   COURSES — PROGRAM CARD IMAGES
========================================================== */

.cert-card {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.cert-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.cert-card-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    opacity: 1 !important;
    visibility: visible !important;

    position: relative;
    z-index: 1;

    transition: transform .6s ease;
}

.cert-card-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.30) 100%
        );

    pointer-events: none;
}

.cert-card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 30px 32px 32px;
}

.cert-card-type {
    align-self: flex-start;

    display: inline-block;

    margin-bottom: 16px;

    padding: 6px 11px;

    border-radius: 50px;

    background: rgba(215,25,32,.08);
    color: #D71920;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    line-height: 1.2;
}

.cert-card-content h4 {
    margin-bottom: 14px;
}

.cert-card-content p {
    margin-bottom: 20px;
}

.cert-card-level {
    display: flex;
    align-items: center;

    gap: 8px;
    margin-bottom: 22px;

    color: #777;

    font-size: 13px;
    font-weight: 600;
}

.cert-card-level i {
    color: #D71920;
}

.cert-card-link {
    margin-top: auto;
    width: fit-content;
}

.cert-card:hover .cert-card-image img {
    transform: scale(1.06);
}


/* ==========================================================
   COURSE CARD IMAGES — MOBILE
========================================================== */

@media (max-width: 767px) {

    .cert-card-image {
        height: 200px;
    }

    .cert-card-content {
        padding: 25px 24px 28px;
    }

}


/* ==========================================================
   COURSE CARD IMAGE — VISIBILITY SAFETY
========================================================== */

.cert-card-image {
    position: relative !important;
    overflow: hidden !important;
    background: #111 !important;
}

.cert-card-image img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ==========================================================
   HOMEPAGE HERO BUTTONS — VERY SMALL PHONES
========================================================== */

@media (max-width: 480px) {

    .hero-buttons {
        left: 14px !important;
        bottom: 18px !important;

        gap: 6px !important;
    }

    .hero-buttons .btn {
        min-height: 36px !important;

        padding: 6px 10px !important;

        font-size: 8px !important;
    }

    .button-arrow {
        margin-left: 4px;
        font-size: 11px;
    }

}