body{

    margin:0;

    font-family:Arial,sans-serif;

}

.site-header{

    background:#0A7C4A;

    color:white;

    padding:20px;

}

.site-footer{

    background:#222;

    color:white;

    padding:20px;

    margin-top:50px;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.skip-link{

position:absolute;

left:-9999px;

}

.skip-link:focus{

left:20px;

top:20px;

background:#fff;

color:#000;

padding:10px;

z-index:9999;

}

.container{

width:min(1200px,90%);

margin:auto;

}

.program-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.trainer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:25px;

}

/* front-page */
.hero{
    background:#0A7C4A;
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#fff;
    color:#0A7C4A;
    padding:12px 30px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.latest-posts{
    padding:60px 0;
}

.post-card{
    border:1px solid #ddd;
    padding:20px;
    margin-bottom:20px;
    border-radius:8px;
}

.site-header{
    position: sticky;
    top:0;
    z-index:999;
    background:#fff;
}

.navbar-brand img{
    max-height:70px;
    width:auto;
}

.navbar-nav{
    gap:15px;
}

.navbar-nav li{
    list-style:none;
}

.navbar-nav li a{
    color:#222;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    padding:10px 15px;
    transition:.3s;
}

.navbar-nav li a:hover,
.navbar-nav .current-menu-item>a{
    color:#0d6efd;
}

@media(max-width:991px){

    .navbar-nav{
        gap:0;
        margin-top:15px;
    }

    .navbar-nav li a{
        display:block;
        padding:12px 0;
    }

}

.hero{
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(17,115,63,.80), rgba(17,115,63,.80)),
                url('../images/hero.jpg') center center/cover no-repeat;
    padding: 120px 0;
}

.hero .container{
    max-width: 850px;
}

.hero h1{
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p{
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    margin-bottom: 35px;
}

.hero .btn{
    display:inline-block;
    background:#fff;
    color:#11733f;
    padding:16px 40px;
    font-size:18px;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}


.hero .btn:hover{
    background:#11733f;
    color:#fff;
    border:2px solid #fff;
}


@media (max-width:991px){

    .hero{
        min-height:70vh;
        padding:80px 0;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:18px;
    }

}

@media (max-width:767px){

    .hero{
        min-height:60vh;
        padding:70px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .hero .btn{
        padding:14px 28px;
        font-size:16px;
    }

}

.programs{
    padding:100px 0;
    background:#f8f9fa;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.program-card{
    background:#fff;
    padding:35px 30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.program-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.program-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#198754;
    font-weight:700;
}

.program-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.program-card .btn{
    padding:12px 28px;
    border-radius:6px;
    font-weight:600;
}

@media(max-width:768px){

    .programs{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }

    .program-card{
        padding:25px;
    }

    .program-card h3{
        font-size:24px;
    }

}

.trainers{
    padding:100px 0;
    background:#ffffff;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

.trainer-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    padding-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.trainer-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.trainer-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.trainer-card h3{
    margin-top:25px;
    font-size:28px;
    color:#222;
    font-weight:700;
}

.trainer-card span{
    display:block;
    color:#198754;
    font-weight:600;
    margin:10px 0;
}

.trainer-card p{
    color:#666;
    padding:0 25px;
    line-height:1.7;
    margin-bottom:25px;
}

.trainer-card .btn{
    padding:12px 28px;
    border-radius:6px;
}

@media(max-width:768px){

    .trainers{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .trainer-card img{
        height:260px;
    }

    .trainer-card h3{
        font-size:24px;
    }

}

.blogs{
    padding:100px 0;
    background:#f8f9fa;
}

.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-date{
    color:#198754;
    font-size:14px;
    font-weight:600;
}

.blog-content h3{
    margin:15px 0;
    font-size:24px;
    line-height:1.4;
}

.blog-content h3 a{
    color:#222;
    text-decoration:none;
}

.blog-content h3 a:hover{
    color:#198754;
}

.blog-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.blog-content .btn{
    padding:10px 25px;
    border-radius:6px;
}

.cta{
    padding:100px 0;
    background:linear-gradient(135deg,#198754,#146c43);
    color:#fff;
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:0 auto;
}

.cta h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.cta p{
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    margin-bottom:35px;
}

.cta .btn{
    background:#fff;
    color:#198754;
    font-size:18px;
    font-weight:600;
    padding:15px 40px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.cta .btn:hover{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

@media (max-width:768px){

    .cta{
        padding:70px 20px;
    }

    .cta h2{
        font-size:34px;
    }

    .cta p{
        font-size:17px;
    }

    .cta .btn{
        padding:14px 30px;
        font-size:16px;
    }

}

/* Default css */
main{
    padding:60px 0;
}

h1{
    margin-bottom:20px;
}

a{
    color:#0A7C4A;
}

hr{
    margin:30px 0;
}

/* page-trainer */
.page-header{

text-align:center;

margin:60px 0;

}

.trainer-filter{

margin-bottom:40px;

}

.trainer-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.trainer-card{

border:1px solid #ddd;

padding:20px;

text-align:center;

border-radius:10px;

}

.trainer-card img{

width:100%;

height:250px;

object-fit:cover;

border-radius:10px;

}

/* header-footer */
.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.primary-menu{
    list-style:none;
    display:flex;
    gap:25px;
    margin:0;
    padding:0;
}

.primary-menu li{
    display:inline-block;
}

.primary-menu a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
}

.footer-menu{
    list-style:none;
    display:flex;
    gap:20px;
    justify-content:center;
    padding:0;
}

.footer-menu a{
    color:#fff;
    text-decoration:none;
}

@media(max-width:768px){

.header-wrapper{

flex-direction:column;

}

.primary-menu{

flex-direction:column;

}

.hero h1{

font-size:35px;

}

}

/* trainer - page */
.trainer-pagination{
    margin-top:50px;
    display:flex;
    justify-content:center;
}

.trainer-pagination ul{
    display:flex;
    gap:10px;
    list-style:none;
    padding:0;
}

.trainer-pagination a,
.trainer-pagination span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border:1px solid #ddd;
    border-radius:6px;
    text-decoration:none;
    color:#333;
}

.trainer-pagination .current{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
}

.trainer-pagination .prev,
.trainer-pagination .next{
    width:auto;
    padding:0 15px;
}

/* footer */
.site-footer{
    background:#111827;
    color:#fff;
    padding:70px 0 20px;
}

.footer-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.site-footer p{
    color:#d1d5db;
    line-height:1.8;
}

.footer-menu{
    padding:0;
    margin:0;
}

.footer-menu li{
    list-style:none;
    margin-bottom:12px;
}

.footer-menu li a{
    color:#d1d5db;
    text-decoration:none;
    transition:.3s;
}

.footer-menu li a:hover{
    color:#22c55e;
    padding-left:6px;
}

.site-footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

.footer-bottom p{
    margin:0;
    color:#9ca3af;
    font-size:15px;
}
/* program-single */
.single-program h1{
margin-bottom:15px;
}

.program-sidebar{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
position:sticky;
top:100px;
}

.program-sidebar p{
margin-bottom:15px;
}

.program-card{
padding:20px;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.08);
border-radius:10px;
height:100%;
}

.program-card img{
width:100%;
height:220px;
object-fit:cover;
}
/* program page css */
.program-page{
    padding:60px 0;
}

.program-hero{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.program-hero__tag{
    display:inline-block;
    background:#22c55e;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
}

.program-hero__title{
    font-size:48px;
    margin-bottom:15px;
}

.program-hero__description{
    max-width:700px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.8;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:60px;
}

.program-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.program-card:hover{
    transform:translateY(-8px);
}

.program-card img{
    width:100%;
    display:block;
}

.program-card__content{
    padding:25px;
}

.program-card__category{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;
}

.program-card__title{
    font-size:24px;
    margin-bottom:10px;
}

.program-card__title a{
    text-decoration:none;
    color:#111827;
}

.program-card__excerpt{
    color:#6b7280;
    margin-bottom:20px;
}

.program-card__meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    font-size:14px;
}

.program-card__footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.program-card__price{
    font-size:22px;
    color:#16a34a;
}

.program-cta{
    margin-top:80px;
    background:#111827;
    color:#fff;
    padding:70px 20px;
    border-radius:18px;
    text-align:center;
}

.program-cta h2{
    font-size:40px;
    margin-bottom:15px;
}

.program-cta p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.program-cta__buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:768px){

.program-hero__title{
font-size:34px;
}

.program-grid{
grid-template-columns:1fr;
}

.program-card__footer{
flex-direction:column;
gap:15px;
align-items:flex-start;
}

}

/* blog page css */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-content{
    padding:20px;
}

.blog-date{
    font-size:14px;
    color:#777;
}

.blog-card h3{
    margin:12px 0;
}

.blog-pagination{
    margin-top:50px;
    text-align:center;
}
/* single page */
.single-content{
    padding:80px 0;
}

.single-thumbnail{
    margin-bottom:30px;
}

.single-thumbnail img{
    width:100%;
    border-radius:12px;
}

.entry-content{
    line-height:1.8;
}

.entry-content h2,
.entry-content h3{
    margin-top:30px;
}

.post-navigation{
    display:flex;
    justify-content:space-between;
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #ddd;
}
/* single trainer */
.single-trainer{
    padding-bottom:80px;
}

.trainer-details{
    padding:80px 0;
}

.trainer-layout{
    display:grid;
    grid-template-columns:400px 1fr;
    gap:50px;
    align-items:start;
}

.trainer-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.trainer-content p{
    margin-bottom:18px;
}

.trainer-description{
    margin:30px 0;
    line-height:1.8;
}

@media(max-width:768px){

.trainer-layout{

grid-template-columns:1fr;

}

}