/* SkuTrunk India Pvt Ltd - Custom Styles */

:root {
    /* Deep Navy Theme as Default */
    --primary-color: #1a365d;
    --secondary-color: #0f2027;
    --accent-color: #38a169;
    --text-dark: #232f3e;
    --text-muted: #565959;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #4299e1;
    --link-hover-color: #3182ce;
    --border-color: #dee2e6;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Amazon-style Fonts and Typography */
@import url('https://fonts.googleapis.com/css2?family=Amazon+Ember:wght@300;400;500;600;700&family=Amazon+Ember+Display:wght@400;500;600;700&display=swap');

/* Global Styles - Amazon Style */
body {
    font-family: 'Amazon Ember', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 76px;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amazon Ember Display', 'Amazon Ember', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.875rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.625rem;
}

h6 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

/* Enhanced Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Enhanced Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Enhanced Spacing and Layout */
.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-small {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(26, 54, 93, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Enhanced Animations and Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.25);
}

/* Enhanced Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Enhanced Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Amazon-style text sizes */
.text-small {
    font-size: 12px;
    line-height: 1.4;
}

.text-medium {
    font-size: 14px;
    line-height: 1.6;
}

.text-large {
    font-size: 16px;
    line-height: 1.6;
}

.text-xlarge {
    font-size: 18px;
    line-height: 1.5;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Navigation Styles - Amazon Style */
.navbar {
    background-color: var(--primary-color) !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
}

.navbar-brand {
    font-family: 'Amazon Ember Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-on-primary) !important;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.navbar-brand:hover {
    color: var(--text-on-primary) !important;
    opacity: 0.8;
}

.navbar-nav .nav-link {
    font-family: 'Amazon Ember', sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    color: var(--text-on-primary) !important;
    border-radius: 3px;
    margin: 0 0.125rem;
}

.navbar-nav .nav-link:hover {
    color: var(--text-on-primary) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--text-on-primary) !important;
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
}

/* Hero Section - Amazon Style */
.hero-section {
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 4rem 0;
    position: relative;
    transition: background 0.2s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Amazon Ember Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-on-primary);
}

.hero-subtitle {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: var(--text-on-primary);
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0.25rem 0.5rem 0.25rem 0;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-size: 14px;
}

/* Amazon-style Buttons */
.btn {
    font-family: 'Amazon Ember', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-on-accent);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-on-accent);
    opacity: 0.9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-on-primary);
    font-weight: 400;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-on-primary);
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #333333;
    font-weight: 500;
}

.btn-light:hover {
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    color: #333333;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Features Section - Amazon Style */
.features-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.feature-card {
    background: #ffffff;
    border-radius: 3px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    height: 100%;
    border: 1px solid #e7e7e7;
    margin-bottom: 1rem;
}

.feature-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.feature-title {
    font-family: 'Amazon Ember Display', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-description {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: var(--text-on-primary);
    padding: 60px 0;
    transition: background-color 0.3s ease;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* About Section - Amazon Style */
.about-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Amazon Ember Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Contact Form - Amazon Style */
.contact-form {
    background: #ffffff;
    border-radius: 3px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
}

.form-control {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #a6a6a6;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
    outline: none;
}

.form-label {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.btn-submit {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-submit:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    opacity: 0.9;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.25rem 0;
    color: var(--text-muted);
}

.product-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color) !important;
    color: var(--text-on-secondary) !important;
    transition: background-color 0.3s ease;
}

footer.bg-dark {
    background-color: var(--secondary-color) !important;
}

footer.text-light {
    color: var(--text-on-secondary) !important;
}

footer h5,
footer h6 {
    color: var(--text-on-secondary) !important;
}

footer h5.fw-bold,
footer h6.fw-bold {
    color: var(--text-on-secondary) !important;
}

footer p {
    color: var(--text-on-secondary) !important;
    opacity: 0.9;
}

footer p.text-muted {
    color: var(--text-on-secondary) !important;
    opacity: 0.8;
}

footer li {
    color: var(--text-on-secondary) !important;
    opacity: 0.8;
}

footer a {
    color: var(--text-on-secondary) !important;
    transition: color 0.3s ease;
    opacity: 0.8;
}

footer a.text-light {
    color: var(--text-on-secondary) !important;
}

footer a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    color: var(--text-on-secondary) !important;
}

footer .social-links a:hover {
    background: var(--accent-color);
    color: var(--text-on-accent) !important;
    transform: translateY(-2px);
}

/* Additional footer overrides for Bootstrap classes */
footer .text-muted {
    color: var(--text-on-secondary) !important;
    opacity: 0.8;
}

footer .list-unstyled li {
    color: var(--text-on-secondary) !important;
}

footer .list-unstyled a {
    color: var(--text-on-secondary) !important;
    text-decoration: none;
}

footer .list-unstyled a:hover {
    color: var(--accent-color) !important;
}

/* Ensure footer text is visible */
footer * {
    color: inherit;
}

footer .container {
    color: var(--text-on-secondary);
}

footer .row {
    color: var(--text-on-secondary);
}

footer .col-lg-4,
footer .col-lg-2,
footer .col-md-6 {
    color: var(--text-on-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card,
    .contact-form {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .text-gradient {
        color: var(--primary-color) !important;
        -webkit-text-fill-color: initial;
        background: none;
        font-weight: 600;
    }
}

/* Ensure text gradient is visible on hero section */
.hero-section .text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Fallback for hero section */
@supports not (-webkit-background-clip: text) {
    .hero-section .text-gradient {
        color: var(--text-on-primary) !important;
        -webkit-text-fill-color: initial;
        background: none;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #1e3a5f);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), #20c997);
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-switcher:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.theme-toggle-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.theme-options {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: none;
    display: none;
    z-index: 10000;
}

.theme-options.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Additional fallback for theme options visibility */
.theme-switcher .theme-options.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Force theme options to be visible when show class is present */
#themeOptions.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    z-index: 10000 !important;
}

.theme-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.theme-option:last-child {
    margin-bottom: 0;
}

.theme-option:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.theme-option.active {
    background: var(--primary-color);
    color: white;
}

.theme-color-preview {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
}

.theme-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.theme-description {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* Theme Color Schemes */
.theme-blue {
    --primary-color: #2c5aa0;
    --secondary-color: #1a2d4a;
    --accent-color: #28a745;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #4a90e2;
    --link-hover-color: #357abd;
}

.theme-teal {
    --primary-color: #20c997;
    --secondary-color: #0f5132;
    --accent-color: #fd7e14;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #17a2b8;
    --link-hover-color: #138496;
}

.theme-purple {
    --primary-color: #6f42c1;
    --secondary-color: #4a2c7a;
    --accent-color: #e83e8c;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #8b5cf6;
    --link-hover-color: #7c3aed;
}

.theme-green {
    --primary-color: #198754;
    --secondary-color: #0f5132;
    --accent-color: #0d6efd;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #20c997;
    --link-hover-color: #1aa179;
}

.theme-orange {
    --primary-color: #fd7e14;
    --secondary-color: #b8651b;
    --accent-color: #20c997;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #ff8c42;
    --link-hover-color: #e8590c;
}

.theme-navy {
    --primary-color: #1a365d;
    --secondary-color: #0f2027;
    --accent-color: #38a169;
    --text-on-primary: #ffffff;
    --text-on-secondary: #ffffff;
    --text-on-accent: #ffffff;
    --link-color: #4299e1;
    --link-hover-color: #3182ce;
}

/* Theme-specific text gradient overrides for better visibility */
.theme-blue .text-gradient {
    background: linear-gradient(135deg, #4a90e2, #28a745) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-teal .text-gradient {
    background: linear-gradient(135deg, #20c997, #fd7e14) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-purple .text-gradient {
    background: linear-gradient(135deg, #8b5cf6, #e83e8c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-green .text-gradient {
    background: linear-gradient(135deg, #20c997, #0d6efd) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-orange .text-gradient {
    background: linear-gradient(135deg, #ff8c42, #20c997) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.theme-navy .text-gradient {
    background: linear-gradient(135deg, #4299e1, #38a169) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .theme-blue .text-gradient { color: #4a90e2 !important; }
    .theme-teal .text-gradient { color: #20c997 !important; }
    .theme-purple .text-gradient { color: #8b5cf6 !important; }
    .theme-green .text-gradient { color: #20c997 !important; }
    .theme-orange .text-gradient { color: #ff8c42 !important; }
    .theme-navy .text-gradient { color: #4299e1 !important; }
}

/* Theme Dropdown in Navigation */
.theme-dropdown {
    min-width: 200px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#themeDropdown {
    border-color: rgba(255,255,255,0.3) !important;
    color: var(--text-on-primary) !important;
}

#themeDropdown:hover {
    background-color: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.5) !important;
    color: var(--text-on-primary) !important;
}

.theme-option-nav {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.theme-option-nav:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.theme-color-nav {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 0.75rem;
    border: 2px solid #dee2e6;
    display: inline-block;
}

.theme-option-nav.active {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}

.theme-option-nav.active .theme-color-nav {
    border-color: var(--text-on-primary);
}

/* Comprehensive Text Color Fixes */
/* Hero Section Text */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section .hero-title,
.hero-section .hero-subtitle {
    color: var(--text-on-primary) !important;
}

/* Stats Section Text */
.stats-section h1,
.stats-section h2,
.stats-section h3,
.stats-section h4,
.stats-section h5,
.stats-section h6,
.stats-section p,
.stats-section .stat-number,
.stats-section .stat-label {
    color: var(--text-on-primary) !important;
}

/* Features Section Text */
.features-section h1,
.features-section h2,
.features-section h3,
.features-section h4,
.features-section h5,
.features-section h6,
.features-section p,
.features-section .section-title,
.features-section .section-subtitle,
.features-section .feature-title,
.features-section .feature-description {
    color: var(--text-dark) !important;
}

/* About Section Text */
.about-section h1,
.about-section h2,
.about-section h3,
.about-section h4,
.about-section h5,
.about-section h6,
.about-section p,
.about-section .section-title,
.about-section .section-subtitle {
    color: var(--text-dark) !important;
}

/* Contact Section Text */
.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section h6,
.contact-section p,
.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--text-dark) !important;
}

/* Product Section Text */
.product-section h1,
.product-section h2,
.product-section h3,
.product-section h4,
.product-section h5,
.product-section h6,
.product-section p,
.product-section .section-title,
.product-section .section-subtitle,
.product-section .product-title,
.product-section .product-description {
    color: var(--text-dark) !important;
}

/* General Section Text */
.section-title {
    color: var(--text-dark) !important;
}

.section-subtitle {
    color: var(--text-muted) !important;
}

/* Link colors that work with themes */
a {
    color: var(--link-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover-color);
}

/* Ensure all headings use proper colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark) !important;
}

/* Ensure all paragraphs use proper colors */
p {
    color: var(--text-muted) !important;
}

/* Override Bootstrap text color classes */
.text-dark {
    color: var(--text-dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light {
    color: var(--text-on-primary) !important;
}

/* Override Bootstrap background classes for text sections */
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.bg-light p {
    color: var(--text-dark) !important;
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white p {
    color: var(--text-dark) !important;
}

/* Container and row text colors */
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    color: var(--text-dark) !important;
}

.container p {
    color: var(--text-muted) !important;
}

/* Specific overrides for common elements */
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
    color: var(--text-dark) !important;
}

.card p {
    color: var(--text-muted) !important;
}

/* Alert and notification text */
.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6 {
    color: inherit !important;
}

.alert p {
    color: inherit !important;
}

/* CTA Section Text Colors */
.bg-gradient-primary h1,
.bg-gradient-primary h2,
.bg-gradient-primary h3,
.bg-gradient-primary h4,
.bg-gradient-primary h5,
.bg-gradient-primary h6,
.bg-gradient-primary p,
.bg-gradient-primary .lead {
    color: var(--text-on-primary) !important;
}

.bg-gradient-primary.text-white h1,
.bg-gradient-primary.text-white h2,
.bg-gradient-primary.text-white h3,
.bg-gradient-primary.text-white h4,
.bg-gradient-primary.text-white h5,
.bg-gradient-primary.text-white h6,
.bg-gradient-primary.text-white p,
.bg-gradient-primary.text-white .lead {
    color: var(--text-on-primary) !important;
}

/* CTA Section Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* CTA Section Buttons */
.bg-gradient-primary .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary-color) !important;
}

.bg-gradient-primary .btn-light:hover {
    background-color: #f7f7f7 !important;
    border-color: #f7f7f7 !important;
    color: var(--primary-color) !important;
}

.bg-gradient-primary .btn-outline-light {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--text-on-primary) !important;
}

.bg-gradient-primary .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: var(--text-on-primary) !important;
}

/* Additional CTA Section Elements */
.bg-gradient-primary .mb-3,
.bg-gradient-primary .mb-0,
.bg-gradient-primary .text-lg-end {
    color: var(--text-on-primary) !important;
}

/* Lead text styling */
.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.bg-gradient-primary .lead {
    color: var(--text-on-primary) !important;
    opacity: 0.9;
}

/* Hide the floating theme switcher */
.theme-switcher {
    display: none !important;
}

/* Marketplace Logo Styling */
.marketplace-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.marketplace-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Amazon Logo */
.amazon-logo {
    background: linear-gradient(135deg, #ff9900, #ff6600);
}

.amazon-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Walmart Logo */
.walmart-logo {
    background: linear-gradient(135deg, #004c91, #007dc6);
}

.walmart-logo i {
    color: white;
    font-size: 2.5rem;
}

/* eBay Logo */
.ebay-logo {
    background: linear-gradient(135deg, #e53238, #0064d2);
}

.ebay-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Flipkart Logo */
.flipkart-logo {
    background: linear-gradient(135deg, #2874f0, #fb641b);
}

.flipkart-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Etsy Logo */
.etsy-logo {
    background: linear-gradient(135deg, #f16521, #d5641c);
}

.etsy-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Myntra Logo */
.myntra-logo {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.myntra-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Snapdeal Logo */
.snapdeal-logo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.snapdeal-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Paytm Logo */
.paytm-logo {
    background: linear-gradient(135deg, #00baf2, #00a8cc);
}

.paytm-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Analytics & Visualization Platform Logos */

/* Tableau Logo */
.tableau-logo {
    background: linear-gradient(135deg, #e97627, #f28e1c);
}

.tableau-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Power BI Logo */
.powerbi-logo {
    background: linear-gradient(135deg, #f2c811, #f7d94c);
}

.powerbi-logo i {
    color: #323130;
    font-size: 2.5rem;
}

/* Google Analytics Logo */
.google-analytics-logo {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.google-analytics-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Looker Logo */
.looker-logo {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.looker-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Metabase Logo */
.metabase-logo {
    background: linear-gradient(135deg, #509ee3, #7bb3f0);
}

.metabase-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Grafana Logo */
.grafana-logo {
    background: linear-gradient(135deg, #f46800, #ff8c00);
}

.grafana-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Mixpanel Logo */
.mixpanel-logo {
    background: linear-gradient(135deg, #7856ff, #9b7bff);
}

.mixpanel-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Amplitude Logo */
.amplitude-logo {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.amplitude-logo i {
    color: white;
    font-size: 2.5rem;
}

/* Dashboard Mockup Styling */
.mockup-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mockup-header {
    background: var(--primary-color);
    padding: 15px 20px;
}

.mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-logo {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.mockup-logo i {
    margin-right: 8px;
}

.mockup-menu {
    display: flex;
    gap: 4px;
}

.mockup-menu span {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.mockup-content {
    padding: 20px;
}

.mockup-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mockup-stat {
    text-align: center;
    flex: 1;
}

.mockup-stat i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mockup-stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-chart {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.mockup-chart i {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.7;
}

/* Mobile App Mockup Styling */
.phone-mockup {
    width: 200px;
    height: 400px;
    background: #2c2c2c;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.app-header {
    background: var(--primary-color);
    padding: 15px 20px;
    color: white;
}

.app-logo {
    font-weight: 600;
    font-size: 1rem;
}

.app-logo i {
    margin-right: 8px;
}

.app-content {
    padding: 20px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}

.app-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.app-stat {
    text-align: center;
    flex: 1;
}

.app-stat i {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.app-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.app-chart {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-chart i {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.mobile-features {
    margin: 20px 0;
}

.mobile-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.coming-soon-badge {
    margin-top: 20px;
}

.coming-soon-badge .badge {
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-switcher {
        bottom: 20px;
        right: 20px;
    }
    
    .theme-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .theme-options {
        bottom: 60px;
        min-width: 180px;
        padding: 0.75rem;
    }
    
    .theme-dropdown {
        min-width: 180px;
    }
}
