
.widget-heading {
    font-size: 18px !important;
    font-weight: bold;
}

.stake-img {
    border-radius: 20px;
}

.stake-title {
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .stake-title {
        font-size: 1.8rem;
    }

    .stake-img {
        max-height: 360px;
        object-fit: cover;
    }
}

.brand-logos img {
    height: 150px;
    width: auto; /* keeps aspect ratio */
    object-fit: contain;
}

.packages-section h2 {
    color: #121b46;
    line-height: 1.1;
}

.training-card {
    background: #f5f7fb; /* light, similar to your screenshot */
    border-radius: 20px;
}

.training-img {
    height: 200px; /* adjust to taste (e.g., 220px) */
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.training-card p {
    color: #1b2a57;
}

.training-card .btn-get-started {
    border-radius: 999px;
    padding: 8px 18px;
}

@media (max-width: 991.98px) {
    .training-img {
        height: 180px;
    }
}

.training-img {
    height: 220px; /* all images will have the same height */
    width: 100%;
    object-fit: cover; /* crops edges to fill the space without distortion */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.results-section h2 {
    color: #121b46;
    line-height: 1.1;
}

/* Outer rounded pill */
.results-shell {
    background: #f4f6f9;
    border-radius: 32px;
    padding: 32px 24px;
    max-width: 980px;
}

/* Inner card */
.result-card {
    background: #fff;
    border-radius: 12px;
    margin: 0 auto;
    padding: 28px 28px 22px;
    max-width: 760px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.result-card blockquote {
    font-style: italic;
    color: #2a3359;
    margin: 0 0 16px 0;
}

.result-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #7c859f;
}

.result-card figcaption strong {
    color: #121b46;
}

/* Swiper sizing */
.results-swiper {
    padding: 8px 48px;
}

.swiper-button-prev, .swiper-button-next {
    color: #121b46;
}

.swiper-pagination-bullet-active {
    background: #121b46;
}

@media (max-width: 991.98px) {
    .results-shell {
        border-radius: 24px;
        padding: 24px 16px;
    }

    .result-card {
        max-width: 100%;
        padding: 22px 18px;
    }

    .results-swiper {
        padding: 8px 32px;
    }
}

.section-content {
    padding-top: 20px;
}

/* Hero sizing: no white gaps on mobile */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: overlay for contrast */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
    z-index: 1;
}

/* Heights per breakpoint */
@media (max-width: 575.98px) {
    .page-hero {
        height: 200px;
    }

    .section {
        padding-top: 20px;
    }
}

@media (min-width: 576px) {
    .page-hero {
        height: 280px;
    }
}


.floating-call {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00BFDC;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-call i {
    font-size: 18px;
}

.floating-call span {
    line-height: 1.2;
    font-size: 14px;
}

.floating-call:hover {
    background-color: #00a9c4;
    color: #fff;
    transform: translateY(-50%) translateX(-5px);
}


.floating-whatsapp {
    position: fixed;
    right: 0;
    top: calc(50% + 70px); /* pushes it below call button */
    transform: translateY(-50%);
    background-color: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 18px;
}

.floating-whatsapp span {
    line-height: 1.2;
    font-size: 14px;
}

.floating-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
    transform: translateY(-50%) translateX(-5px);
}

@media (max-width: 768px) {

    .floating-call,
    .floating-whatsapp {
        padding: 16px;
        border-radius: 50%;
        right: 15px;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-call span,
    .floating-whatsapp span {
        display: none;
    }

    .floating-call i,
    .floating-whatsapp i {
        font-size: 20px;
    }

    .floating-call {
        top: 50%;
    }

    .floating-whatsapp {
        top: calc(50% + 75px);
    }
}

.service-pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background-color: #00BFDC;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.service-pill:hover {
    background-color: #009bb3;
    transform: translateY(-2px);
    color: #fff;
}