@import url('https://fonts.googleapis.com/css2?family=Inder&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Marck+Script&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
}


.landpage-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #fff;
}

/* LOGO */
.logo {
    height: 85px;
}

/* BUTTON GROUP */
.btn-group {
    display: flex;
    gap: 12px;
}

/* BUTTON COMMON */
.btn-login,
.btn-register {
    border: 1.5px solid #041F57;
    background: #041F57;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* OPTIONAL */
.btn-login {
    background: transparent;
    color: #041F57;
}

.btn-login:hover {
    background: #041F57;
    color: #fff;
}

.btn-register:hover {
    opacity: 0.9;
}

@media (max-width: 576px) {
    .landpage-top-bar {
        flex-direction: column;
        gap: 12px;
    }
}
.hero-section {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

/* Background images slide aagum logic */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Inga unga rendu image path-aiyum podunga */
    animation: heroSlider 10s infinite; 
    z-index: 0;
    transition: all 1s ease-in-out;
}

@keyframes heroSlider {
    0%, 45% {
        background-image: url("assets/resources/index/image 1.JPG");
    }
    50%, 95% {
         background-image: url("assets/resources/index/image2.JPG");/* Unga 2nd image path */
    }
    100% {
       
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1; /* Animation-ku mela irukanum */
}

.hero-content {
    position: relative;
    z-index: 2; /* Overlay-ku mela irukanum */
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 16px;
}
.hero-section {
    height: 90vh;
    /*background-image: url("assets/resources/index/Institutionheroimg.webp");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* optional dark overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 16px;
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    opacity: 0.9;
}

.hero-btn {
    background-color: #041F57;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    transition: all 0.3s ease;
}


.hero-btn:hover {
    background-color: #031843;
    transform: translateY(-2px);
}

.hero-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;

}

.hero-stats-box img {
    margin-bottom: 8px;
}

.hero-stats-box h6 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-stats-box p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.training-section {
    background: #f6f6f6;
}

.training-desc {
    max-width: 620px;
    color: #64748b;
    font-size: 16px;
}

.training-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 22px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.35s ease;
    cursor: pointer;
}

.training-card img {
    width: 56px;
    margin-bottom: 16px;
    transition: transform 0.35s ease;
}

.training-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.training-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* 🔥 Hover Animation */
.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 31, 87, 0.18);
}

.training-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.training-card:hover h2 {
    color: #041F57;
}

/* Mobile */
@media (max-width: 768px) {
    .training-card {
        padding: 24px 18px;
    }
}

.why-section {
    padding: 60px 20px;
    background: #ffffff;
}

.why-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.why-left {
    flex: 1;
}

.why-left h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
}

.why-point {
    margin-bottom: 20px;
}

.point-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
}

.point-title img {
    width: 20px;
}

.why-point p {
    margin-left: 30px;
    font-size: 14px;
    color: #64748b;
}

/* RIGHT */
.why-right {
    flex: 1;
    display: flex;
    justify-content: center;

}

.cta-box-top {
    background: linear-gradient(to bottom, #D4F0FF, #F6F1F1);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}

.cta-box {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cta-box h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
}

.cta-btn {
    background: #4212C6;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #34109a;
    transform: translateY(-2px);
}

.login-text {
    margin-top: 18px;
    font-size: 14px;
}

.login-text span {
    color: #4212C6;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cta-box-top {
        max-width: 100%;
    }

    .cta-box {
        max-width: 100%;
    }
}

.site-footer {
    background-color: #E9F0F6;
    padding: 60px 0 20px;
    font-family: inherit;
}

/* TOP SECTION */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 12px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #041F57;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

/* REMOVE LIST STYLE */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom {
    border-top: 2px solid #C8C8C8;
    margin-top: 20px;
    padding-top: 14px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 12px;
    }
}

.register-container {
    max-width: 920px;
    padding: 40px 16px 60px;
}

.back-link {
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
}

.section-title {
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #0d6efd;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px 14px;
}

.upload-box {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    height: 120px;
    text-align: center;
    color: #6b7280;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-box i {
    font-size: 24px;
    margin-bottom: 8px;
}

.btn-primary {
    background-color: #2196f3;
    border-radius: 8px;
    padding: 12px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .register-container {
        max-width: 100%;
        padding: 32px 16px 48px;
    }

    .section-title {
        margin-top: 32px;
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .register-container {
        padding: 24px 12px 36px;
    }

    h2 {
        font-size: 22px;
    }

    .section-title {
        flex-wrap: wrap;
        font-size: 16px;
        gap: 6px;
    }

    .upload-box {
        height: 110px;
    }

    /* Stack action buttons */
    .d-flex.gap-3.mt-4 {
        flex-direction: column;
    }

    .btn,
    .btn-primary {
        width: 100%;
    }
}

/* -------------------------------------------- */
/* ================= RESET ================= */

#login {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
}

/* ================= BACKGROUND ================= */
.login-container {
    min-height: 100vh;
    background-image: url("assets/resources/login/loginbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 20px;
}

/* ================= LOGIN BOX ================= */
.login-section {
    background-color: #ffffff;

    width: 100%;
    max-width: 420px;
    /* ✅ responsive width */
    padding: 28px;

    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* 🔥 DESKTOP LEFT MARGIN */
    margin-left: 100px;
}

/* ================= LOGO & TEXT ================= */
.login-logo {
    display: block;
    margin: 0 auto 12px;
    max-width: 120px;
}

.login-section h3 {
    text-align: center;
    font-weight: 700;
}

.login-section p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 22px;
}

/* ================= INPUTS ================= */
.input-group {
    border-radius: 6px;
    overflow: hidden;
}

.input-group-text {
    background: #f1f5f9;
    border-right: 0;
}

.form-control {
    border-left: 0;
}

/* ================= OPTIONS ================= */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}

/* ================= BUTTON ================= */
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #009CFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */

/* Tablet & Mobile */
@media (max-width: 768px) {
    .login-container {
        justify-content: center;
    }

    .login-section {
        margin-left: 0;
        /* 🔥 important */
        max-width: 100%;
        padding: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .login-section {
        padding: 20px;
    }

    .login-logo {
        max-width: 100px;
    }
}

/* dashboard------------------------------------------------- */
/* SIDEBAR */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background: #041F57;
    color: #fff;
    padding: 12px;
    z-index: 1000;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sidebar-logo {
    width: 120px;
}

/* CLOSE BUTTON */
.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
}

.sidebar .nav-item {
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px !important;
    font-weight: 500;
}

.sidebar .nav-item i {
    margin-right: 5px;
}

.sidebar .nav-item.active,
.sidebar .nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* MAIN */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

/* TOP BAR */
.top-bar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* DEFAULT – HIDE LOGO */
.top-logo {
    display: none;
    height: 50px;
}

/* 📱 MOBILE VIEW ONLY */
@media (max-width: 768px) {
    .top-logo {
        display: block;
        margin-left: 10px;
    }
}

.search {
    width: 300px;
    padding: 8px 14px;
    border-radius: 8px !important;
    border: 1px solid #ddd;
}

/* TOP BAR BASE */
.top-bar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;

    position: relative;
    z-index: 10;
    /* below sidebar */
}

/* DEFAULT ORDER (Desktop) */
#menuToggle {
    order: 1;
}

.top-logo {
    order: 2;
}

.search-wrapper {
    order: 3;
}

.top-right {
    order: 4;
}

/* SEARCH WRAPPER */
.search-wrapper {
    position: relative;
    width: 300px;
    z-index: 1;
    /* 🔑 prevent overlapping sidebar */
}

/* SEARCH ICON */
.search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 16px;
    pointer-events: none;
}

/* SEARCH INPUT */
.search {
    width: 100%;
    padding: 8px 14px 8px 38px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* LOGO */
.top-logo {
    display: none;
    height: 46px;
}

.sidebar .nav-item a {
    color: #ffffff;
    text-decoration: none;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

    /* SHOW LOGO ONLY MOBILE */
    .top-logo {
        display: block;
    }

    /* ORDER FIX */
    #menuToggle {
        order: 1;
    }

    .top-logo {
        order: 2;
    }

    .top-right {
        order: 3;
    }

    /* SEARCH GOES DOWN */
    .search-wrapper {
        order: 4;
        width: 100%;
        z-index: 1;
        /* 🔑 stays below sidebar */
    }
}


.top-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar {
    border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {

    .sidebar {
        left: -240px;
        top: 120px;

    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .small-card {
        height: 150px;
    }

    .sidebar-logo {
        display: none;
    }
}

/* ================= MOBILE TOP BAR FIX ================= */
@media (max-width: 768px) {

    /* Top bar layout */
    .top-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    /* 🔥 Toggle + Logo inline row */
    .top-bar>#menuToggle,
    .top-bar>.top-logo {
        display: inline-flex;
        align-items: center;
    }

    /* Create inline row for toggle & logo */
    .top-bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "toggle logo profile"
            "search search search";
        align-items: center;
    }

    #menuToggle {
        grid-area: toggle;
        justify-self: start;
    }

    .top-logo {
        grid-area: logo;
        justify-self: start;
        margin-left: 8px;
    }

    .top-right {
        grid-area: profile;
        justify-self: end;
    }

    .search-wrapper {
        grid-area: search;
        width: 100%;
    }
}

.dashboard-stats {
    margin-top: 20px;
}

/* CARD */
.stat-card {
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    height: 100%;
}

/* HEADER (ICON + % inline end-to-end) */
.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

/* GROWTH */
.stat-growth {
    font-size: 14px;
    font-weight: 600;
    color: #08D720;
}

/* NEGATIVE % */
.stat-growth.negative {
    color: #E53935;
}

/* VALUE */
.stat-value {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0f172a;
}

/* LABEL */
.stat-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* HOVER ANIMATION */
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 31, 87, 0.18);
}

/* ACTION CARD BASE */
.Actions-stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 13px 20px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.Actions-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

/* PERCENT / INFO TEXT */
.stat-growth {
    font-size: 13px;
    font-weight: 600;
    color: #08D720;
}

/* TITLE */
.Actions-stat-value {
    font-size: 16px;
    font-weight: 500;
    color: #474747;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.Actions-stat-label {
    font-size: 14px;
    color: #696969;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* HOVER EFFECT */
.Actions-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(4, 31, 87, 0.18);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 576px) {
    .Actions-stat-value {
        font-size: 15px;
    }

    .Actions-stat-label {
        font-size: 13px;
    }
}

/* pending cards------------------------------------------------- */
/* MAIN CARD */
.pending-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #BEBEBE;
}

/* HEADER */
.pending-header {
    display: flex;
    justify-content: space-between;
    /* 🔥 inline end to end */
    align-items: center;
    margin-bottom: 16px;
}

.pending-title {
    font-size: 18px;
    font-weight: 700;
    color: #474747;
    /* ✔ heading color */
    margin: 0;
}

.pending-view {
    font-size: 14px;
    font-weight: 600;
    color: #239BFE;
    /* ✔ View All color */
    text-decoration: none;
}

.pending-view:hover {
    text-decoration: underline;
}

/* EACH ROW */
.pending-item {
    display: flex;
    justify-content: space-between;
    /* 🔥 inline end to end */
    align-items: center;
    background: #F7F7F7;
    /* ✔ row bg */
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

/* LEFT TEXT */
.pending-info p {
    margin: 0;
}

.trainer-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.program-name {
    font-size: 13px;
    color: #6b7280;
}

/* STATUS */
.pending-status {
    background: #FEA323;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* APPROVED STATUS */
.status-approved {
    background: #B5FFC5;
    /* ✅ Approved bg */
    color: #0f5132;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 576px) {
    .pending-title {
        font-size: 16px;
    }

    .trainer-name {
        font-size: 14px;
    }
}

/* MAIN CARD */
.events-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #BEBEBE;
}

/* HEADER */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.events-title {
    font-size: 18px;
    font-weight: 700;
    color: #474747;
    margin: 0;
}

.events-view {
    font-size: 14px;
    font-weight: 600;
    color: #239BFE;
    text-decoration: none;
}

/* ROW */
.Events-item {
    display: flex;
    justify-content: space-between;
    /* 🔥 end to end */
    align-items: center;
    background: #F7F7F7;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

/* LEFT */
.Events-info p {
    margin: 0;
}

.trainer-name {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.program-name {
    font-size: 13px;
    color: #6b7280;
}

/* RIGHT COUNT */
.events-count {
    text-align: center;
}

.events-count .count {
    font-size: 18px;
    font-weight: 700;
    color: #041F57;
    margin: 0;
}

.events-count .label {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* MOBILE */
@media (max-width: 576px) {
    .Events-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .events-count {
        text-align: left;
    }

    .events-card {
        margin-top: 10px;
    }
}

/* HEADER */
.page-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* CARD */
.trainer-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.trainer-card .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* BUTTON ALWAYS AT BOTTOM */
.trainer-card button {
    margin-top: auto;
}


.trainer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

/* HEADER GRADIENT */
.trainer-header {
    background-color: #D3E7F9;
    padding: 20px;
    color: #363636;
}

/* AVATAR */
.trainer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}


/* COURSE CHIP */
.course-chip {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ===== AVAILABLE STATUS TAG ===== */
.trainer-status {
    background-color: #3FCE06;
    /* ✅ green */
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    /* pill shape */
    display: inline-block;
}

/* ===== PRIMARY BUTTON ===== */
.trainer-card .btn-primary {
    background-color: #05418A;
    /* ✅ button bg */
    border-color: #05418A;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trainer-card .btn-primary:hover {
    background-color: #032f66;
    /* slightly dark */
    border-color: #032f66;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 65, 138, 0.3);
}

/* trainer Details-------------------------------------------------- */
.page-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* CARD COMMON */
.card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

/* PROFILE HEADER */
.profile-header {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: #fff;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    color: #2563eb;
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* COURSE TAG */
.course-tag {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px;
}

/* VIDEO */
.video-box {
    background: #f3f4f6;
    border-radius: 10px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STICKY RIGHT */
.sticky-right {
    position: sticky;
    top: 90px;
}

/* BUTTON */
.btn-request {
    background: #2563eb;
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-request:hover {
    background: #1e40af;
}

/* STATUS */
.status-available {
    color: #16a34a;
    font-weight: 600;
}

.status-busy {
    color: #ca8a04;
    font-weight: 600;
}

/* MOBILE FIX */
@media(max-width:991px) {
    .sticky-right {
        position: static;
    }
}

/* MAIN CARD */
.form-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

/* TRAINER SUMMARY */
.trainer-summary {
    background: #eff6ff;
    border-radius: 12px;
}

.trainer-avatar {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM INPUT */
.form-control,
.form-select {
    border-radius: 10px;
    padding: 10px 14px;
}

/* COST SUMMARY */
.cost-box {
    background: #f3f4f6;
    border-radius: 12px;
}

/* BUTTON */
.btn-submit {
    background: #041F57;
    color: #fff;
    font-weight: 600;
    border: none;
}

.btn-cancel {
    background: #e5e7eb;
    color: #374151;
    font-weight: 600;
}

/* RESPONSIVE */
@media(max-width:576px) {
    .trainer-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Required star */
.required {
    color: red;
}


/* ================== CARD ================== */

.Event-card-box {
    background: #fff;
    color: #000;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 6px 16px rgba(5, 65, 138, 0.3);
}

/* ================== CALENDAR ================== */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.day-name {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.cell {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f3f4f6;
    font-size: 14px;
    position: relative;
}

.cell.empty {
    background: transparent;
}

.cell.active {
    background: #3f4d96;
    color: #fff;
    font-weight: 700;
}

.cell.event::after {
    content: '';
    position: absolute;
    bottom: 6px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* ================== STATUS ================== */
.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.status.scheduled {
    background: #e0e7ff;
    color: #1e40af;
}

.status.progress {
    background: #fde9c9;
    color: #92400e;
}

/* ================== EVENT LIST ================== */
.event-card {
    background: #fff;
    color: #000;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 16px rgba(5, 65, 138, 0.3);
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
}

/* ================== BUTTONS ================== */
.start-btn {
    background: #22c55e;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 8px;
}

.finish-btn {
    background: #4f46e5;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 8px;
}

/* ================== RESPONSIVE ================== */
@media(max-width:768px) {
    .calendar-grid .cell {
        height: 38px;
        font-size: 13px;
    }
}

/* HEADER */
.page-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* ICON CIRCLE */
.Start-event-icon-circle {
    width: 80px;
    height: 80px;
    background: #e0edff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* CARD */
.Start-event-card-box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 22px;
}

/* EVENT INFO */
.Start-event-info-box {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 20px;
}

/* CHECKLIST */
.Start-event-check-item {
    display: flex;
    gap: 12px;
    background: #f3f4f6;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.Start-event-check-item:hover {
    background: #e5e7eb;
}

/* PRIMARY BUTTON */
.Start-event-btn-start {
    background: #041F57;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
}

.Start-event-btn-start:hover {
    background: #041a48;
}

/* SECONDARY ACTIONS */     
.Start-event-action-btn {
    padding: 14px;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-btn {
    background: #e0edff;
    color: #2563eb;
}

.chat-btn {
    background: #f3e8ff;
    color: #7c3aed;
    border: none;
}

.attendance-btn {
    background: #fff7ed;
    color: #ea580c;
    border: none;
}

/* RESPONSIVE */
@media (max-width:576px) {
    .Start-event-card-box {
        padding: 22px;
    }
}