* {
    font-family: "Poppins", sans-serif !important;
    /* font-family: "Montserrat", sans-serif !important; */
}

/* ===== MAIN SECTION ===== */
.trainer-page-wrap {
    background: #f4f6f9;
    padding: 60px 0 80px;
}

/* ===== PROFILE CARD ===== */
.trainer-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.trainer-card__banner {
    height: 100px;
    background: linear-gradient(135deg, #0f1b2d, #1e3a5f);
    position: relative;
}

.trainer-card__banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trainer-card__avatar-wrap {
    display: flex;
    justify-content: center;
    margin-top: -55px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.trainer-card__avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trainer-card__body {
    padding: 16px 24px 28px;
    text-align: center;
}

.trainer-card__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f1b2d;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.trainer-card__designation {
    font-size: 0.875rem;
    color: #c9a049;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Row */
.trainer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.trainer-stat {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid #eef0f4;
    transition: all 0.2s;
}

.trainer-stat:hover {
    background: #f0f3ff;
    border-color: #d0d8f0;
    transform: translateY(-2px);
}

.trainer-stat__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f1b2d, #1e3a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    color: #fff
}

.trainer-stat__icon i {
    color: #c9a049;
    font-size: 0.8rem;
}

.trainer-stat__label {
    font-size: 0.7rem;
    color: #8a95a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.trainer-stat__value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f1b2d;
}

.trainer-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.trainer-status-badge.active {
    background: #e8f8f0;
    color: #1a9455;
    border: 1px solid #b8ecd5;
}

.trainer-status-badge.inactive {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.trainer-status-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Courses List */
.trainer-courses-section {
    border-top: 1px solid #eef0f4;
    padding-top: 20px;
    text-align: left;
}

.trainer-courses-section h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #8a95a3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 12px;
}

.trainer-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trainer-course-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8f9fb;
    border-radius: 10px;
    border: 1px solid #eef0f4;
    color: #2a3a4d;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.4;
}

.trainer-course-list li a:hover {
    background: #0f1b2d;
    color: #c9a049;
    border-color: #0f1b2d;
    transform: translateX(3px);
}

.trainer-course-list li a i {
    font-size: 0.7rem;
    color: #c9a049;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.trainer-course-list li a:hover i {
    transform: translateX(3px);
}

/* ===== ABOUT SECTION ===== */
.trainer-about-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.trainer-about-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f2f5;
}

.trainer-about-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f1b2d, #1e3a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.trainer-about-icon i {
    color: #c9a049;
    font-size: 1.2rem;
}

.trainer-about-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f1b2d;
    margin: 0 0 4px;
    letter-spacing: -0.4px;
}

.trainer-about-header p {
    font-size: 0.85rem;
    color: #8a95a3;
    margin: 0;
}

.trainer-about-body {
    color: #4a5568;
    font-size: 0.97rem;
    line-height: 1.85;
}

.trainer-about-body p {
    margin-bottom: 1.2em;
}

.trainer-no-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #aab0bb;
}

.trainer-no-desc i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.trainer-no-desc p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .trainer-card {
        position: static;
        margin-bottom: 30px;
    }

    .trainer-about-card {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    .trainer-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.header-area-all.sticky .header-top-row {
    display: none;
}

.header-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-logo,
.sticky-social {
    display: none;
}

.header-area-all.sticky .sticky-logo {
    display: contents;
}

.header-area-all.sticky .sticky-social {
    display: flex;
    gap: 5px;
    ;
}

.header-area-all.sticky .header-social a {
    width: 25px;
    height: 25px;
    font-size: 14px;
}

.header-area-all.sticky .header-bottom-row .main-menu-ex {
    padding: 0 30px;
}

.header-area-all.sticky .main-menu-ex li a {
    font-size: 13px !important;
}

.hadding2 h1 {
    font-size: 34px;
}

/* Make search always top */
.header-top-row {
    position: relative;
    z-index: 10000;
}

.service-search-wrap {
    position: relative;
    z-index: 10001;
}

/* Dropdown container */
.service-search-results {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    overflow: hidden;
    z-index: 10002;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    max-height: 360px;
    overflow-y: auto;
}

/* Item */
.service-search-results .sr-item {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid #f1f1f1;
    align-items: center;
}

.service-search-results .sr-item:last-child {
    border-bottom: none;
}

.service-search-results .sr-item:hover {
    background: #f7f7f7;
}

.service-search-results .sr-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 44px;
}

.service-search-results .sr-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

/* No result row */
.service-search-results .sr-empty {
    padding: 12px 14px;
    font-size: 14px;
    color: #555;
}

.hadding2-w h1 {
    font-size: 34px;
}

/* WHATSAPP BUTTON CSS */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 33px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-float .whatsapp-tooltip {
    background-color: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float .whatsapp-icon {
    width: 52px;
    height: 52px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Pulse ring animation */
.whatsapp-float .whatsapp-icon::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.page-hero {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding-top: 90px;
    }

    .page-hero-haddig h1 {
        color: #FFF;
        font-size: 25px;
        line-height: initial;
    }
}

.page-hero {
    height: 250px;
}

.date2 {
    font-size: 12px;
}

.blog2-hadding h4 a {
    font-size: 18px;
}

.case6-hadding-area {
    margin-top: -45px;
}

.enroll-grid {
    grid-template-columns: 1.35fr 1fr;
}

.tcard__priceBox {
    grid-template-columns: 1fr 1fr;
}

/* ===== CTA Contact Card ===== */
.cta-contact-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.cta-card__header {
    background: linear-gradient(135deg, #1b3c6e, #2d6be4);
    color: #fff;
    text-align: center;
    padding: 28px 20px 22px;
}

.cta-card__icon-wrap {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 12px;
}

.cta-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.cta-card__sub {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.cta-card__body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Buttons */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    width: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.cta-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.cta-btn--gmail {
    background: #EA4335;
    color: #fff;
}

.cta-btn--inquiry {
    background: #1b3c6e;
    color: #fff;
}

.cta-btn--submit {
    background: #1b3c6e;
    color: #fff;
    margin-top: 6px;
}

.cta-card__divider {
    text-align: center;
    position: relative;
    margin: 4px 0;
}

.cta-card__divider::before,
.cta-card__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e0e0e0;
}

.cta-card__divider::before {
    left: 0;
}

.cta-card__divider::after {
    right: 0;
}

.cta-card__divider span {
    font-size: 12px;
    color: #999;
    background: #fff;
    padding: 0 8px;
    position: relative;
}

.cta-card__phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-card__phones a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1b3c6e;
    font-weight: 600;
    text-decoration: none;
}

.cta-card__phones a:hover {
    color: #2d6be4;
}

/* ===== Inquiry Modal ===== */
.inquiry-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.inquiry-modal-overlay.active {
    display: flex;
}

.inquiry-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    width: 100%;
    max-width: 480px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.inquiry-modal h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1b3c6e;
    margin-bottom: 4px;
}

.inquiry-modal p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.inquiry-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inq-field {
    margin-bottom: 14px;
}

.inq-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.inq-field input,
.inq-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.inq-field input:focus,
.inq-field textarea:focus {
    border-color: #2d6be4;
}

.contact-info-icon {
    display: contents;
}

.custom_mail_icon img {
    height: 15px;
    margin-top: 8px;
}

.contact-widget {
    background: linear-gradient(135deg, #1a1a6e 0%, #2a2a9e 100%);
    border-radius: 12px;
    padding: 28px 24px;
    color: #fff;
}

.contact-widget h5 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-widget-item:last-child {
    margin-bottom: 0;
}

.contact-widget-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.contact-widget-text a,
.contact-widget-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 0;
    line-height: 1.7;
    transition: color 0.2s;
}

.contact-widget-text a:hover {
    color: #fff;
}

.contact-widget-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 18px 0;
}

/* Hero Trainers */
.hero-trainers {
    padding: 10px 0;
}

.hero-trainers__label {
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8); */
}

.hero-trainers__label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #ed1c24;
}

.hero-trainers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 270px));
    gap: 10px;
}

.hero-trainer-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    /* solid white — clearly visible */
    border-left: 4px solid #ed1c24;
    border-radius: 8px;
    padding: 10px 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-trainer-card:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero-trainer-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ed1c24;
}

.hero-trainer-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-trainer-card__name {
    color: #111111;
    /* dark text on white bg */
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.hero-trainer-card__designation {
    color: #ed1c24;
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-trainers {
        margin-top: 20px;
    }

    .hero-trainers__grid {
        grid-template-columns: repeat(2, minmax(0, 190px));
    }
}

@media (max-width: 576px) {
    .hero-trainers__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tprice__val {
    font-weight: 700;
}

/* Price Box — same style as View Training Details button */
.tcard__priceBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid #1b3c6e;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.tprice {
    padding: 10px 12px;
    text-align: center;
    background: #fff;
    position: relative;
}

/* Divider between left and right */
.tprice:first-child {
    border-right: 1px solid #e0e6f0;
}

/* Divider between top and bottom row */
.tcard__priceBox+.tcard__priceBox .tprice {
    border-top: 1px solid #e0e6f0;
}

.tprice__label {
    font-size: 11px;
    font-weight: 600;
    color: #1b3c6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.tprice__val {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.tcard__infoBox {
    border: 2px solid #1b3c6e;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tcard__infoRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tcard__infoRow--border {
    border-top: 1px solid #dce4f0;
}

.tcard__infoCell {
    /* padding: 10px 12px; */
    text-align: center;
    background: #fff;
}

.tcard__infoCell:first-child {
    border-right: 1px solid #dce4f0;
}

.tprice__label {
    font-size: 11px;
    font-weight: 600;
    color: #1b3c6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -4px;
}

.tprice__val {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.scat-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}

.scat-card__img {
    display: block;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.scat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.scat-card:hover .scat-card__img img {
    transform: scale(1.05);
}

.scat-card__body {
    padding: 18px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.scat-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f1b2d;
    margin: 0;
    line-height: 1.4;
}

.scat-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.scat-card__title a:hover {
    color: #ed1c24;
    text-decoration: none;
}

.scat-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #ed1c24;
    text-decoration: none;
    transition: gap 0.2s ease;
    flex-shrink: 0;
}

.scat-card__link:hover {
    gap: 10px;
    color: #c0141b;
    text-decoration: none;
}

.simple-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
    width: 100%;
    display: block;
}

.simple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.simple-card .card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: block;
}

.simple-card .card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    max-width: 100%;
}

.simple-card-body {
    padding: 20px 22px;
    border-top: 3px solid #e63027;
    width: 100%;
}

.simple-card-body h4 {
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: 700;
}

.simple-card-body h4 a {
    color: #1a3a5c;
    text-decoration: none;
}

.simple-card-body h4 a:hover {
    color: #e63027;
}

.simple-card-body .blog5-learn {
    color: #1a3a5c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
}

.simple-card-body .blog5-learn:hover {
    color: #e63027;
    gap: 10px;
}

.service2 .col-lg-4 {
    padding-left: 12px;
    padding-right: 12px;
}

/* ===== ENROLL WRAP ===== */
.enroll-wrap {
    padding: 50px 0 80px;
    background: #f4f6f9;
}

/* ===== GRID — side by side on desktop, stacked on mobile ===== */
.enroll-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    align-items: start;
}

/* ===== CARD ===== */
.cardx {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cardx-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #f0f2f5;
    flex-wrap: wrap;
    gap: 8px;
}

.cardx-h h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1b2d;
    margin: 0;
}

.cardx-b {
    padding: 24px;
}

/* ===== PILL ===== */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #1b3c6e;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ===== FORM ===== */
.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.field input,
.field textarea {
    width: 100%;
    padding: 5px 14px;
    border: 1.5px solid #dde2eb;
    border-radius: 9px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    background: #fafbfc;
    color: #111;
    box-sizing: border-box;
}

.field input:focus,
.field textarea:focus {
    border-color: #1b3c6e;
    box-shadow: 0 0 0 3px rgba(27, 60, 110, 0.08);
    background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #aab0bb;
}

/* ===== DIVIDER ===== */
.divider {
    border: none;
    border-top: 1px solid #f0f2f5;
    margin: 20px 0;
}

/* ===== BUTTONS ===== */
.btnx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    width: 100%;
    box-sizing: border-box;
}

.btnx:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    text-decoration: none;
}

.btnx-bkash {
    background: #e2136e;
    color: #fff;
}

.btnx-bkash:hover {
    background: #c40f5b;
    color: #fff;
}

.btnx-dis {
    background: #ddd !important;
    color: #999 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.btnx-outline {
    background: transparent;
    border: 2px solid #1b3c6e;
    color: #1b3c6e;
    font-weight: 600;
    font-size: 14px;
}

.btnx-outline:hover {
    background: #1b3c6e;
    color: #fff;
}

/* ===== NOTE ===== */
.note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff8e6;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #92400e;
    margin-top: 12px;
}

/* ===== ORDER SUMMARY META ===== */
.meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.r {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.r>div {
    color: #8a95a3;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.r>span {
    color: #0f1b2d;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

/* ===== ALERT ===== */
.alertx {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .enroll-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .enroll-wrap {
        padding: 30px 0 60px;
    }

    .cardx-h {
        padding: 14px 16px;
    }

    .cardx-b {
        padding: 16px;
    }

    .cardx-h h3 {
        font-size: 16px;
    }

    .row2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .btnx {
        font-size: 14px;
        padding: 12px 18px;
    }
}