
/* ==================== ROOT & FONTS ==================== */
:root {
    --color-blue: #009AFA;
    --color-blue-dark: #0080D6;
    --color-blue-darker: #006BB8;
    --color-cyan: #00FAE1;
    --color-cyan-dark: #00D6C3;
    --color-violet: #7D00FA;
    --color-violet-dark: #6B00D6;
    --color-fuchsia: #F600FA;
    --color-magenta: #FA0092;
    --color-magenta-dark: #D6007A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

section {
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* ==================== SMOOTH SCROLL ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== TOP BAR ==================== */


/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    
}

/* ==================== SMOOTH TRANSITIONS ==================== */
* {
    transition-property: transform, opacity, background, color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

button, a, .card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== DASHBOARD LAYOUT ==================== */
.dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-right: 1px solid #e9ecef;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.dashboard-main {
    margin-left: 260px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    transition: margin-left 0.3s ease;
}
.topbar-left { padding-left: 20px;}
.sidebar-toggle {
    position: fixed;
    top: 8px;
    left: 15px;
    z-index: 1031;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 154, 250, 0.4);
}

/* ==================== SIDEBAR HEADER ==================== */
.sidebar-header {
    padding: 9px;
    border-bottom: 1px solid #e9ecef;
    background: white;
}

.sidebar-logo {
    height: 50px;
    width: auto;
}

/* ==================== SIDEBAR NAVIGATION ==================== */
.sidebar-nav {
    padding: 1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    color: #495057;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(0, 154, 250, 0.08);
    color: var(--color-blue);
    transform: translateX(5px);
}

.sidebar-link:hover i {
    transform: scale(1.1);
}

.sidebar-link.active {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.25);
    transform: translateX(5px);
}

.sidebar-link.active i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==================== TOP BAR ==================== */
.dashboard-topbar {
    position: sticky;
    top: 0;
    height: 70px;
    background: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1020;
}

.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8f9fa;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-icon:hover {
    background: var(--color-blue);
    color: white;
    transform: scale(1.05);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: var(--color-magenta);
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ==================== USER PROFILE ==================== */
.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 0px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/*
.user-profile-btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
*/

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 154, 250, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #212529;
    display: block;
}

.user-role {
    font-size: 0.75rem;
    color: #6c757d;
    display: block;
}

/* ==================== DASHBOARD CONTENT ==================== */
.dashboard-content {
    padding: 1.2rem;
    min-height: calc(100vh - 70px);
}

/* ==================== WELCOME CARD ==================== */
.welcome-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.4s ease;
}

.welcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.welcome-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.user-details p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ==================== VIDEO PLACEHOLDER ==================== */
.hero-carousel {
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
    min-height: 350px;
}

.video-placeholder-large {
    position: relative;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Hero Slide Styles */
.hero-slide {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s ease;
}

.hero-carousel .carousel-item.active .hero-slide-img {
    transform: scale(1.1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
}

.hero-text-wrapper {
    text-align: center;
    max-width: 600px;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(125, 0, 250, 0.4);
    animation: pulse-badge-hero 3s infinite;
}

@keyframes pulse-badge-hero {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(125, 0, 250, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(125, 0, 250, 0.6);
    }
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    margin-bottom: 1.5rem;
}

.hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    width: 30px;
    border-radius: 5px;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ==================== MEMBERSHIP CARDS ==================== */
.membership-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 154, 250, 0.03), rgba(28, 216, 210, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.membership-card:hover::before {
    opacity: 1;
}

.membership-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.membership-card:hover .membership-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-title {
    font-size: 0.9rem;
    color: #212529;
    font-weight: 600;
}

.card-action {
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.card-action:hover {
    gap: 0.5rem;
}

/* ==================== VIDEO SECTIONS ==================== */
.video-section-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: 100%;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-overlay-small {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 154, 250, 0.2), rgba(125, 0, 250, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-placeholder:hover .video-overlay-small {
    opacity: 1;
}

.video-content-small {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
}

.video-content-small i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-content-small i {
    transform: scale(1.1);
}

/* ==================== CONSENT FORMS ==================== */
.consent-forms-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.consent-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.consent-forms-card:hover .consent-bg {
    transform: scale(1.1);
}

.consent-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.event-tabs .nav-link {
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    background: #f8f9fa;
    border: none;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.event-tabs .nav-link:hover {
    background: #e9ecef;
    color: #495057;
}

.event-tabs .nav-link.active {
   background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    color: white;
      box-shadow: 0 4px 15px rgba(0, 154, 250, 0.25);
}

.event-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.registration-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.event-body {
    padding: 1.25rem;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.event-details {
    font-size: 0.875rem;
}

/* ==================== TRAINING SECTION ==================== */
.training-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.training-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.training-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.1);
}

.training-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.7;
}

.training-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.training-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.training-body {
    padding: 1.25rem;
}

.training-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.training-subtitle {
    color: #6c757d;
}

.training-info {
    font-size: 0.8rem;
}

/* ==================== GRADIENT UTILITIES ==================== */
.gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
}

.gradient-cyan {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-violet-dark));
}

.gradient-fuchsia {
    background: linear-gradient(135deg, #26a959, #15b76c);
}

.gradient-magenta {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-magenta-dark));
}

.gradient-blue-overlay {
    background: linear-gradient(to top, rgba(0, 154, 250, 0.6), rgba(0, 128, 214, 0.6));
}

.gradient-cyan-overlay {
    background: linear-gradient(to top, rgba(0, 250, 225, 0.6), rgba(0, 214, 195, 0.6));
}

.gradient-violet-overlay {
    background: linear-gradient(to top, rgba(125, 0, 250, 0.6), rgba(107, 0, 214, 0.6));
}

.gradient-fuchsia-overlay {
    background: linear-gradient(to top, rgba(246, 0, 250, 0.6), rgba(250, 0, 146, 0.6));
}

.gradient-magenta-overlay {
    background: linear-gradient(to top, rgba(250, 0, 146, 0.6), rgba(214, 0, 122, 0.6));
}

/* Text Gradients */
.text-gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.text-gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-violet-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.text-gradient-fuchsia {
     background: linear-gradient(135deg, #26a959, #15b76c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ==================== BUTTON GRADIENTS ==================== */
.btn-gradient-blue {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 154, 250, 0.4);
    color: white;
}

.btn-gradient-cyan {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 250, 225, 0.3);
}

.btn-gradient-cyan:hover {
    background: linear-gradient(135deg, var(--color-cyan-dark), var(--color-cyan));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 250, 225, 0.4);
    color: white;
}

.btn-gradient-violet {
    background: linear-gradient(135deg, var(--color-violet), var(--color-fuchsia));
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(125, 0, 250, 0.3);
}

.btn-gradient-violet:hover {
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-violet));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 0, 250, 0.4);
    color: white;
}

.btn-gradient-magenta {
    background: linear-gradient(135deg, var(--color-fuchsia), var(--color-magenta));
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 0, 250, 0.3);
}

.btn-gradient-magenta:hover {
    background: linear-gradient(135deg, var(--color-magenta), var(--color-fuchsia));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 0, 250, 0.4);
    color: white;
}



/*Member ship page start*/
 .subscription-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            margin-bottom: 2rem;
        }
        
        .subscription-price {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .subscription-plan-type {
            font-size: 1.25rem;
            font-weight: 600;
            color: #495057;
            margin-bottom: 1.5rem;
        }
        
        .progress-container {
            margin: 1.5rem 0;
        }
        
        .progress-bar-custom {
            height: 12px;
            border-radius: 10px;
            background: #e9ecef;
            overflow: hidden;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            border-radius: 10px;
            width: 100%;
            position: relative;
            animation: progressGlow 2s ease-in-out infinite;
        }
        
        @keyframes progressGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(0, 154, 250, 0.3); }
            50% { box-shadow: 0 0 20px rgba(0, 154, 250, 0.5); }
        }
        
        .expiry-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 0.75rem;
        }
        
        .expiry-text {
            font-size: 0.875rem;
            color: #6c757d;
            font-weight: 500;
        }
        
        .expiry-days {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-blue);
        }
        
        .renewal-note {
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.05), rgba(0, 250, 225, 0.05));
            padding: 1rem;
            border-radius: 12px;
            border-left: 4px solid var(--color-blue);
            margin-top: 1rem;
            font-size: 0.875rem;
            color: #495057;
        }
        
        .details-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            height: 100%;
        }
        
        .details-card h5 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e9ecef;
        }
        
        .detail-item {
            margin-bottom: 1.25rem;
        }
        
        .detail-label {
            font-size: 0.875rem;
            color: #6c757d;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .detail-value {
            font-size: 1rem;
            color: #212529;
            font-weight: 600;
        }
        
        .detail-value.empty {
            color: #adb5bd;
            font-style: italic;
        }
        
        .status-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .status-success {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }
        
        .payment-method-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.1), rgba(0, 250, 225, 0.1));
            color: var(--color-blue);
        }
/*Member ship page end*/



/*Forum page start*/
 .forums-header {
            margin-bottom: 2rem;
        }
        
        .forums-header h4 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .forums-header p {
            color: #6c757d;
            font-size: 1rem;
        }
        
        .forum-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 2px solid #e9ecef;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .forum-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.03), rgba(125, 0, 250, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .forum-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }
        
        .forum-card:hover::before {
            opacity: 1;
        }
        
        .forum-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .forum-card:hover .forum-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .forum-icon.blue {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
        }
        
        .forum-icon.pink {
            background: linear-gradient(135deg, #E91E63, #C2185B);
        }
        
        .forum-icon.beige {
            background: linear-gradient(135deg, #D4A574, #B8956A);
        }
        
        .forum-icon.purple {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
        }
        
        .forum-icon img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }
        
        .forum-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .forum-explore-btn {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            border: none;
            padding: 7px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(0, 154, 250, 0.3);
        }
        
        .forum-explore-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 154, 250, 0.4);
            color: white;
        }
/*Forum page end*/


/*Calendar page start*/
 .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .calendar-nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .calendar-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid #e9ecef;
            background: white;
            color: #495057;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .calendar-nav-btn:hover {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            border-color: transparent;
            transform: scale(1.05);
        }
        
        .calendar-month-year {
            font-size: 1.75rem;
            font-weight: 700;
            color: #212529;
        }
        
        .today-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 10px;
            border: 2px solid var(--color-blue);
            background: white;
            color: var(--color-blue);
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }
        
        .today-btn:hover {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            border-color: transparent;
        }
        
        .calendar-container {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .calendar-weekday {
            text-align: center;
            font-weight: 700;
            color: #6c757d;
            font-size: 0.875rem;
            padding: 0.75rem;
        }
        
        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }
        
        .calendar-day {
            min-height: 100px;
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            background: white;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        
        .calendar-day:hover {
            border-color: var(--color-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 154, 250, 0.2);
        }
        
        .calendar-day.other-month {
            background: #f8f9fa;
            color: #adb5bd;
        }
        
        .calendar-day.today {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
            border-color: #ffc107;
        }
        
        .day-number {
            font-weight: 700;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            color: #212529;
        }
        
        .calendar-day.other-month .day-number {
            color: #adb5bd;
        }
        
        .calendar-day.today .day-number {
            color: #ff9800;
        }
        
        .event-badge {
            display: block;
            padding: 0.25rem 0.5rem;
            margin-bottom: 0.25rem;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .event-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(0, 154, 250, 0.3);
        }
        
        .event-badge.multiple {
            background: linear-gradient(135deg, #1600fa, #00acfa);
        }
        
        .event-badge.secondary {
            background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
        }
/*Calendar page end*/


/*Download page start*/
  .downloads-header {
            margin-bottom: 2rem;
        }
        
        .downloads-header h4 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .download-card {
            background: white;
            border-radius: 20px;
            padding: 12px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 2px solid #e9ecef;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .download-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }
        
        .download-thumbnail {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .download-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .download-thumbnail .thumbnail-icon {
            font-size: 4rem;
            color: #adb5bd;
        }
        
.download-title {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}
        
        .download-date {
            font-size: 0.875rem;
            color: #6c757d;
            margin-bottom: 1rem;
        }
        
        .download-btn {
            background: white;
            color:#077cc6;
            border: 2px solid #00b6f3;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }
        
        .download-btn:hover {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            border-color: 2px solid #00b6f3;
            transform: translateY(-2px);
        }
        
        .pagination-custom {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }
        
        .pagination-custom .page-link {
            padding: 0.5rem 1rem;
            border: 2px solid #e9ecef;
            color: #495057;
            border-radius: 10px;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
        }
        
        .pagination-custom .page-link:hover {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            border-color: transparent;
        }
        
        .pagination-custom .page-link.active {
            background: linear-gradient(135deg, #074d7a, #3843b1);
            color: white;
            border-color: transparent;
        }
        
        .pagination-info {
            color: #6c757d;
            font-size: 0.875rem;
            margin: 0 1rem;
        }
/*Download page end*/


/*Resources page start*/
    .resources-header {
            margin-bottom: 2rem;
        }
        
        .resources-header h4 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .resource-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 2px solid #e9ecef;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.03), rgba(125, 0, 250, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }
        
        .resource-card:hover::before {
            opacity: 1;
        }
        
        .resource-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.1), rgba(0, 250, 225, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 30px;
            color: var(--color-blue);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .resource-card:hover .resource-icon {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(0, 154, 250, 0.3);
        }
        
        .resource-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .resource-view-all {
            color: var(--color-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .resource-view-all:hover {
            color: var(--color-violet);
            gap: 0.75rem;
        }
        
        .resource-view-all i {
            transition: transform 0.3s ease;
        }
        
        .resource-view-all:hover i {
            transform: translateX(5px);
        }
/*Resources page end*/





/* FaQ pages start */
 .faq-header {
            margin-bottom: 2rem;
        }
        
        .faq-header h4 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
    
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid #e9ecef;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, rgba(0, 154, 250, 0.05), rgba(125, 0, 250, 0.05));
        }
        
        .faq-question-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-blue);
            flex: 1;
            margin-right: 1rem;
        }
        
        .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, #198754, #86b7fe);
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.5rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        
        .faq-answer-text {
            font-size: 0.95rem;
			padding-top: 12px;
            color: #495057;
            line-height: 1.7;
        }
        
        .faq-item.active .faq-question {
            border-bottom: 1px solid #e9ecef;
        }
/*Faq pages end*/

/*Support page start*/
.support-header {
            margin-bottom: 2rem;
        }
        
        .support-header h4 {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-blue), var(--color-violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .add-query-btn {
            background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 154, 250, 0.3)
        }
        
        .add-query-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(125, 0, 250, 0.4);
        }
        
        .support-content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .support-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(0, 154, 250, 0.3);
        }
        
        .support-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
        }
        
        .support-description {
            font-size: 1rem;
            color: #6c757d;
            margin-bottom: 2rem;
            max-width: 600px;
        }
/*Support page end*/



/*Support add query page start*/
  .query-form-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
        }
        
        .query-form-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 2rem;
        }
        
        .reply-to-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .reply-to-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-violet), var(--color-fuchsia));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }
        
        .reply-to-text {
            font-size: 0.875rem;
            color: #6c757d;
        }
        
        .reply-to-email {
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-blue);
            border: 2px solid #e9ecef;
        }
        
        .form-label {
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--color-blue);
            box-shadow: 0 0 0 3px rgba(0, 154, 250, 0.1);
            outline: none;
        }
        
        .rich-text-editor {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .editor-toolbar {
            background: #f8f9fa;
            padding: 0.75rem;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .editor-btn {
            width: 36px;
            height: 36px;
            border: none;
            background: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #495057;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .editor-btn:hover {
            background: var(--color-blue);
            color: white;
        }
        
        .editor-content {
            min-height: 300px;
            padding: 1.5rem;
            background: white;
        }
        
        .editor-content:focus {
            outline: none;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
            color: white;
            border: none;
            padding: 0.75rem 2.5rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 154, 250, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(125, 0, 250, 0.4);
        }
        
        .back-btn {
            background: white;
            color: var(--color-violet);
            border: 2px solid var(--color-violet);
            padding: 0.5rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .back-btn:hover {
            background: linear-gradient(135deg, var(--color-violet), var(--color-fuchsia));
            color: white;
            border-color: transparent;
        }
/*Support add query page end*/


/*Forum details page setart*/
 .forum-hero {
            position: relative;
            min-height: 400px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 3rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        
        .forum-hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
            opacity: 0.9;
        }
        
        .forum-hero-content {
            position: relative;
            z-index: 10;
            padding: 4rem 2rem;
            color: white;
        }
        
        .forum-hero-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
           
        }
        
        .breadcrumb-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }
        
        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
        }
        
        .breadcrumb-custom .active {
            color: white;
            font-weight: 600;
        }
        
        .forum-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            max-width: 900px;
        }
        
        .mission-vision-section {
            background: #f8f9fa;
            padding: 1rem;
            margin: 3rem 0;
            border-radius: 20px;
        }
        
        .mission-vision-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            height: 100%;
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
        }
        
        .mission-vision-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 8px 25px rgba(0, 154, 250, 0.3);
        }
        
        .mission-vision-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .mission-vision-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #495057;
        }
        
        .community-section {
            background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
            padding: 4rem 2rem;
            border-radius: 20px;
            margin: 3rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .community-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(50px);
        }
        
        .community-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 2rem;
        }
        
        .community-title {
            font-size: 2.0rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .community-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 800px;
        }
        
        .join-now-btn {
            background: white;
            color: var(--color-violet);
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .join-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            color: var(--color-violet);
        }
        
        .members-section {
            margin: 3rem 0;
        }
        
        .members-title {
            font-size: 2rem;
            font-weight: 800;
            color: #212529;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .member-card {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
        }
        
        .member-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, #e9ecef, #dee2e6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #6c757d;
            overflow: hidden;
        }
        
        .member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .member-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 0.5rem;
        }
        
        .member-role {
            font-size: 0.875rem;
            color: var(--color-blue);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .member-org {
            font-size: 0.875rem;
            color: #6c757d;
        }
        
        .contact-section {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            margin: 3rem 0;
        }
        
        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #495057;
        }
        
        .contact-item i {
            color: var(--color-blue);
            font-size: 1.25rem;
        }
/*Forum details page end*/
/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 991.98px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
    }
    
    .dashboard-sidebar.show {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block !important;
    }
}

@media (max-width: 767.98px) {
    .dashboard-content {
        padding: 1rem;
    }
    
    .dashboard-topbar .topbar-left h5 {
        font-size: 0.875rem;
    }
    
    .welcome-card {
        padding: 1.25rem;
    }
    
    .welcome-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .membership-card {
        padding: 1.25rem;
    }
    
    .membership-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .event-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-tabs .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .events-section,
    .training-section {
        padding: 1.25rem;
    }
    
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .video-placeholder-large,
    .hero-slide {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 10px;
    }
	.topbar-left {padding-left: 68px;}
	.faq-header h4 { font-size: 21px;}
	.forum-hero-content{padding: 20px;}
	.forum-hero-title{font-size: 24px;}
	.community-section{padding: 20px;}
	.community-title{font-size: 21px;}
	.mission-vision-card{padding: 20px;}
	.breadcrumb-custom{font-size: 12px;}
	.forum-description{font-size: 15px;}
}

@media (max-width: 575.98px) {
    .dashboard-topbar {
        height: 60px;
    }
    
	

    .user-profile-btn {
        padding: 0.375rem 0.75rem;
    }
    
    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .video-placeholder-large,
    .hero-slide {
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }
}

/* ==================== SMOOTH SCROLLBAR ==================== */
.dashboard-sidebar::-webkit-scrollbar {
    width: 6px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
    border-radius: 10px;
}

.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
}