
.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;
    }

}


/* About Us */

.about-us-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-us-content h2 {
    color: #1f1f1f;
}

.about-us-content p {
    color: #555;
    line-height: 1.8;
}

.about-us-image-wrap {
    overflow: hidden;
    border-radius: 24px;
}

.about-us-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #1f1f1f;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-feature-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.about-feature-card i {
    font-size: 1.6rem;
    color: #DEB56C;
    margin-bottom: 12px;
    display: inline-block;
}

.about-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f1f1f;
}

.about-feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.about-cta-banner {
    margin-top: 24px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-cta-banner h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-cta-btn {
    display: inline-block;
    background: #DEB56C;
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}

.about-cta-btn:hover {
    background: #c89d4f;
    color: #fff;
}

@media (max-width: 991px) {
    .about-cta-banner {
        text-align: center;
    }

    .about-cta-btn {
        width: 100%;
    }
}


/** FAQ*/

#faqs h2 {
    color: #1f1f1f;
}

#faqs hr {
    border: 0;
    height: 3px;
    background: #DEB56C;
    opacity: 1;
    border-radius: 999px;
    margin-bottom: 40px;
}

#faqs .accordion-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

#faqs .accordion-button {
    background: #ffffff;
    color: #1f1f1f;
    font-weight: 700;
    font-size: 1rem;
    padding: 22px 24px;
    box-shadow: none;
    border: none;
}

#faqs .accordion-button:not(.collapsed) {
    background: #fffaf1;
    color: #1f1f1f;
    box-shadow: none;
}

#faqs .accordion-button:focus {
    box-shadow: none;
    border: none;
}

#faqs .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(74%) sepia(33%) saturate(562%) hue-rotate(357deg) brightness(95%) contrast(88%);
}

#faqs .accordion-body {
    padding: 0 24px 24px 24px;
    color: #555;
    line-height: 1.8;
    background: #fffaf1;
}

#faqs .accordion-collapse {
    border-top: 1px solid #f1e4c8;
}

#faqs .accordion-item:hover {
    transform: translateY(-2px);
    transition: 0.3s ease;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
    #faqs .accordion-button {
        font-size: 0.95rem;
        padding: 18px 18px;
    }

    #faqs .accordion-body {
        padding: 0 18px 18px 18px;
    }
}


/** Products **/

#products-preview {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.products-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #DEB56C;
    margin-bottom: 12px;
}

.products-preview h2 {
    color: #1f1f1f;
}

.products-intro {
    max-width: 760px;
    color: #666;
    line-height: 1.8;
}

.product-feature-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.product-feature-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.product-feature-content {
    padding: 32px;
}

.product-tag {
    display: inline-block;
    background: rgba(222, 181, 108, 0.14);
    color: #b58b3c;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.product-feature-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 14px;
}

.product-feature-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.product-points {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.product-points li {
    margin-bottom: 10px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .product-feature-img {
        min-height: 240px;
        border-radius: 0;
    }

    .product-feature-content {
        padding: 24px;
    }

    .product-feature-content h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 767px) {
    .product-feature-img {
        min-height: 220px;
    }

    .product-feature-content {
        padding: 20px;
    }

    .product-feature-content h3 {
        font-size: 1.2rem;
    }

    .product-points {
        padding-left: 18px;
    }
}


/** Gallery**/
#gallery-grid {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #DEB56C;
    margin-bottom: 12px;
}

.gallery-grid h2 {
    color: #1f1f1f;
}

.gallery-intro {
    max-width: 720px;
    color: #666;
    line-height: 1.8;
}

.gallery-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.gallery-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .gallery-img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .gallery-img {
        height: 240px;
    }
}


/** contact us */

#contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #DEB56C;
    margin-bottom: 12px;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: #1f1f1f;
}

.contact-intro {
    color: #666;
    line-height: 1.8;
}

.contact-details-list h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f1f1f;
}

.contact-details-list a,
.contact-details-list p {
    color: #555;
    text-decoration: none;
    margin-bottom: 0;
}

.contact-details-list a:hover {
    color: #DEB56C;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(222, 181, 108, 0.12);
    color: #DEB56C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1rem;
}

.contact-form-card .form-control {
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: none;
}

.contact-form-card .form-control:focus {
    border-color: #DEB56C;
    box-shadow: 0 0 0 0.15rem rgba(222, 181, 108, 0.15);
}

.contact-form-card .form-floating label {
    color: #777;
}

.contact-map-section {
    line-height: 0;
}

.contact-map-section iframe {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .contact-map-section iframe {
        height: 360px;
    }
}