:root {
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --primary-color: #0d47a1; /* Enterprise Blue */
    --secondary-color: #1976d2;
    --accent-color: #0ea5e9;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --whatsapp-color: #25D366;
    
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-section {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-alt { background-color: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
}

.logo span {
    color: var(--text-dark);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Buttons */
.btn-primary, .btn-outline, .btn-primary-sm, .btn-whatsapp {
    display: inline-block;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(13, 71, 161, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(13, 71, 161, 0.3);
    color: #fff;
}

.btn-outline {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary-sm {
    padding: 8px 18px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
}

.btn-primary-sm:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary-sm {
    display: inline-block;
    padding: 8px 24px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    width: fit-content;
}

.btn-secondary-sm:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.btn-whatsapp {
    padding: 12px 28px;
    background-color: var(--whatsapp-color);
    color: #fff;
    border: 2px solid var(--whatsapp-color);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #070913;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s;
    display: flex;
    align-items: center;
    z-index: 1;
    transform: scale(1.1); /* Prep for Ken Burns */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, visibility 1.5s, transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 9, 19, 0.9) 0%, rgba(7, 9, 19, 0.4) 50%, rgba(7, 9, 19, 0.25) 100%);
    z-index: 2;
}

.slide-content-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.slide-content {
    background: rgba(10, 15, 30, 0.25) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.05) !important;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.slide-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 35px;
    opacity: 0.9;
}

.slide-actions {
    display: flex;
    gap: 15px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 10px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    border-top: 4px solid var(--accent-color);
    transition: all 0.3s;
}


.course-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.course-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Trading Categories */
.trading-cat {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.trading-cat:hover {
    background-color: var(--primary-color);
}

.trading-cat i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.trading-cat h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.trading-cat a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.trading-cat:hover * {
    color: #fff !important;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.blog-post {
    padding: 25px;
    background: var(--card-bg);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--card-shadow);
    border-radius: 4px;
}

.blog-post h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-post p {
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.blog-post a {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post a:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-dark) 100%);
    padding: 100px 0;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.8rem;
}

.cta-section p {
    color: #e2e8f0;
}

/* Footer */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
}

.text-center { text-align: center; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .slide-title { font-size: 2.8rem; }
    .slide-actions { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; }
}
\n
/* Product Grid & Categories */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-btn, .c-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}
.filter-btn.active, .course-filters .c-filter-btn.active, .filter-btn:hover, .course-filters .c-filter-btn:hover, .c-filter-btn.active, .c-filter-btn:hover {
    background: var(--primary-color);
    color: white;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}
.product-card.hidden {
    display: none;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.product-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.add-to-cart-btn:hover {
    background: var(--primary-color);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}
.cart-overlay.active {
    display: block;
}
.cart-sidebar {
    position: fixed;
    top: 0; right: -400px;
    width: 100%; max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.close-cart {
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
}
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.cart-item-title {
    font-weight: 700;
    color: var(--text-dark);
}
.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
}
.remove-item {
    color: #ef4444; background: none; border: none; cursor: pointer;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-alt);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s;
}
.floating-cart-btn:hover {
    transform: scale(1.1);
}
.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* --- Updated QTY Controls --- */
.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}
.qty-btn {
    background: var(--bg-alt);
    border: none;
    color: var(--text-dark);
    padding: 5px 12px;
    cursor: pointer;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
    transition: background 0.3s;
}
.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}
.qty-val {
    padding: 0 15px;
    font-weight: 700;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
}

/* --- Added Call Button --- */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-call:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
}

/* --- Product Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: white;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.1);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.2s;
}
.close-modal:hover {
    background: #ef4444; color: white;
}
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}
.modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#modalTitle {
    font-size: 2rem; margin-top: 10px; margin-bottom: 15px; color: var(--text-dark);
}
#modalPrice {
    font-size: 1.8rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px;
}
.add-to-cart-btn-modal {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media(max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-image img {
        height: 250px; min-height: auto;
    }
    .modal-info { padding: 30px 20px; }
}

/* --- Improved Smooth Buttons & Spacing --- */
.category-filters {
    margin-bottom: 60px; /* Space added before products */
    gap: 15px;
}
.filter-btn, .c-filter-btn {
    padding: 10px 24px;
    border: 2px solid transparent;
    background: var(--bg-alt);
    color: var(--text-muted);
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filter-btn:hover, .course-filters .c-filter-btn:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.filter-btn.active, .course-filters .c-filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
    border-color: var(--primary-color);
}


/* ==========================================================================
   GLASSMORPHISM PREMIUM OVERRIDE
   ========================================================================== */

:root {
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --accent-color: #f80759 !important;
    --whatsapp-color: #25D366 !important;
    
    --text-dark: #ffffff !important;
    --text-muted: #cbd5e1 !important;
    --border-color: rgba(255, 255, 255, 0.15) !important;
    
    --card-bg: rgba(20, 25, 40, 0.4) !important;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
    --hover-shadow: 0 15px 45px rgba(0, 210, 255, 0.2) !important;
    
    --glass-blur: blur(16px) !important;
    --glass-border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body {
    background: linear-gradient(45deg, #050a15, #111827, #020617, #0b1535) !important;
    background-size: 400% 400% !important;
    animation: gradientBG 20s ease infinite !important;
    color: var(--text-dark) !important;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Graphics Background Orbs */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite alternate ease-in-out;
}
body::before {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(0,210,255,0.25) 0%, rgba(0,0,0,0) 70%);
    top: -20%; left: -20%;
}
body::after {
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(248,7,89,0.2) 0%, rgba(0,0,0,0) 70%);
    bottom: -20%; right: -20%;
    animation-delay: -7s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 150px) scale(1.1); }
    66% { transform: translate(-100px, 50px) scale(0.9); }
    100% { transform: translate(50px, -50px) scale(1); }
}

/* Clear existing solid backgrounds */
.bg-light, .bg-alt, .py-section {
    background-color: transparent !important;
}

/* Glass Cards Implementation */
.stat-card, .service-card, .course-card, .trading-cat, .blog-post, .product-card, .modal-content, .cart-sidebar {
    background: var(--card-bg) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: var(--glass-border) !important;
    box-shadow: var(--card-shadow) !important;
    color: #ffffff !important;
}

.course-content, .product-info, .cart-footer, .cart-header, .cart-item {
    background: transparent !important;
    border-color: var(--border-color) !important;
}

/* Typography & Colors Adjustments for Dark Mode */
h1, h2, h3, h4, p, span, .logo, .logo span, .nav-links a {
    color: #ffffff !important;
}
p.slide-subtitle { color: #e2e8f0 !important; }

/* Filter Buttons */
.filter-btn, .c-filter-btn {
    background: rgba(255,255,255,0.05) !important;
    border: var(--glass-border) !important;
    backdrop-filter: blur(5px) !important;
}
.filter-btn:hover, .course-filters .c-filter-btn:hover, .filter-btn.active, .course-filters .c-filter-btn.active {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4) !important;
}

/* Premium Hero Slider Enhancements */
.slide-content {
    background: rgba(10, 15, 30, 0.3) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 50px !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
}
.slide-title {
    background: linear-gradient(45deg, #ffffff 30%, #00d2ff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 10px 30px rgba(0,210,255,0.3) !important;
}

/* Navbar Initial State */
.main-nav {
    background: rgba(10, 15, 30, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: var(--glass-border) !important;
}

/* Cart Specific */
.cart-sidebar {
    background: rgba(10, 15, 25, 0.85) !important;
}
.cart-item-title, .cart-item-price, #cartTotalValue {
    color: #ffffff !important;
}
.cart-qty-controls {
    border-color: rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
}
.qty-btn {
    background: transparent !important;
    color: #fff !important;
}
.qty-btn:hover { background: rgba(255,255,255,0.1) !important; }

/* Modal Specifics */
#modalDesc, .product-info h3, #modalPrice {
    color: #ffffff !important;
}
.close-modal {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

/* Fix product image overlay issue */
.product-card img, .course-card img {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}


/* ==========================================================================
   THEME PANEL & LIGHT MODE
   ========================================================================== */

/* Theme Sidebar & Button */
.theme-settings-btn {
    position: fixed;
    top: 150px;
    right: 0;
    background: #ffffff;
    color: #0f172a;
    width: 60px;
    height: 50px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 9999;
    border: 1px solid #e2e8f0;
    border-right: none;
    transition: width 0.3s;
}
.theme-settings-btn:hover {
    width: 70px;
}
body.dark-mode .theme-settings-btn {
    background: rgba(20, 25, 40, 0.9);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

.theme-sidebar {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 10000;
    transition: right 0.3s ease;
    padding: 25px;
    color: #0f172a;
}
.theme-sidebar.active {
    right: 0;
}
body.dark-mode .theme-sidebar {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(15, 23, 42, 0.5);
    color: #ffffff;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.theme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.theme-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: inherit !important;
}
.close-theme {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #64748b;
}

.theme-label {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Mode toggles */
.mode-toggles {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.mode-btn {
    flex: 1;
    padding: 20px 0;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mode-btn:hover { border-color: var(--primary-color); }
.mode-btn.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}
body.dark-mode .mode-btn { background: #1e293b; border-color: #334155; }
body.dark-mode .mode-btn.active { background: #ffffff !important; color: #0f172a !important; border-color: #ffffff !important; }

/* Colors layout */
.color-toggles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.color-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
body.dark-mode .color-btn { background: #1e293b; border-color: #334155; }

.color-btn::before {
    content: '';
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--btn-color);
}
.color-btn.active {
    border-color: var(--btn-color);
    box-shadow: 0 0 15px var(--btn-color);
}

.fullscreen-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    color: #0f172a;
}
.fullscreen-btn:hover { background: #f8fafc; border-color: #cbd5e1; }
body.dark-mode .fullscreen-btn { background: #1e293b; border-color: #334155; color: #fff; }

/* --- Light Mode Overrides --- */
body.light-mode {
    background: #f8fafc !important;
    animation: none !important;
    color: #0f172a !important;
}

body.light-mode::before, body.light-mode::after {
    display: none !important;
}

body.light-mode .stat-card, 
body.light-mode .service-card, 
body.light-mode .course-card, 
body.light-mode .trading-cat, 
body.light-mode .blog-post, 
body.light-mode .product-card, 
body.light-mode .modal-content, 
body.light-mode .cart-sidebar {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    color: #0f172a !important;
}

body.light-mode h1, body.light-mode h2, body.light-mode h3, body.light-mode h4, body.light-mode p, body.light-mode span, body.light-mode .logo, body.light-mode .logo span, body.light-mode .nav-links a, body.light-mode .cart-item-title, body.light-mode .cart-item-price, body.light-mode #cartTotalValue, body.light-mode #modalDesc, body.light-mode .product-info h3, body.light-mode #modalPrice {
    color: #0f172a !important;
}

body.light-mode .filter-btn, .c-filter-btn {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #64748b !important;
}

body.light-mode .filter-btn.active, .course-filters .c-filter-btn.active, body.light-mode .filter-btn:hover, .course-filters .c-filter-btn:hover, body.light-mode .c-filter-btn.active, body.light-mode .c-filter-btn:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

body.light-mode .slide-content {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

body.light-mode .slide-title {
    background: none !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    text-shadow: none !important;
}

body.light-mode .main-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.light-mode .main-footer {
    background: #0f172a !important;
}
body.light-mode .main-footer h3, body.light-mode .main-footer p, body.light-mode .main-footer a, body.light-mode .main-footer i {
    color: #f1f5f9 !important;
}

body.light-mode .btn-primary, body.light-mode .btn-primary-sm, body.light-mode .add-to-cart-btn, body.light-mode .add-to-cart-btn-modal, body.light-mode #fullscreenBtn {
    color: #ffffff !important;
}

.floating-wa-btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s ease;
    text-decoration: none;
}

.floating-wa-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    color: white;
}


/* ========================================================= */
/* PURE GLASSMORPHISM GLOBAL THEME OVERRIDES */
/* ========================================================= */

body {
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1025 50%, #0d1b2a 100%) !important;
    background-attachment: fixed !important;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(var(--primary-color-rgb, 139,92,246), 0.1) 0%, transparent 50%);
    animation: rotateBg 30s linear infinite;
    z-index: -1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glass Navbar */
.main-nav {
    background: rgba(15, 23, 42, 0.2) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Glass Cards */
.product-card, .course-card, .service-card, .blog-post {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.product-card:hover, .course-card:hover, .service-card:hover, .blog-post:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb, 139,92,246), 0.2) !important;
}

/* Glass Filter Tabs - Image Matched */
.category-filters .filter-btn, 
.category-filters .c-filter-btn,
.course-filters .c-filter-btn {
    background: rgba(248, 250, 252, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b !important; /* Deeper dark slate for better readability */
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important; /* Bolder as requested */
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin: 5px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.category-filters .filter-btn:hover, 
.category-filters .c-filter-btn:hover,
.course-filters .c-filter-btn:hover {
    background: #ffffff !important;
    border-color: #ea8917 !important; /* Orange border on hover */
    color: #ea8917 !important;
    transform: translateY(-2px) !important;
}

.category-filters .filter-btn.active, 
.category-filters .c-filter-btn.active,
.course-filters .c-filter-btn.active {
    background: #ea8917 !important; 
    color: #ffffff !important;
    border-color: #ea8917 !important;
    box-shadow: 0 4px 15px rgba(234, 137, 23, 0.4) !important;
}

/* Dark Mode Overrides for Filters */
.dark-mode .category-filters .filter-btn, 
.dark-mode .category-filters .c-filter-btn,
.dark-mode .course-filters .c-filter-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
}

.dark-mode .category-filters .filter-btn.active, 
.dark-mode .category-filters .c-filter-btn.active,
.dark-mode .course-filters .c-filter-btn.active {
    background: #ea8917 !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(234, 137, 23, 0.5) !important;
}

/* Glass Modals */
.modal-content, .cart-sidebar {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
}

/* Glass Inputs */
input, textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}
input:focus, textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(var(--primary-color-rgb, 139,92,246), 0.3) !important;
    outline: none !important;
}

/* Base Sections matching glass */
.py-section.bg-alt, .py-section.bg-light {
    background-color: transparent !important;
}

/* Footers */
.main-footer {
    background: rgba(10, 15, 30, 0.5) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Ensure buttons work smoothly */
.btn-primary, .btn-primary-sm, .add-to-cart-btn, .add-to-cart-btn-modal, .btn-whatsapp {
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-primary-sm::before, .add-to-cart-btn::before, .add-to-cart-btn-modal::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before, .add-to-cart-btn:hover::before {
    left: 100%;
}

/* Service Card Premium Styles */
.service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: space-between;
    padding: 40px !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.25) !important;
}

.service-card i {
    font-size: 3rem !important;
    margin-bottom: 25px !important;
    color: var(--primary-color) !important;
    transition: 0.3s;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.service-card p {
    flex-grow: 1 !important;
    margin-bottom: 25px !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;`n    text-transform: uppercase;`n    letter-spacing: 0.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.service-card:hover .read-more-link {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* Fix Blog Post Heights and Link Color */
.blog-post {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 20px;
}
.blog-post p {
    flex-grow: 1;
}
.blog-post a {
    color: var(--primary-color) !important;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
body.light-mode .blog-post a {
    color: var(--primary-color) !important;
}

/* Upgrade Hero Slider Design */
.slide-content-wrapper .slide-content {
    background: rgba(10, 15, 30, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.05) !important;
}
.slide-title {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}
.slide-subtitle {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.trading-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


/* ABSOLUTE OVERRIDES FOR LIGHT MODE SLIDER & BLOG POSTS */
body.light-mode .slide-content .btn-outline {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: bold;
}
body.light-mode .slide-content .btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.blog-post {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: space-between;
    padding: 30px;
}
.blog-post h3 {
    margin-bottom: 15px;
}
.blog-post p {
    flex-grow: 1 !important;
    margin-bottom: 20px;
}
.blog-post a, .blog-post a.open-blog-modal {
    margin-top: auto !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(128,128,128,0.2);
    padding-top: 15px;
    width: 100%;
}


.service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: space-between;
}
.service-card p {
    flex-grow: 1 !important;
    margin-bottom: 20px;
}

/* ABSOLUTE SLIDER FIXES */
body .slide-content .btn-outline {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: bold !important;
}
body .slide-content .btn-outline:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}


/* LIGHT MODE FIX FOR CART QUANTITY BUTTONS */
body.light-mode .cart-qty-controls {
    border-color: rgba(0,0,0,0.2) !important;
    background: rgba(0,0,0,0.05) !important;
}
body.light-mode .qty-btn {
    color: var(--primary-color) !important;
}
body.light-mode .qty-btn:hover {
    background: rgba(0,0,0,0.1) !important;
    color: var(--text-dark) !important;
}

/* FIX THEME TOGGLE GEAR IN LIGHT MODE */
body.light-mode .theme-toggle {
    background: #ffffff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    border: 2px solid var(--primary-color) !important;
    z-index: 9999 !important;
}
body.light-mode .theme-panel {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    z-index: 9998 !important;
}
body.light-mode .theme-panel h4 {
    color: #000000 !important;
}
body.light-mode .theme-panel p {
    color: #444444 !important;
}

/* ENHANCED SMOOTHNESS & PRODUCT ARRANGEMENT FIX */
html {
    scroll-behavior: smooth !important;
}

/* Force specific max-widths and flex properties so the card arrangements never stretch too wide */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 30px !important;
    align-items: stretch !important;
}

.card-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 30px !important;
    align-items: stretch !important;
}

/* Guarantee Smooth Image hover */
.product-card img, .course-card img {
    transition: transform 0.5s ease-in-out !important;
}
.product-card:hover img, .course-card:hover img {
    transform: scale(1.1) !important;
}

/* Service cards smooth transition */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1) !important;
}

@keyframes slideInUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* ========================================================= */
/* PREMIUM "READ MORE" BUTTON STANDARDIZATION */
/* ========================================================= */

.btn-secondary-sm {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 28px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    width: fit-content !important;
    margin-top: 10px;
}

.btn-secondary-sm:hover {
    background: var(--primary-color, #00d2ff) !important;
    border-color: var(--primary-color, #00d2ff) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4) !important;
}

/* Specific override for Blog Post links to match button style */
.blog-post a.btn-secondary-sm, .blog-post .open-blog-modal.btn-secondary-sm {
    margin-top: 20px !important;
    border-top: none !important;
    padding-top: 10px !important;
    width: fit-content !important;
    align-self: flex-start !important;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .btn-secondary-sm {
        padding: 8px 20px !important;
        font-size: 0.75rem !important;
    }
}

/* ========================================================= */
/* PREMIUM LANDING PAGE REDESIGN (MATCHING SCREENSHOTS) */
/* ========================================================= */

.btn-call-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    color: #0f172a;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-call-premium:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.slide-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding-top: 80px;
}

.slide:nth-child(even) .slide-content-wrapper {
    align-items: center;
}

.slide-content-premium {
    max-width: 750px;
    padding: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.title-divider-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.title-divider-premium span {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    flex: 1;
}

.title-divider-premium i {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Adjust stats row to be outside the box if needed, or just better padding */
.slide-stats-premium {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 0;
}

/* Centered version special styling (like screenshot 2) */
.slide:nth-child(even) .slide-content-premium {
    text-align: center;
    max-width: 750px;
}

.slide:nth-child(even) .slide-actions-premium {
    justify-content: center;
}

.slide:nth-child(even) .slide-stats-premium {
    justify-content: center;
}

.slide-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-title-premium {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    color: #ffffff;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.slide-subtitle-premium {
    font-size: 1.35rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.slide-subtitle-premium strong {
    display: block;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.slide-stats-premium {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.stat-item .val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-item .lbl {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-top: 4px;
}

.slide-actions-premium {
    display: flex;
    gap: 20px;
}

.btn-primary-premium {
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #eb8a2f; /* Solid Orange from screenshot */
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(235, 138, 47, 0.3);
}

.btn-primary-premium:hover {
    background: #d47a26;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 138, 47, 0.4);
    color: #fff;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff; /* White background from screenshot */
    color: #0f172a;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid #0f172a; /* Dark border from screenshot */
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    color: #0f172a;
}

.slider-btn-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.slider-btn-premium:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-indicators-premium {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-indicators-premium .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicators-premium .indicator.active {
    background: #ea8917;
    width: 30px;
    border-radius: 10px;
}

/* Features Bar */
.hero-features-bar {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    z-index: 20;
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.5s;
}

.features-grid-premium {
    background: #ffffff; /* Solid white background as requested */
    border-radius: 24px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #f1f5f9;
}

.feature-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
}

.feature-item-premium:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}

.feature-item-premium .f-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.feature-item-premium:hover .f-icon {
    transform: scale(1.1) rotateY(180deg);
}

.feature-item-premium .f-text h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: #0f172a;
}

.feature-item-premium .f-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Trusted Brands */
.trusted-brands {
    padding: 120px 0 60px;
    text-align: center;
}

.brands-title {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.brands-title::before, .brands-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: #e2e8f0;
}

.brands-title::before { right: 100%; margin-right: 20px; }
.brands-title::after { left: 100%; margin-left: 20px; }

.brands-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    filter: grayscale(1);
    opacity: 0.5;
}

.brand-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--primary-color);
}

/* Adjustment for the About section which comes after hero */
#about {
    padding-top: 100px !important;
}

@media (max-width: 1100px) {
    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .feature-item-premium:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .slide-title-premium {
        font-size: 2.8rem;
    }
    .features-grid-premium {
        grid-template-columns: 1fr;
    }
    .feature-item-premium {
        border-right: none !important;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }
    .hero-slider {
        height: auto;
        min-height: 100vh;
    }
    .slide-stats-premium {
        gap: 20px;
        flex-wrap: wrap;
    }
    .brands-logo-grid {
        gap: 30px;
    }
}
