﻿:root {
    --primary-dark: #2d1b69;
    --primary-medium: #3c2a84;
    --primary-light: #4a379f;
    --secondary: #6a4caf;
    --accent: #ffab00;
    --accent-dark: #ff8f00;
    --neutral-light: #f5f7fa;
    --neutral-medium: #e0e0e0;
    --neutral-dark: #424242;
    --success: #2e7d32;
    --warning: #f57c00;
    --danger: #c62828;
    --gradient-1: linear-gradient(135deg, #2d1b69 0%, #4a379f 100%);
    --gradient-2: linear-gradient(135deg, #3c2a84 0%, #6a4caf 100%);
    --gradient-3: linear-gradient(135deg, #4a379f 0%, #8a6de3 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9fb;
    overflow-x: hidden;
}

/* ===== Session Request Section ===== */
.session-request-section {
    padding: 60px 0;
    background: var(--neutral-light);
}

.request-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

    .request-card:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.request-header {
    background: var(--gradient-1);
    padding: 25px 30px;
    color: white;
    position: relative;
}

    .request-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

    .request-header h2 {
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }

    .request-header p {
        margin: 10px 0 0;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }

.request-body {
    padding: 40px;
}

.request-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group.full-width {
        grid-column: 1 / -1;
    }

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(74, 55, 159, 0.2);
        outline: none;
    }

.date-time-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    grid-column: 1 / -1;
}

.form-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .form-btn.primary {
        background: var(--gradient-1);
        color: white;
        box-shadow: 0 4px 10px rgba(45, 27, 105, 0.3);
    }

        .form-btn.primary:hover {
            background: var(--gradient-3);
            /*transform: translateY(-2px);*/
            box-shadow: 0 6px 15px rgba(45, 27, 105, 0.4);
        }

    .form-btn.secondary {
        background: transparent;
        border: 1px solid var(--primary-medium);
        color: var(--primary-medium);
    }

        .form-btn.secondary:hover {
            background: var(--primary-medium);
            color: white;
        }
/*==========================*/

.btn-action {
    display: inline-flex;
    align-items: center;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 14px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .btn-action i {
        font-size: 1rem;
    }

    /* Color themes */
    .btn-action.primary {
        background-color: #6f42c1;
    }

        .btn-action.primary:hover {
            background-color: #5b36a3;
        }

    .btn-action.info {
        background-color: #0d6efd;
    }

        .btn-action.info:hover {
            background-color: #0b5ed7;
        }

    .btn-action.warning {
        background-color: #ffc107;
        color: #212529;
    }

        .btn-action.warning:hover {
            background-color: #e0a800;
            color: #fff;
        }

    .btn-action.danger {
        background-color: #dc3545;
    }

        .btn-action.danger:hover {
            background-color: #bb2d3b;
        }

    /* Slight hover lift */
    .btn-action:hover {
        /*transform: translateY(-2px);*/
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .service-card {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        border-left: 4px solid #6f42c1;
    }

    .service-card:hover {
      /*  transform: translateY(-5px);*/
        box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }

    .service-icon {
        background-color: #6f42c1;
        color: white;
        border-radius: 12px;
        padding: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .service-title {
        font-weight: 600;
        font-size: 1.1rem;
        color: #333;
        margin-top: 10px;
    }

    .service-desc {
        font-size: 0.9rem;
        color: #666;
    }

    .action-btn {
        color: #6f42c1;
        font-weight: 600;
        text-decoration: none;
    }

        .action-btn:hover {
            text-decoration: underline;
        }

 
/* ===== Loading Animation ===== 

*/
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-logo {
    width: 220px;
    height: 220px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite alternate;
}

    .loading-logo img {
        width: 320px;
        height: 220px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

.loading-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}

/* ===== Button Loading Spinners ===== */
.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.btn-loading .btn-spinner {
    display: inline-block;
}

.btn-loading .btn-text {
    display: none;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--gradient-1);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(45, 27, 105, 0.3);
    position: relative;
    z-index: 1000;
}

    .top-bar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--accent);
        opacity: 0.7;
    }

    .top-bar a {
        color: var(--accent);
        text-decoration: none;
        margin-left: 10px;
        transition: all 0.3s;
        position: relative;
    }

        .top-bar a:hover {
            color: #fff;
            /*transform: translateY(-2px);*/
        }
/* ========================*/
/* ===== Card Styles ===== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

/* Dual-tone dark purple header */
.card-header {
    background: linear-gradient(135deg, #4B0082, #6A0DAD);
    color: #fff;
    font-weight: 600;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Footer buttons */
.card-footer .btn {
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #4B0082, #6A0DAD);
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #6A0DAD, #4B0082);
    }

.btn.bg-teal {
    background: #20c997;
    color: #fff;
}

    .btn.bg-teal:hover {
        background: #38d9a9;
    }

/* Guest image */
.card-body img {
    border: 3px solid #fff;
}

/* Search bar */
.input-group-text.bg-primary {
    background: linear-gradient(135deg, #4B0082, #6A0DAD);
    border: none;
    color: #fff;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #4B0082, #6A0DAD);
    border: none;
    color: #fff;
}

.pagination .page-link {
    color: #4B0082;
}

/* Responsive spacing */
@media (max-width: 576px) {
    .card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .card-body .ms-3 {
            margin-left: 0 !important;
            margin-top: 15px;
        }
}
/* ========================*/
/* ===== Logo Section ===== */
.logo-bar {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: relative;
    border-bottom: 3px solid var(--neutral-medium);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

    .logo-bar img {
        height: 70px;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        transition: transform 0.5s;
    }

        .logo-bar img:hover {
            transform: scale(1.05);
        }

.center-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    z-index: 10;
}

    .center-logo img {
        height: 136px;
        border-radius: 10px;
        padding: 24px;
    }

/* ===== Navbar ===== */
.navbar {
    background: var(--gradient-2);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 5px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 15px 20px !important;
    letter-spacing: 0.5px;
}

    .navbar-nav .nav-link:hover {
        color: var(--accent) !important;
        /*transform: translateY(-2px);*/
    }

    .navbar-nav .nav-link.active {
        color: var(--accent) !important;
        font-weight: 600;
    }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 3px 3px 0 0;
        }

.custom-toggler {
    border: none;
    background: none;
    color: #fff;
    font-size: 22px;
    transition: transform 0.3s;
    margin: 10px;
}

    .custom-toggler:focus {
        box-shadow: none;
    }

    .custom-toggler:hover {
        transform: scale(1.1);
    }

/* ===== Login Cards ===== */
.login-container {
    background-color: #f8f9fa;
    font-family: "Segoe UI", "Inter", sans-serif;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.login-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s;
    margin-bottom: 20px;
}

    .login-card:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.card-header {
    padding: 25px 30px;
    color: white;
    position: relative;
    font-weight: 600;
    border-bottom: none;
}

    .card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #0d6efd);
}

.card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--neutral-medium);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

    .form-control:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(74, 55, 159, 0.2);
        outline: none;
    }

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 10px rgba(45, 27, 105, 0.3);
}

    .btn-primary:hover {
        background: var(--gradient-3);
        /*transform: translateY(-2px);*/
        box-shadow: 0 6px 15px rgba(45, 27, 105, 0.4);
    }

.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

    .btn-success:hover {
        background: linear-gradient(135deg, #218838, #155724);
        /*transform: translateY(-2px);*/
    }

.btn-info {
    background: linear-gradient(135deg, #17a2b8, #0d6efd);
    color: white;
}

    .btn-info:hover {
        background: linear-gradient(135deg, #138496, #0b5ed7);
        /*transform: translateY(-2px);*/
    }

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--primary-medium);
    color: var(--primary-medium);
}

    .btn-outline-secondary:hover {
        background: var(--primary-medium);
        color: white;
    }

.btn-link {
    background: none;
    border: none;
    color: var(--primary-medium);
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }
   /* ===============================*/
/* ===== User Profile Card ===== */
/* Card Container */
#historyList > .col-12.col-md-4 {
    display: flex;
}

/* Profile Card */
.profile-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

    .profile-card:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, #4B0082, #6a5acd, #8A2BE2);
    /* dark purple gradient */
    padding: 20px 15px;
    text-align: center;
    color: white;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Profile Image */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    margin: -0px auto 10px; /* adjust for overlap */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Name & Title */
.profile-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.profile-title {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* Badge */
.profile-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Profile Body */
.profile-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

/* Details */
.profile-details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.detail-group {
    margin-bottom: 8px;
}

.detail-label {
    font-size: 0.75rem;
    color: #6c757d;
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
}
 

/* ===== Company Logo Slider ===== */
.partners-section {
    padding: 5px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    .section-title h2 {
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .section-title p {
        color: var(--neutral-dark);
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: 2px;
    }

.logo-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    animation: slide 30s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-slide img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s;
    }

        .logo-slide img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

/* ===== Footer ===== */
footer {
    background: var(--gradient-1);
    color: #fff;
    text-align: center;
    padding: 11px 0;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    position: relative;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--accent);
    }

    footer a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        footer a:hover {
            text-decoration: none;
            color: #fff;
        }

/* ===== Scroll Button ===== */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background: var(--gradient-1);
    color: white;
    cursor: pointer;
    padding: 9px 17px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

    #scrollTopBtn:hover {
        background: var(--gradient-3);
        /*transform: translateY(-3px);*/
    }

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        /*transform: translateY(30px);*/
    }

    to {
        opacity: 1;
        /*transform: translateY(0);*/
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 171, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6));
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .request-form {
        grid-template-columns: 1fr;
    }

    .date-time-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-bar {
        flex-direction: column;
        padding: 10px;
    }

    .center-logo {
        position: static;
        transform: none;
        margin: 10px 0;
    }

        .center-logo img {
            height: 100px;
            padding: 15px;
        }

    footer {
        font-size: 13px;
        padding: 20px 10px;
    }

    .session-request-section, .partners-section {
        padding: 40px 0;
    }

    .request-body {
        padding: 25px;
    }

    .request-header {
        padding: 20px;
    }

        .request-header h2 {
            font-size: 1.5rem;
        }

    .form-actions {
        flex-direction: column;
    }

    .logo-slide {
        width: 150px;
        margin: 0 20px;
    }

    .service-card {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        border-left: 4px solid #6f42c1;
    }

        .service-card:hover {
            /*transform: translateY(-5px);*/
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }

    .service-icon {
        background-color: #6f42c1;
        color: white;
        border-radius: 12px;
        padding: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .service-title {
        font-weight: 600;
        font-size: 1.1rem;
        color: #333;
        margin-top: 10px;
    }

    .service-desc {
        font-size: 0.9rem;
        color: #666;
    }

    .action-btn {
        color: #6f42c1;
        font-weight: 600;
        text-decoration: none;
    }

        .action-btn:hover {
            text-decoration: underline;
        }
}
/* Modern Tab Design */
.modern-tabs {
    border-bottom: none;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

    .modern-tabs .nav-link {
        position: relative;
        color: #555;
        font-weight: 600;
        border: none;
        background: transparent;
        padding: 10px 20px;
        border-radius: 8px 8px 0 0;
        transition: all 0.3s ease;
        font-size: 15px;
    }

        .modern-tabs .nav-link i {
            color: #6a4caf;
        }

        .modern-tabs .nav-link:hover {
            color: #6a4caf;
            background: rgba(106, 76, 175, 0.1);
        }

        .modern-tabs .nav-link.active {
            color: #fff;
            background: linear-gradient(135deg, #3c2a84, #6a4caf);
            box-shadow: 0 4px 12px rgba(106, 76, 175, 0.3);
            border-radius: 10px;
            /*transform: translateY(-2px);*/
        }

            .modern-tabs .nav-link.active i {
                color: #fff;
            }

        /* Animated underline */
        .modern-tabs .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #3c2a84, #6a4caf);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .modern-tabs .nav-link.active::after {
            width: 60%;
        }

/* Smooth fade for tab content */
.tab-content {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        /*transform: translateY(10px);*/
    }

    to {
        opacity: 1;
        /*transform: translateY(0);*/
    }
}

