/* home page css */
:root {
    --color-primary: #390099; /* Deep Indigo/Violet */
    --color-secondary: #FFBD00; /* Bright Gold/Yellow Accent */
    --color-tertiary: #FF0054; /* Bright Magenta/Highlight */
    --color-peach-yellow: #F8DAA7; /* Peach Yellow for cards */
    --color-black: #000000; /* Black background */
    --color-white: #ffffff; /* White text */
    --color-text: #1a365d; /* Deep Blue for readability */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Ensure wrapper and content are visible */
.antialiased {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* Font specifications */
h1, h2, h3, h4, h5, h6, .font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

p, .font-body {
    font-family: 'Roboto', sans-serif;
}
.h-10 {
    height: 3.5rem !important;
}
/* General styling */
.h-30{ height: 55px; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-primary { color: #000000; }
.text-secondary { color: var(--color-secondary); }
/* --- NEW PREMIUM DARK BACKGROUND FOR PRELOADER/FOOTER --- */
.bg-premium-dark {
background: var(--color-primary); 
/* Subtle vertical gradient for depth and richness */
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}
/* --- Hero Section Text Animation --- */
.hero-text-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; position: absolute; top: 0; left: 0; right: 0; width: 100%; }
.hero-text-item.active { opacity: 1; transform: translateY(0); }

/* --- Header with Black Overlay --- */
#main-header {
    background: transparent;
    transform: translateY(-100%);
    transition: transform 0.0s ease-out, box-shadow 0.3s ease; 
    backdrop-filter: blur(20px);
}
#main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
#main-header.scrolled {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Header text styling */
#main-header a, #main-header button {
    color: var(--color-white) !important;
    font-family: 'Roboto Condensed', sans-serif;
}

/* --- Hero Image Fix (Ensures image covers viewport height) --- */
#hero .absolute.inset-0.z-0 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#hero .absolute.inset-0.z-0 > div {
     width: 100%;
     height: 100%;
     object-fit: cover;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}
/* Mobile: Set minimum height for hero section and images */
@media (max-width: 1023px) {
    #hero {
        min-height: 60vh;
        position: relative;
        z-index: 1;
        overflow: visible;
    }
    #hero .absolute.inset-0.z-0 {
        height: 100%;
        min-height: 60vh;
    }
    #hero .absolute.inset-0.z-0 > div {
        min-height: 60vh;
    }
    /* Ensure main and sections are visible */
    main {
        position: relative;
        z-index: 2;
        width: 100%;
        display: block;
        visibility: visible;
    }
    section {
        position: relative;
        z-index: 2;
        width: 100%;
        display: block;
        visibility: visible;
    }
    /* Ensure all sections after hero are visible */
    #hero ~ main,
    #hero ~ main section {
        position: relative;
        z-index: 2;
    }
}
/* Desktop: Apply 100vh height on desktop screens */
@media (min-width: 1024px) {
    #hero .absolute.inset-0.z-0 > div {
        height: 100vh;
    }
}

/* --- Global Card Styles with Peach Yellow Background --- */
.floating-advantage-card {
    background: var(--color-peach-yellow);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--color-black);
}
.floating-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.floating-advantage-card h1, .floating-advantage-card h2, .floating-advantage-card h3, 
.floating-advantage-card h4, .floating-advantage-card h5, .floating-advantage-card h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--color-black);
}
.floating-advantage-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
}
.advantage-img-wrapper { height: 250px; border-bottom: 5px solid var(--color-secondary); }
.bg-textured-light { background-color: var(--color-black); }

/* BUTTON Styling with Roboto Condensed */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3); 
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Peach Yellow button for cards */
.btn-peach {
    background: var(--color-peach-yellow);
    color: var(--color-black);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* List styling with white bullets */
ul, ol {
    color: var(--color-white);
}
ul li::marker, ol li::marker {
    color: var(--color-white);
}

/* Text highlights with peach yellow */
.text-highlight {
    color: var(--color-peach-yellow);
}

/* Section backgrounds */
.bg-light-gray {
    background-color: var(--color-black);
}

/* PRELOADER */
@keyframes pulse-once { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); opacity: 0.8; } }
.animate-pulse { animation: pulse-once 1.5s infinite ease-in-out; }

/* Brand Logo Slider Styles */
.brand-slider-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.brand-slider-track {
    display: flex;
    width: fit-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.brand-slider-track-1 {
    animation: slideLeft1 30s infinite linear;
}
.brand-slider-track-2 {
    animation: slideLeft2 25s infinite linear;
}
@keyframes slideLeft1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes slideLeft2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.brand-logo-item {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.brand-logo-item:hover {
    opacity: 1;
}

/* Mobile Slider Styles */
.mobile-slider-container {
    overflow: hidden;
    position: relative;
}
.mobile-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-out;
}
.mobile-slider-wrapper .floating-advantage-card,
.mobile-slider-wrapper .mentor-card {
    width: calc(100% - 24px);
    min-width: calc(100% - 24px);
    flex-shrink: 0;
    box-sizing: border-box;
    margin-right: 24px;
}
.mobile-slider-wrapper .floating-advantage-card:last-child,
.mobile-slider-wrapper .mentor-card:last-child {
    margin-right: 0;
}
.mobile-slider-container {
    padding: 0 12px;
}
.mobile-slider-wrapper {
    padding-left: 0;
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.slider-nav-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}
.slider-nav-btn.prev {
    left: 10px;
}
.slider-nav-btn.next {
    right: 10px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: var(--color-secondary);
    width: 24px;
    border-radius: 5px;
}
@media (min-width: 1024px) {
    .mobile-slider-container,
    .slider-nav-btn,
    .slider-dots {
        display: none !important;
    }
}
@media (max-width: 1023px) {
    .desktop-grid {
        display: none !important;
    }
}
.mentor-card {
    height: 400px;
}
.h-100 {
    height: 400px;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-black);
    border-left: 2px solid rgba(255, 189, 0, 0.3);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.active {
    right: 0;
}
.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 189, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header img {
    height: 40px;
}
.mobile-sidebar-close {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-sidebar-close:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: rotate(90deg);
}
.mobile-sidebar-nav {
    padding: 1.5rem 0;
    flex: 1;
}
.mobile-sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 189, 0, 0.1);
    border-left-color: var(--color-secondary);
    color: var(--color-secondary);
    padding-left: 2rem;
}
.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 189, 0, 0.2);
}
.mobile-sidebar-footer .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}
body.sidebar-open {
    overflow: hidden;
}




/* about us css */
:root {
    --color-primary: #390099; /* Deep Indigo/Violet */
    --color-secondary: #FFBD00; /* Bright Gold/Yellow Accent */
    --color-tertiary: #FF0054; /* Bright Magenta/Highlight */
    --color-peach-yellow: #F8DAA7; /* Peach Yellow for cards */
    --color-black: #000000; /* Black background */
    --color-white: #ffffff; /* White text */
    --color-text: #1a365d; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* Font specifications */
h1, h2, h3, h4, h5, h6, .font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

p, .font-body {
    font-family: 'Roboto', sans-serif;
}

/* General styling */
.h-30{ height: 55px; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-primary { color: #000000; }
.text-secondary { color: var(--color-secondary); }

/* --- Global Card Styles with Peach Yellow Background --- */
.floating-advantage-card {
    background: var(--color-peach-yellow);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--color-black);
}
.floating-advantage-card:hover {
    transform: translateY(-4px); 
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
.floating-advantage-card h1, .floating-advantage-card h2, .floating-advantage-card h3, 
.floating-advantage-card h4, .floating-advantage-card h5, .floating-advantage-card h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--color-black);
}
.floating-advantage-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
}

/* BUTTON Styling with Roboto Condensed */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3); 
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}

/* Peach Yellow button for cards */
.btn-peach {
    background: var(--color-peach-yellow);
    color: var(--color-black);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 0, 0.3);
}

/* --- NEW PREMIUM DARK BACKGROUND FOR FOOTER --- */
.bg-premium-dark {
    background: var(--color-primary); 
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Stat counter animation */
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--color-black);
}
@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

/* Image styling */
.about-image {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}
.about-image:hover {
    transform: scale(1.02);
}

/* Mission/Vision card improvements */
.mission-vision-card {
    background: var(--color-peach-yellow);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--color-secondary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}
.mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Enhanced Why Choose cards */
.why-choose-card {
    background: var(--color-peach-yellow);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .why-choose-card {
        padding: 2rem;
    }
}
.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.why-choose-card:hover::before {
    transform: scaleX(1);
}
.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}
.why-choose-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .why-choose-icon {
        width: 64px;
        height: 64px;
    }
}

/* Team Card Styles */
.team-card {
    background: var(--color-peach-yellow);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    color: var(--color-black);
    text-align: center;
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.team-card:hover::before {
    transform: scaleX(1);
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}
.team-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}
.team-card:hover .team-image-wrapper {
    transform: scale(1.05);
    border-color: var(--color-primary);
}
.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}
.team-card .team-position {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.team-card .team-bio {
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.btn-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}
.btn-linkedin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #005885 0%, #0077b5 100%);
}
.btn-linkedin svg {
    width: 18px;
    height: 18px;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-black);
    border-left: 2px solid rgba(255, 189, 0, 0.3);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.active {
    right: 0;
}
.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 189, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header img {
    height: 40px;
}
.mobile-sidebar-close {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-sidebar-close:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: rotate(90deg);
}
.mobile-sidebar-nav {
    padding: 1.5rem 0;
    flex: 1;
}
.mobile-sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 189, 0, 0.1);
    border-left-color: var(--color-secondary);
    color: var(--color-secondary);
    padding-left: 2rem;
}
.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 189, 0, 0.2);
}
.mobile-sidebar-footer .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}
body.sidebar-open {
    overflow: hidden;
}



/* advantages css */
:root {
    --color-primary: #390099; /* Deep Indigo/Violet */
    --color-secondary: #FFBD00; /* Bright Gold/Yellow Accent */
    --color-tertiary: #FF0054; /* Bright Magenta/Highlight */
    --color-peach-yellow: #F8DAA7; /* Peach Yellow for cards */
    --color-black: #000000; /* Black background */
    --color-white: #ffffff; /* White text */
    --color-text: #1a365d; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* Font specifications */
h1, h2, h3, h4, h5, h6, .font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

p, .font-body {
    font-family: 'Roboto', sans-serif;
}

/* General styling */
.h-30{ height: 55px; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-primary { color: #000000; }
.text-secondary { color: var(--color-secondary); }

/* --- Global Card Styles with Peach Yellow Background --- */
.floating-advantage-card {
    background: var(--color-peach-yellow);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--color-black);
}
.floating-advantage-card:hover {
    transform: translateY(-4px); 
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
.floating-advantage-card h1, .floating-advantage-card h2, .floating-advantage-card h3, 
.floating-advantage-card h4, .floating-advantage-card h5, .floating-advantage-card h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--color-black);
}
.floating-advantage-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
}

/* BUTTON Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3); 
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 0, 0.3);
}

/* Advantage Image Wrapper */
.advantage-img-wrapper {
    height: 250px;
    border-bottom: 5px solid var(--color-secondary);
    overflow: hidden;
}
.advantage-img-wrapper img {
    transition: transform 0.5s ease;
}
.floating-advantage-card:hover .advantage-img-wrapper img {
    transform: scale(1.05);
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-black);
    border-left: 2px solid rgba(255, 189, 0, 0.3);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.active {
    right: 0;
}
.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 189, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header img {
    height: 40px;
}
.mobile-sidebar-close {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-sidebar-close:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: rotate(90deg);
}
.mobile-sidebar-nav {
    padding: 1.5rem 0;
    flex: 1;
}
.mobile-sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 189, 0, 0.1);
    border-left-color: var(--color-secondary);
    color: var(--color-secondary);
    padding-left: 2rem;
}
.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 189, 0, 0.2);
}
.mobile-sidebar-footer .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}
body.sidebar-open {
    overflow: hidden;
}


/* membership css */
:root {
    --color-primary: #390099; /* Deep Indigo/Violet */
    --color-secondary: #FFBD00; /* Bright Gold/Yellow Accent */
    --color-tertiary: #FF0054; /* Bright Magenta/Highlight */
    --color-peach-yellow: #F8DAA7; /* Peach Yellow for cards */
    --color-black: #000000; /* Black background */
    --color-white: #ffffff; /* White text */
    --color-text: #1a365d; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* Font specifications */
h1, h2, h3, h4, h5, h6, .font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

p, .font-body {
    font-family: 'Roboto', sans-serif;
}

/* General styling */
.h-30{ height: 55px; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-primary { color: #000000; }
.text-secondary { color: var(--color-secondary); }

/* --- NEW PREMIUM DARK BACKGROUND FOR FOOTER --- */
.bg-premium-dark {
    background: var(--color-primary); 
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* BUTTON Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3); 
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 0, 0.3);
}

/* Membership Plan Cards */
.plan-card {
    background: var(--color-peach-yellow);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    color: var(--color-black);
}
.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}
.plan-card.featured {
    border-color: var(--color-secondary);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 189, 0, 0.4);
}
.plan-card.featured::before {
    height: 8px;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Plan Badge */
.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Benefits Table */
.benefits-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}
.benefits-table thead {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a0073 100%);
    color: var(--color-white);
}
.benefits-table thead th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
.benefits-table thead th:first-child {
    border-top-left-radius: 16px;
}
.benefits-table thead th:last-child {
    border-top-right-radius: 16px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e6a800 100%);
    color: var(--color-black);
}
.benefits-table tbody tr {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.benefits-table tbody tr:last-child {
    border-bottom: none;
}
.benefits-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}
.benefits-table tbody tr:hover {
    background: rgba(255, 189, 0, 0.1);
    transform: scale(1.01);
}
.benefits-table tbody td {
    padding: 1.5rem 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--color-white);
    vertical-align: middle;
}
.benefits-table tbody td:first-child {
    font-weight: 600;
    color: var(--color-secondary);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    min-width: 250px;
}
.benefits-table tbody td:not(:first-child) {
    text-align: center;
}
.benefits-table tbody td.featured-cell {
    background: linear-gradient(135deg, rgba(255, 189, 0, 0.15) 0%, rgba(255, 189, 0, 0.25) 100%);
    font-weight: 600;
    color: var(--color-secondary);
    position: relative;
    padding-left: 2.5rem;
}
.benefits-table tbody td.featured-cell::before {
    content: '⭐';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

/* Check Icon */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e6a800 100%);
    border-radius: 50%;
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.875rem;
    margin-right: 0.75rem;
    box-shadow: 0 2px 8px rgba(255, 189, 0, 0.3);
}

/* Plans Slider Styles */
.plans-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.plans-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.plans-slider-track {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.plans-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.plan-slide-card {
    min-width: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
}

.plan-slide-card.featured-plan-card {
    background: linear-gradient(135deg, rgba(255, 189, 0, 0.15) 0%, rgba(255, 189, 0, 0.25) 100%);
    border: 2px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(255, 189, 0, 0.3);
}

.plan-card-header {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.plan-card-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.featured-plan-card .plan-card-title {
    color: var(--color-secondary);
}

.plan-card-header .plan-badge {
    margin-top: 0.5rem;
    display: inline-block;
}

.plan-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.plan-card-body::-webkit-scrollbar {
    width: 6px;
}

.plan-card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.plan-card-body::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 10px;
}

.plan-card-body::-webkit-scrollbar-thumb:hover {
    background: #e6a800;
}

.plan-benefit-item {
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 189, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-secondary);
}

.plan-benefit-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.plan-benefit-value {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: var(--color-white);
    line-height: 1.5;
    display: flex;
    align-items: center;
    word-wrap: break-word;
}

.plan-benefit-value.featured-value {
    color: var(--color-secondary);
    font-weight: 600;
}

.plans-slider-arrow {
    background: rgba(255, 189, 0, 0.2);
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    z-index: 10;
    outline: none;
    pointer-events: auto;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.plans-slider-arrow:hover:not(:disabled) {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 189, 0, 0.5);
}

.plans-slider-arrow:active:not(:disabled) {
    transform: scale(0.95);
}

.plans-slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.plans-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    z-index: 5;
}

.slider-dot:hover {
    background: rgba(255, 189, 0, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--color-secondary);
    width: 32px;
    border-radius: 6px;
    border-color: var(--color-secondary);
}

@media (max-width: 640px) {
    .plans-slider-container {
        padding: 0 0.5rem;
    }
    
    .plans-slider-wrapper {
        gap: 0.5rem;
    }
    
    .plans-slider-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .plans-slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .plan-slide-card {
        padding: 1.25rem 1rem;
    }
    
    .plan-card-title {
        font-size: 1.25rem;
    }
    
    .plan-card-body {
        gap: 0.875rem;
        max-height: 55vh;
    }
    
    .plan-benefit-item {
        padding: 0.75rem;
    }
    
    .plan-benefit-label {
        font-size: 0.8rem;
    }
    
    .plan-benefit-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .plans-slider-container {
        padding: 0 0.25rem;
    }
    
    .plans-slider-arrow {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .plans-slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .plan-slide-card {
        padding: 1rem 0.875rem;
        border-radius: 16px;
    }
    
    .plan-card-title {
        font-size: 1.125rem;
    }
    
    .plan-card-body {
        max-height: 50vh;
    }
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-black);
    border-left: 2px solid rgba(255, 189, 0, 0.3);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.active {
    right: 0;
}
.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 189, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header img {
    height: 40px;
}
.mobile-sidebar-close {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-sidebar-close:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: rotate(90deg);
}
.mobile-sidebar-nav {
    padding: 1.5rem 0;
    flex: 1;
}
.mobile-sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 189, 0, 0.1);
    border-left-color: var(--color-secondary);
    color: var(--color-secondary);
    padding-left: 2rem;
}
.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 189, 0, 0.2);
}
.mobile-sidebar-footer .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}
body.sidebar-open {
    overflow: hidden;
}

/* Responsive Table */
@media (max-width: 768px) {
    .benefits-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .benefits-table thead,
    .benefits-table tbody,
    .benefits-table tr,
    .benefits-table td,
    .benefits-table th {
        display: block;
    }
    .benefits-table thead {
        display: none;
    }
    .benefits-table tr {
        margin-bottom: 1rem;
        background: var(--color-peach-yellow);
        border-radius: 12px;
        padding: 1rem;
        color: var(--color-black);
    }
    .benefits-table td {
        border: none;
        padding: 0.5rem 0;
        color: var(--color-black);
    }
    .benefits-table td:before {
        content: attr(data-label);
        font-weight: 700;
        display: inline-block;
        width: 40%;
        color: var(--color-primary);
        margin-right: 0.5rem;
    }
}

:root { --color-primary:#390099; --color-secondary:#FFBD00; --color-black:#000; --color-white:#fff; }
body { font-family:'Roboto',sans-serif; background:#000; color:#fff; }
.font-condensed { font-family:'Roboto Condensed',sans-serif; }
.btn-primary { background:linear-gradient(135deg,#390099 0%, #FFBD00 100%); color:#fff; font-family:'Roboto Condensed',sans-serif; font-weight:600; padding:14px 36px; border-radius:12px; transition:all .3s ease; border:none; box-shadow:0 4px 15px rgba(57,0,153,.3); }
.link { color:#FFBD00; font-weight:600; }
.card { background:#0b0b0b; border:1px solid rgba(255,255,255,.12); box-shadow:0 10px 30px rgba(0,0,0,.4); border-radius:16px; }
input { color:#000 !important; }



:root {
    --color-primary: #390099; /* Deep Indigo/Violet */
    --color-secondary: #FFBD00; /* Bright Gold/Yellow Accent */
    --color-tertiary: #FF0054; /* Bright Magenta/Highlight */
    --color-peach-yellow: #F8DAA7; /* Peach Yellow for cards */
    --color-black: #000000; /* Black background */
    --color-white: #ffffff; /* White text */
    --color-text: #1a365d; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

/* Font specifications */
h1, h2, h3, h4, h5, h6, .font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

p, .font-body {
    font-family: 'Roboto', sans-serif;
}

/* General styling */
.h-30{ height: 55px; }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-primary { color: #000000; }
.text-secondary { color: var(--color-secondary); }

/* --- NEW PREMIUM DARK BACKGROUND FOR FOOTER --- */
.bg-premium-dark {
    background: var(--color-primary); 
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* BUTTON Styling */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3); 
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 189, 0, 0.3);
}

/* Media Link Cards */
.media-link-card {
    background: var(--color-peach-yellow);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    color: var(--color-black);
}
.media-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.media-link-card:hover::before {
    transform: scaleX(1);
}
.media-link-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}
.media-link-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.media-link-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}
.media-link-card h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}
.media-link-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.media-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 0, 153, 0.3);
}
.media-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 0, 153, 0.4);
}
.media-link-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-black);
    border-left: 2px solid rgba(255, 189, 0, 0.3);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.active {
    right: 0;
}
.mobile-sidebar-header {
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 189, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-sidebar-header img {
    height: 40px;
}
.mobile-sidebar-close {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-sidebar-close:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: rotate(90deg);
}
.mobile-sidebar-nav {
    padding: 1.5rem 0;
    flex: 1;
}
.mobile-sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}
.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
    background: rgba(255, 189, 0, 0.1);
    border-left-color: var(--color-secondary);
    color: var(--color-secondary);
    padding-left: 2rem;
}
.mobile-sidebar-footer {
    padding: 1.5rem;
    border-top: 2px solid rgba(255, 189, 0, 0.2);
}
.mobile-sidebar-footer .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}
body.sidebar-open {
    overflow: hidden;
}
select{
    color: var(--color-black) !important;
}
select option {
    color: var(--color-black);
}