.hero-banner{
    background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 45%, #ede9fe 100%);
    min-height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e9d5ff;
}

/* Soft background circles */
.hero-banner::before,
.hero-banner::after{
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    filter: blur(10px);
}

.hero-banner::before{
    width: 180px;
    height: 180px;
    top: -50px;
    left: -50px;
}

.hero-banner::after{
    width: 220px;
    height: 220px;
    bottom: -70px;
    right: -70px;
}

.hero-overlay{
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-content{
    max-width: 720px;
    margin: auto;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero-content h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #6b21a8;
    position: relative;
    display: inline-block;
}

.hero-content h1::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #c084fc, #a855f7);
    border-radius: 50px;
}

.hero-content p{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #7e22ce;
    font-weight: 400;
}

.breadcrumb-box{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    border: 1px solid #e9d5ff;
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.08);
}

.breadcrumb-box a{
    color: #7e22ce;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.breadcrumb-box a:hover{
    color: #a855f7;
}

.breadcrumb-box span{
    color: #9333ea;
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-banner{
    padding: 40px 20px;
    min-height: 220px;
}

.hero-content{
    padding-top: 10px;
}
/* Heading */
.hero-content h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;   /* black text */
    position: relative;
    display: inline-block;
}

/* Subtitle */
.hero-content p{
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #374151;   /* dark gray */
    font-weight: 400;
}

/* Breadcrumb */
.breadcrumb-box a{
    color: #111827;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.breadcrumb-box a:hover{
    color: #000000;
}

.breadcrumb-box span{
    color: #374151;
}

/* Trainer card heading */
.trainer-card h4{
    color: #111827;
    font-weight: 700;
    margin-top: 14px;
    font-size: 24px;
}

/* Trainer card text */
.trainer-card p{
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 18px;
}
/* Tablet */
@media(max-width:992px){

    .hero-banner{
        min-height: 210px;
    }

    .hero-content h1{
        font-size: 34px;
    }

    .hero-content p{
        font-size: 14px;
    }
}

/* Mobile */
@media(max-width:576px){

    .hero-banner{
        min-height: 190px;
        padding: 30px 15px;
    }

    .hero-content h1{
        font-size: 26px;
    }

    .hero-content p{
        font-size: 13px;
        line-height: 1.5;
    }

    .breadcrumb-box{
        font-size: 11px;
        padding: 7px 14px;
    }
}
.contact-map-section {
    width: 100%;
    height: 350px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .contact-map-section {
        height: 300px;
    }
}
.container {
    max-width: 1200px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.card-body p {
    color: #6c757d;
    font-size: 14px;
}

.pagination {
    gap: 5px;
}

.page-item .page-link {
    border-radius: 8px;
    padding: 8px 14px;
    color: #333;
    transition: 0.3s;
}

.page-item.active .page-link {
    background: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    color: white;
}

.page-item .page-link:hover {
    background: rgb(0, 0, 0);
    color: white;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 992px) {
    .col-md-3 {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        width: 100%;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}