/* 
 * Online Digital Seva - Main CSS File
 * Version: 1.0
 * Last Updated: 2025-07-28
 * This file contains all styles for the digital marketing portal
 */

body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f8f9fa; color: #222; }
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }
header { background: #66A5AD; color: #fff; }
footer { background: linear-gradient(135deg, #F98866 0%, #ff7f50 25%, #ff6347 50%, #ff7f50 75%, #F98866 100%); color: #fff; box-shadow: 0 -4px 20px rgba(249, 136, 102, 0.3); }
header .logo { font-size: 2rem; font-weight: bold; text-decoration: none; color: #fff; }
nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
nav a { color: #fff; text-decoration: none; font-weight: 500; }
nav a:hover { text-decoration: underline; }
footer { text-align: center; padding: 30px 0; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #ff6347, #ff7f50, #F98866, #ff7f50, #ff6347); }
.social-links { list-style: none; display: flex; gap: 15px; justify-content: center; padding: 0; margin: 15px 0; }
.social-links a { color: #fff; text-decoration: none; padding: 8px 12px; border-radius: 20px; background: rgba(255, 255, 255, 0.1); transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2); }
.social-links a:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
.hero { background: #e3f0ff; padding: 60px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.btn { display: inline-block; padding: 10px 30px; background: #0f52ba; color: #fff; border-radius: 4px; text-decoration: none; font-weight: bold; }
.btn-primary { background: #0f52ba; }
section { margin: 40px 0; }
.services-list, .portfolio-list, .team-list { list-style: none; padding: 0; }
.services-list li, .portfolio-list li { background: #fff; margin-bottom: 20px; padding: 20px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.form-group { margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; }
input, textarea { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.alert-success { background: #d4edda; color: #155724; padding: 10px; border-radius: 4px; margin-bottom: 20px; }
.widgets-container { margin: 40px 0; }
.widgets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.widget { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 28px 18px; text-align: center; transition: box-shadow 0.2s; }
.widget:hover { box-shadow: 0 4px 16px rgba(15,82,186,0.12); }
.widget-icon { font-size: 2.5rem; margin-bottom: 12px; }
.widget h3 { margin: 0 0 10px 0; font-size: 1.2rem; color: #0f52ba; }
.widget p { color: #444; font-size: 1rem; }
.carousel-container { max-width: 1100px; margin: 30px auto 0 auto; }
.carousel { position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.carousel-slide { display: none; position: absolute; width: 100%; height: 350px; top: 0; left: 0; transition: opacity 0.5s; }
.carousel-slide.active { display: block; position: relative; opacity: 1; z-index: 2; }
.carousel-slide img { width: 100%; height: 350px; object-fit: cover; border-radius: 10px; }
.carousel-caption { position: absolute; bottom: 30px; left: 0; width: 100%; text-align: center; color: #fff; font-size: 1.5rem; background: rgba(15,82,186,0.7); padding: 10px 0; border-radius: 0 0 10px 10px; }
.carousel-control { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(15,82,186,0.7); color: #fff; border: none; font-size: 2rem; padding: 8px 16px; cursor: pointer; border-radius: 50%; z-index: 3; }
.carousel-control.prev { left: 20px; }
.carousel-control.next { right: 20px; }
@media (max-width: 700px) { .carousel-slide img, .carousel-slide { height: 180px; } .carousel-caption { font-size: 1rem; } } 
.marquee-section { background: #66A5AD; color: #fff; padding: 10px 0; overflow: hidden; }
.marquee { white-space: nowrap; overflow: hidden; position: relative; }
.marquee span { display: inline-block; padding-left: 100%; animation: marquee 28s linear infinite; font-size: 1.1rem; color: #4fc3f7; transition: color 0.2s; }
.marquee:hover span { animation-play-state: paused; color: #f7ffb0; }
.marquee a { color: #fff; text-decoration: underline; transition: color 0.2s; }
.marquee:hover a { color: #f7ffb0; }
.marquee a span { margin-right: 3px !important; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
} 
.marquee-close { position: absolute; right: 12px; top: 8px; background: transparent; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; z-index: 10; transition: color 0.2s; }
.marquee-close:hover, .marquee-close:focus { color: #f7ffb0; outline: none; }
.marquee-link { color: #4fc3f7; text-decoration: underline; padding: 2px 6px; border-radius: 3px; transition: background 0.2s, color 0.2s; }
.marquee-link:hover, .marquee-link:focus { background: #c0c0c0; color: #222; text-decoration: none; outline: none; } 
.divider { border: none; border-top: 2px solid #e0e0e0; margin: 0 0 24px 0; }
.widget-slider-section { width: 100%; background: #f8f9fa; padding: 18px 0 10px 0; margin-bottom: 24px; }
.widget-slider { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; padding: 0 20px; }
.widget-slide { min-width: 240px; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); padding: 18px 14px; flex: 0 0 auto; transition: box-shadow 0.2s, transform 0.2s; }
.widget-slide:hover { box-shadow: 0 4px 16px rgba(15,82,186,0.12); transform: translateY(-4px) scale(1.03); }
.widget-slide h4 { margin: 0 0 8px 0; color: #0f52ba; font-size: 1.1rem; }
.widget-slide p { margin: 0; color: #444; font-size: 0.98rem; } 
.widget-slider-nav { display: flex; align-items: center; position: relative; }
.widget-slider-arrow { background: #0f52ba; color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 1.5rem; cursor: pointer; margin: 0 8px; transition: background 0.2s, color 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.08); z-index: 2; }
.widget-slider-arrow:hover, .widget-slider-arrow:focus { background: #4fc3f7; color: #0f52ba; outline: none; }
.widget-slide-link { text-decoration: none; display: block; }
.widget-badge { display: inline-block; background: #ff9800; color: #fff; font-size: 0.75rem; font-weight: bold; border-radius: 12px; padding: 2px 10px; margin-bottom: 8px; margin-right: 6px; vertical-align: middle; } 
.widget-slide-img { width: 100%; max-width: 210px; height: 90px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; display: block; margin-left: auto; margin-right: auto; } 
.topbar { background: linear-gradient(90deg, #F98866 0%, #66A5AD 100%); color: #111; font-size: 0.98rem; padding: 7px 0; }
.topbar-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

/* Search Bar Styles */
.topbar-search { flex: 1; max-width: 350px; margin: 0 15px; }

/* Order Tracking Styles */
.topbar-tracking { flex: 1; max-width: 300px; margin: 0 15px; }
.tracking-form { position: relative; }
.tracking-input-group { display: flex; align-items: center; background: #fff; border-radius: 20px; border: 2px solid rgba(79, 195, 247, 0.3); overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.tracking-input-group:focus-within { border-color: #4fc3f7; box-shadow: 0 4px 15px rgba(79, 195, 247, 0.2); transform: translateY(-1px); }
.tracking-input { flex: 1; padding: 8px 12px; border: none; outline: none; font-size: 0.9rem; color: #333; background: transparent; }
.tracking-input::placeholder { color: #999; font-size: 0.85rem; }
.tracking-btn { background: linear-gradient(135deg, #ff9800, #ff5722); color: #fff; border: none; padding: 8px 12px; cursor: pointer; transition: all 0.3s ease; font-size: 0.9rem; }
.tracking-btn:hover { background: linear-gradient(135deg, #ff5722, #ff9800); transform: scale(1.05); }
.tracking-btn:active { transform: scale(0.95); }
.search-form { position: relative; }
.search-input-group { display: flex; align-items: center; background: #fff; border-radius: 25px; border: 2px solid rgba(79, 195, 247, 0.3); overflow: hidden; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.search-input-group:focus-within { border-color: #4fc3f7; box-shadow: 0 4px 15px rgba(79, 195, 247, 0.2); transform: translateY(-1px); }
.search-input { flex: 1; padding: 10px 15px; border: none; outline: none; font-size: 0.95rem; color: #333; background: transparent; }
.search-input::placeholder { color: #999; }
.search-btn { background: linear-gradient(135deg, #4fc3f7, #66A5AD); color: #fff; border: none; padding: 10px 15px; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; }
.search-btn:hover { background: linear-gradient(135deg, #66A5AD, #4fc3f7); transform: scale(1.05); }
.search-btn:active { transform: scale(0.95); }

/* Search Suggestions */
.search-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); z-index: 1000; margin-top: 5px; max-height: 300px; overflow-y: auto; border: 1px solid #e0e0e0; }
.search-suggestion-item { padding: 12px 15px; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 10px; }
.search-suggestion-item:last-child { border-bottom: none; }
.search-suggestion-item:hover, .search-suggestion-item.selected { background: #f8f9fa; color: #4fc3f7; }
.search-suggestion-item i { color: #999; font-size: 0.9rem; }
.search-suggestion-text { flex: 1; }
.search-suggestion-category { font-size: 0.8rem; color: #666; background: rgba(79, 195, 247, 0.1); padding: 2px 6px; border-radius: 10px; }

/* Responsive Search */
@media (max-width: 768px) {
    .topbar-search { max-width: 100%; margin: 10px 0; order: 3; }
    .topbar-tracking { max-width: 100%; margin: 10px 0; order: 4; }
    .topbar-flex { flex-direction: column; align-items: stretch; }
    .search-input-group, .tracking-input-group { border-radius: 20px; }
    .search-input, .tracking-input { padding: 8px 12px; font-size: 0.9rem; }
    .search-btn, .tracking-btn { padding: 8px 12px; }
}
.topbar-left { display: flex; align-items: center; gap: 18px; }
.topbar-logo { height: 32px; width: auto; margin-right: 12px; }
.topbar-contact a { color: #4fc3f7; text-decoration: none; margin-right: 10px; transition: color 0.2s; }
.topbar-contact a:hover { color: #ff9800; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-btn { background: #4fc3f7; color: #222; border-radius: 4px; padding: 5px 16px; text-decoration: none; font-weight: 500; transition: background 0.2s, color 0.2s; }
.topbar-btn:hover, .topbar-btn:focus { background: #ff9800; color: #fff; }
.cart-btn { display: flex; align-items: center; gap: 4px; }
@media (max-width: 600px) { .topbar-flex { flex-direction: column; align-items: flex-start; gap: 8px; } .topbar-left { flex-direction: column; align-items: flex-start; gap: 4px; } .topbar-logo { height: 26px; } } 
.topbar-location-dropdown { margin-right: 12px; }
.location-select { padding: 3px 10px; border-radius: 4px; border: 1px solid #4fc3f7; background: #fff; color: #222; font-size: 0.97rem; }
.location-select:focus { outline: 2px solid #4fc3f7; }

.notification-dropdown { position: relative; margin-left: 10px; }
.notification-btn { background: none; border: none; color: #4fc3f7; font-size: 1.3rem; cursor: pointer; position: relative; padding: 4px 8px; border-radius: 50%; transition: background 0.2s; }
.notification-btn:hover, .notification-btn:focus { background: #ff9800; color: #fff; }
.notification-dot { position: absolute; top: 4px; right: 6px; width: 8px; height: 8px; background: #ff9800; border-radius: 50%; display: inline-block; }
.notification-menu { display: none; position: absolute; right: 0; top: 36px; background: #fff; color: #222; min-width: 180px; box-shadow: 0 2px 12px rgba(0,0,0,0.12); border-radius: 6px; z-index: 20; padding: 8px 0; }
.notification-dropdown:hover .notification-menu, .notification-btn:focus + .notification-menu { display: block; }
.notification-item { padding: 8px 18px; font-size: 0.97rem; border-bottom: 1px solid #f0f0f0; }
.notification-item:last-child { border-bottom: none; }

.avatar-dropdown { position: relative; margin-left: 10px; }
.avatar-btn { background: none; border: none; padding: 0; border-radius: 50%; cursor: pointer; }
.avatar-img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #4fc3f7; object-fit: cover; }
.avatar-menu { display: none; position: absolute; right: 0; top: 40px; background: #fff; color: #222; min-width: 140px; box-shadow: 0 2px 12px rgba(0,0,0,0.12); border-radius: 6px; z-index: 20; padding: 8px 0; }
.avatar-dropdown:hover .avatar-menu, .avatar-btn:focus + .avatar-menu { display: block; }
.avatar-menu a { display: block; padding: 8px 18px; color: #222; text-decoration: none; font-size: 0.97rem; transition: background 0.2s; }
.avatar-menu a:hover, .avatar-menu a:focus { background: #4fc3f7; color: #fff; } 
.notification-count { background: #ff9800; color: #fff; font-size: 0.75rem; font-weight: bold; border-radius: 8px; padding: 1px 6px; position: absolute; top: 0; right: -10px; }
.avatar-name { margin-left: 8px; font-size: 1rem; color: #fff; font-weight: 500; vertical-align: middle; }
.location-toast { display: none; position: fixed; top: 18px; left: 50%; transform: translateX(-50%); background: #4fc3f7; color: #222; padding: 8px 24px; border-radius: 6px; font-size: 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.12); z-index: 9999; }
.location-toast.show { display: block; animation: fadeInOut 2s; }

/* Language Switcher Styles */
.language-dropdown {
    position: relative;
    margin-right: 12px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #4fc3f7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.2);
}

.language-icon {
    font-size: 1rem;
}

.current-language {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.language-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #4fc3f7;
}

.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.language-search {
    position: relative;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
}

.language-search-input {
    width: 100%;
    padding: 8px 12px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.language-search-input:focus {
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.1);
}

.language-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.language-list {
    max-height: 320px;
    overflow-y: auto;
    padding: 8px 0;
}

.language-category {
    margin-bottom: 8px;
}

.category-title {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.language-item:hover {
    background: #f8f9fa;
    color: #4fc3f7;
}

.language-item.active {
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    border-left: 3px solid #4fc3f7;
}

.language-item:last-child {
    border-bottom: none;
}

.flag {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.lang-name {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.lang-native {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Responsive Language Switcher */
@media (max-width: 768px) {
    .language-btn {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .language-menu {
        min-width: 250px;
        max-height: 350px;
    }
    
    .language-search {
        padding: 10px;
    }
    
    .language-search-input {
        padding: 6px 10px 6px 30px;
        font-size: 0.85rem;
    }
    
    .language-search i {
        left: 18px;
        font-size: 0.85rem;
    }
    
    .language-item {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .flag {
        font-size: 1.1rem;
        min-width: 20px;
    }
    
    .lang-name {
        font-size: 0.85rem;
    }
    
    .lang-native {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .language-dropdown {
        margin-right: 8px;
    }
    
    .language-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .language-icon {
        font-size: 0.9rem;
    }
    
    .current-language {
        min-width: 18px;
    }
    
    .language-menu {
        min-width: 220px;
        max-height: 300px;
    }
    
    .language-list {
        max-height: 250px;
    }
    
    .language-item {
        padding: 6px 10px;
        gap: 8px;
    }
    
    .flag {
        font-size: 1rem;
        min-width: 18px;
    }
    
    .lang-name {
        font-size: 0.8rem;
    }
    
    .lang-native {
        font-size: 0.7rem;
    }
}

/* Theme Toggle Button Styles */
.theme-toggle {
    margin-right: 10px;
}

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #4fc3f7;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

.theme-btn:active {
    transform: translateY(0) scale(0.95);
}

.theme-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.light-icon {
    color: #ff9800;
    display: none;
}

.dark-icon {
    color: #4fc3f7;
    display: block;
}

/* Dark Theme Styles */
.dark-theme {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.dark-theme .topbar {
    background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ffffff !important;
}

.dark-theme .topbar-contact a,
.dark-theme .avatar-name,
.dark-theme .notification-count,
.dark-theme .topbar-btn,
.dark-theme .cart-btn,
.dark-theme .location-select {
    color: #ffffff !important;
}

.dark-theme .language-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.dark-theme .language-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #4fc3f7 !important;
}

.dark-theme .theme-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.dark-theme .theme-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #4fc3f7 !important;
}

.dark-theme header {
    background: #2c3e50 !important;
}

.dark-theme .logo {
    color: #ffffff !important;
}

.dark-theme nav a {
    color: #ffffff !important;
}

.dark-theme nav a:hover {
    color: #4fc3f7 !important;
}

.dark-theme .marquee-section {
    background: #34495e !important;
    color: #ffffff !important;
}

.dark-theme .marquee a {
    color: #4fc3f7 !important;
}

.dark-theme .marquee-link:hover {
    background: #4fc3f7 !important;
    color: #1a1a1a !important;
}

.dark-theme .container {
    background: transparent !important;
}

.dark-theme section {
    background: #2c2c2c !important;
    color: #ffffff !important;
}

.dark-theme .widget {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .widget:hover {
    box-shadow: 0 4px 16px rgba(79, 195, 247, 0.2) !important;
    border-color: #4fc3f7 !important;
}

.dark-theme .widget h3 {
    color: #4fc3f7 !important;
}

.dark-theme .widget p {
    color: #cccccc !important;
}

.dark-theme .services-list li,
.dark-theme .portfolio-list li {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .services-list li:hover,
.dark-theme .portfolio-list li:hover {
    border-color: #4fc3f7 !important;
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.2) !important;
}

.dark-theme .btn {
    background: #4fc3f7 !important;
    color: #1a1a1a !important;
}

.dark-theme .btn:hover {
    background: #66A5AD !important;
    color: #ffffff !important;
}

.dark-theme .btn-primary {
    background: #4fc3f7 !important;
}

.dark-theme .btn-primary:hover {
    background: #66A5AD !important;
}

.dark-theme input,
.dark-theme textarea {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
    color: #ffffff !important;
}

.dark-theme input:focus,
.dark-theme textarea:focus {
    border-color: #4fc3f7 !important;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2) !important;
}

.dark-theme input::placeholder,
.dark-theme textarea::placeholder {
    color: #999999 !important;
}

.dark-theme .alert-success {
    background: rgba(76, 175, 80, 0.2) !important;
    color: #4CAF50 !important;
    border: 1px solid rgba(76, 175, 80, 0.3) !important;
}

.dark-theme .carousel-container {
    background: #2c2c2c !important;
}

.dark-theme .carousel {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .carousel-caption {
    background: rgba(44, 62, 80, 0.8) !important;
    color: #ffffff !important;
}

.dark-theme .carousel-control {
    background: rgba(44, 62, 80, 0.8) !important;
    color: #ffffff !important;
}

.dark-theme .carousel-control:hover {
    background: rgba(79, 195, 247, 0.8) !important;
    color: #1a1a1a !important;
}

.dark-theme .widget-slider-section {
    background: #2c2c2c !important;
}

.dark-theme .widget-slide {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .widget-slide:hover {
    border-color: #4fc3f7 !important;
    box-shadow: 0 4px 16px rgba(79, 195, 247, 0.2) !important;
}

.dark-theme .widget-slide h4 {
    color: #4fc3f7 !important;
}

.dark-theme .widget-slide p {
    color: #cccccc !important;
}

.dark-theme .search-input-group,
.dark-theme .tracking-input-group {
    background: #3a3a3a !important;
    border-color: rgba(79, 195, 247, 0.3) !important;
}

.dark-theme .search-input,
.dark-theme .tracking-input {
    background: #3a3a3a !important;
    color: #ffffff !important;
}

.dark-theme .search-input::placeholder,
.dark-theme .tracking-input::placeholder {
    color: #999999 !important;
}

.dark-theme .search-suggestions {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .search-suggestion-item {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border-bottom: 1px solid #4a4a4a !important;
}

.dark-theme .search-suggestion-item:hover,
.dark-theme .search-suggestion-item.selected {
    background: #4a4a4a !important;
    color: #4fc3f7 !important;
}

.dark-theme .notification-menu,
.dark-theme .avatar-menu {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .notification-item,
.dark-theme .avatar-menu a {
    color: #ffffff !important;
    border-bottom: 1px solid #4a4a4a !important;
}

.dark-theme .notification-item:hover,
.dark-theme .avatar-menu a:hover {
    background: #4a4a4a !important;
    color: #4fc3f7 !important;
}

.dark-theme .language-menu {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
}

.dark-theme .language-search {
    background: #2c2c2c !important;
    border-bottom: 1px solid #4a4a4a !important;
}

.dark-theme .language-search-input {
    background: #3a3a3a !important;
    border: 1px solid #4a4a4a !important;
    color: #ffffff !important;
}

.dark-theme .language-search-input::placeholder {
    color: #999999 !important;
}

.dark-theme .language-search-input:focus {
    border-color: #4fc3f7 !important;
}

.dark-theme .category-title {
    background: #2c2c2c !important;
    color: #cccccc !important;
    border-bottom: 1px solid #4a4a4a !important;
}

.dark-theme .language-item {
    background: #3a3a3a !important;
    color: #ffffff !important;
    border-bottom: 1px solid #4a4a4a !important;
}

.dark-theme .language-item:hover {
    background: #4a4a4a !important;
    color: #4fc3f7 !important;
}

.dark-theme .language-item.active {
    background: rgba(79, 195, 247, 0.2) !important;
    color: #4fc3f7 !important;
    border-left: 3px solid #4fc3f7 !important;
}

.dark-theme .lang-native {
    color: #cccccc !important;
}

.dark-theme footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ffffff !important;
}

.dark-theme .footer-title {
    color: #ffffff !important;
}

.dark-theme .footer-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dark-theme .footer-links a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dark-theme .footer-links a:hover {
    color: #ffffff !important;
}

.dark-theme .social-links a {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.dark-theme .social-links a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #4fc3f7 !important;
}

/* Developer Credit Section Styles */
.developer-credit {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(44, 62, 80, 0.95) 50%, rgba(52, 73, 94, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400" fill="none"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%234fc3f7" stroke-width="0.5" opacity="0.1"/></pattern><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234fc3f7" opacity="0.2"/></pattern><filter id="glow"><feGaussianBlur stdDeviation="3" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><rect width="100%" height="100%" fill="url(%23grid)"/><rect width="100%" height="100%" fill="url(%23dots)"/><g filter="url(%23glow)"><circle cx="200" cy="100" r="50" fill="%234fc3f7" opacity="0.1"/><circle cx="1000" cy="300" r="80" fill="%2366A5AD" opacity="0.1"/><circle cx="800" cy="150" r="40" fill="%234fc3f7" opacity="0.15"/><circle cx="300" cy="250" r="60" fill="%2366A5AD" opacity="0.1"/></g></svg>');
    background-size: cover, 1200px 400px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.developer-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4fc3f7, #66A5AD, #4fc3f7);
    animation: shimmer 3s ease-in-out infinite;
}

.developer-credit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(102, 165, 173, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.developer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.developer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.developer-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
}

.developer-icon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    border-radius: 50%;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.developer-icon i {
    font-size: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.developer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.developer-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.developer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.developer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.badge-web {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    border-color: rgba(79, 195, 247, 0.3);
}

.badge-design {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border-color: rgba(255, 152, 0, 0.3);
}

.badge-tech {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
    border-color: rgba(156, 39, 176, 0.3);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge i {
    font-size: 0.8rem;
}

.developer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.developer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.developer-link:hover {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    border-color: #4fc3f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    text-decoration: none;
}

.developer-link i {
    font-size: 0.9rem;
}

/* Dark Theme Developer Credit */
.dark-theme .developer-credit {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 50%, rgba(44, 44, 44, 0.98) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400" fill="none"><defs><pattern id="grid-dark" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%234fc3f7" stroke-width="0.3" opacity="0.08"/></pattern><pattern id="dots-dark" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="%234fc3f7" opacity="0.15"/></pattern><filter id="glow-dark"><feGaussianBlur stdDeviation="4" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter><radialGradient id="radial-glow" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234fc3f7" stop-opacity="0.1"/><stop offset="100%" stop-color="%234fc3f7" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23grid-dark)"/><rect width="100%" height="100%" fill="url(%23dots-dark)"/><g filter="url(%23glow-dark)"><circle cx="150" cy="80" r="60" fill="url(%23radial-glow)"/><circle cx="1050" cy="320" r="90" fill="url(%23radial-glow)"/><circle cx="750" cy="180" r="45" fill="url(%23radial-glow)"/><circle cx="350" cy="280" r="70" fill="url(%23radial-glow)"/></g></svg>') !important;
    background-size: cover, 1200px 400px !important;
    background-position: center, center !important;
    background-repeat: no-repeat, repeat !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.dark-theme .developer-credit::before {
    background: linear-gradient(90deg, #4fc3f7, #66A5AD, #4fc3f7) !important;
}

.dark-theme .developer-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.dark-theme .developer-name {
    background: linear-gradient(135deg, #4fc3f7, #66A5AD) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.dark-theme .developer-link {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.dark-theme .developer-link:hover {
    background: rgba(79, 195, 247, 0.15) !important;
    color: #4fc3f7 !important;
    border-color: #4fc3f7 !important;
}

/* Responsive Developer Credit */
@media (max-width: 768px) {
    .developer-credit {
        padding: 20px 0;
    }
    
    .developer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .developer-info {
        justify-content: center;
        gap: 12px;
    }
    
    .developer-icon {
        width: 45px;
        height: 45px;
    }
    
    .developer-icon i {
        font-size: 1.3rem;
    }
    
    .developer-name {
        font-size: 1.2rem;
    }
    
    .developer-badges {
        justify-content: center;
        gap: 6px;
    }
    
    .badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .developer-links {
        justify-content: center;
        gap: 10px;
    }
    
    .developer-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .developer-credit {
        padding: 15px 0;
    }
    
    .developer-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .developer-icon {
        width: 40px;
        height: 40px;
    }
    
    .developer-icon i {
        font-size: 1.2rem;
    }
    
    .developer-name {
        font-size: 1.1rem;
    }
    
    .developer-badges {
        gap: 5px;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
    
    .developer-links {
        gap: 8px;
    }
    
    .developer-link {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .developer-link span {
        display: none;
    }
    
    .developer-link i {
        font-size: 1rem;
    }
}

/* Responsive Theme Toggle */
@media (max-width: 768px) {
    .theme-toggle {
        margin-right: 8px;
    }
    
    .theme-btn {
        width: 36px;
        height: 36px;
    }
    
    .theme-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        margin-right: 6px;
    }
    
    .theme-btn {
        width: 32px;
        height: 32px;
    }
    
    .theme-btn i {
        font-size: 0.9rem;
    }
}
@keyframes fadeInOut { 0% { opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; } } 
.topbar-contact a, .avatar-name, .notification-count, .topbar-btn, .cart-btn, .location-select { color: #111 !important; } 
header { background: #66A5AD; }

/* Footer Grid Layout */
.footer-main { padding: 40px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 20px; }
.footer-section { text-align: left; }
.footer-title { color: #fff; font-size: 1.3rem; font-weight: bold; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: rgba(255, 255, 255, 0.3); border-radius: 2px; }
.footer-content { color: rgba(255, 255, 255, 0.9); }

/* Address Location Styling */
.address-item { display: flex; align-items: flex-start; margin-bottom: 15px; }
.address-item i { color: #fff; font-size: 1.1rem; margin-right: 12px; margin-top: 3px; min-width: 16px; }
.address-item p { margin: 0; line-height: 1.5; }

/* Footer Links Styling */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: #fff; transform: translateX(5px); }

/* Payment Methods Styling */
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.payment-item { display: flex; align-items: center; background: rgba(255, 255, 255, 0.1); padding: 8px 12px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, 0.2); }
.payment-item i { font-size: 1.5rem; margin-right: 8px; color: #fff; }
.payment-item span { color: #fff; font-size: 0.9rem; font-weight: 500; }
.security-badge { display: flex; align-items: center; background: rgba(76, 175, 80, 0.2); padding: 8px 12px; border-radius: 6px; border: 1px solid rgba(76, 175, 80, 0.3); }
.security-badge i { color: #4CAF50; margin-right: 8px; }
.security-badge span { color: #fff; font-size: 0.9rem; }

/* Social Links in Footer */
.footer-section .social-links { margin-top: 20px; }
.footer-section .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; margin-right: 10px; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2); }
.footer-section .social-links a:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
.footer-section .social-links i { font-size: 1.1rem; }

/* Footer Bottom Styling */
.footer-bottom { background: rgba(0, 0, 0, 0.2); padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.9); }
.footer-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-countdown, .footer-visitors, .footer-last-updated { font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); }
.footer-countdown span, .footer-visitors span, .footer-last-updated span { font-weight: bold; color: #fff; }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-stats { justify-content: center; }
    .payment-methods { grid-template-columns: 1fr; }
}

/* Services Categories Section */
.services-categories-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 40px 0; border-bottom: 1px solid #dee2e6; }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 { color: #333; font-size: 2.5rem; font-weight: bold; margin: 0 0 15px 0; position: relative; }
.section-heading h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #F98866, #ff7f50, #ff6347); border-radius: 2px; }
.section-heading p { color: #666; font-size: 1.1rem; margin: 0; line-height: 1.5; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.category-card { background: #fff; border-radius: 12px; padding: 30px 25px; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; border: 1px solid #f1f3f4; position: relative; overflow: hidden; cursor: pointer; }
.category-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #F98866, #ff7f50, #ff6347); }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(249, 136, 102, 0.15); }
.category-icon { width: 70px; height: 70px; background: linear-gradient(135deg, #F98866, #ff7f50); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s ease; }
.category-card:hover .category-icon { transform: scale(1.1); box-shadow: 0 6px 20px rgba(249, 136, 102, 0.3); }
.category-icon i { font-size: 2rem; color: #fff; }
.category-card h3 { color: #333; font-size: 1.4rem; font-weight: bold; margin: 0 0 12px 0; }
.category-card p { color: #666; font-size: 0.95rem; line-height: 1.5; margin: 0 0 15px 0; }
.sub-categories { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; justify-content: center; }
.sub-category { background: rgba(249, 136, 102, 0.1); color: #F98866; padding: 4px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: 500; border: 1px solid rgba(249, 136, 102, 0.2); transition: all 0.3s ease; }
.sub-category:hover { background: rgba(249, 136, 102, 0.2); transform: translateY(-1px); }
.category-link { display: inline-block; background: linear-gradient(135deg, #F98866, #ff7f50); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; border: none; }
.category-link:hover { background: linear-gradient(135deg, #ff7f50, #ff6347); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(249, 136, 102, 0.3); color: #fff; text-decoration: none; }

/* Sub-categories Dropdown */
.sub-categories-dropdown { margin: 20px 0; animation: slideDown 0.3s ease; }
.sub-categories-list { display: flex; flex-direction: column; gap: 8px; }
.sub-category-item { display: block; padding: 10px 15px; background: rgba(249, 136, 102, 0.05); color: #F98866; text-decoration: none; border-radius: 8px; border: 1px solid rgba(249, 136, 102, 0.1); transition: all 0.3s ease; font-size: 0.9rem; font-weight: 500; }
.sub-category-item:hover { background: rgba(249, 136, 102, 0.1); color: #ff6347; transform: translateX(5px); border-color: rgba(249, 136, 102, 0.2); text-decoration: none; }

/* Nested Sub-categories */
.sub-category-group { margin-bottom: 8px; }
.sub-category-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; background: rgba(249, 136, 102, 0.08); color: #F98866; border-radius: 8px; border: 1px solid rgba(249, 136, 102, 0.15); cursor: pointer; transition: all 0.3s ease; font-weight: 600; }
.sub-category-header:hover { background: rgba(249, 136, 102, 0.12); color: #ff6347; }
.sub-category-header i { transition: transform 0.3s ease; }
.sub-category-header.active i { transform: rotate(180deg); }
.nested-sub-categories { margin-top: 5px; margin-left: 15px; animation: slideDown 0.3s ease; }
.nested-sub-category-item { display: block; padding: 8px 12px; background: rgba(249, 136, 102, 0.03); color: #F98866; text-decoration: none; border-radius: 6px; border: 1px solid rgba(249, 136, 102, 0.08); transition: all 0.3s ease; font-size: 0.85rem; margin-bottom: 4px; }
.nested-sub-category-item:hover { background: rgba(249, 136, 102, 0.08); color: #ff6347; transform: translateX(3px); border-color: rgba(249, 136, 102, 0.15); text-decoration: none; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive for categories */
@media (max-width: 768px) {
    .section-heading h2 { font-size: 2rem; }
    .section-heading p { font-size: 1rem; }
    .categories-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .category-card { padding: 25px 20px; }
    .category-card h3 { font-size: 1.3rem; }
    .category-icon { width: 60px; height: 60px; }
    .category-icon i { font-size: 1.8rem; }
    .sub-category-item { font-size: 0.85rem; padding: 8px 12px; }
    .sub-category-header { font-size: 0.85rem; padding: 8px 12px; }
    .nested-sub-category-item { font-size: 0.8rem; padding: 6px 10px; }
}

/* Services Categories Section Below Marquee */
.services-categories-section-below { background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); padding: 50px 0; border-top: 1px solid #e9ecef; }
.categories-grid-below { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.category-card-below { background: #fff; border-radius: 15px; padding: 35px 30px; text-align: center; box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; border: 2px solid #f8f9fa; position: relative; overflow: hidden; }
.category-card-below::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #66A5AD, #4fc3f7, #66A5AD); }
.category-card-below:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 12px 40px rgba(102, 165, 173, 0.2); border-color: #66A5AD; }
.category-icon-below { width: 80px; height: 80px; background: linear-gradient(135deg, #66A5AD, #4fc3f7); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: all 0.4s ease; position: relative; }
.category-card-below:hover .category-icon-below { transform: scale(1.15) rotate(5deg); box-shadow: 0 8px 25px rgba(102, 165, 173, 0.4); }
.category-icon-below i { font-size: 2.2rem; color: #fff; }
.category-card-below h3 { color: #2c3e50; font-size: 1.5rem; font-weight: bold; margin: 0 0 15px 0; }
.category-card-below p { color: #7f8c8d; font-size: 1rem; line-height: 1.6; margin: 0 0 25px 0; }
.category-link-below { display: inline-block; background: linear-gradient(135deg, #66A5AD, #4fc3f7); color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 30px; font-weight: 600; transition: all 0.3s ease; border: none; position: relative; overflow: hidden; }
.category-link-below::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: left 0.5s; }
.category-link-below:hover::before { left: 100%; }
.category-link-below:hover { background: linear-gradient(135deg, #4fc3f7, #66A5AD); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(102, 165, 173, 0.4); color: #fff; text-decoration: none; }

/* Responsive for categories below */
@media (max-width: 768px) {
    .categories-grid-below { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
    .category-card-below { padding: 30px 25px; }
    .category-icon-below { width: 70px; height: 70px; }
    .category-icon-below i { font-size: 2rem; }
    .category-card-below h3 { font-size: 1.4rem; }
}

/* Infinite CSS Carousel */
.infinite-carousel-section { background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 50%, #fff5f2 100%); padding: 60px 0; border-top: 1px solid #ffd4c7; position: relative; }
.infinite-carousel-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #F98866, #ff7f50, #ff6347, #ff7f50, #F98866); }
.infinite-carousel-container { overflow: hidden; position: relative; margin: 40px 0; }
.popular-services-heading { text-align: center; margin-bottom: 40px; }
.popular-services-heading h2 { color: #F98866; font-size: 2.5rem; font-weight: bold; margin: 0 0 15px 0; position: relative; }
.popular-services-heading h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #F98866, #ff7f50, #ff6347); border-radius: 2px; }
.popular-services-heading p { color: #666; font-size: 1.1rem; margin: 0; line-height: 1.5; }
.infinite-carousel { display: flex; animation: scroll 30s linear infinite; width: max-content; }
.infinite-carousel:hover { animation-play-state: paused; }
.carousel-item { flex: 0 0 300px; margin: 0 15px; background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 8px 25px rgba(249, 136, 102, 0.15); transition: all 0.3s ease; border: 2px solid rgba(249, 136, 102, 0.1); position: relative; }
.carousel-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #F98866, #ff7f50, #ff6347); }
.carousel-item:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 15px 40px rgba(249, 136, 102, 0.25); border-color: #F98866; }
.carousel-image { height: 200px; overflow: hidden; position: relative; }
.carousel-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.carousel-item:hover .carousel-image img { transform: scale(1.1); }
.carousel-content { padding: 20px; text-align: center; }
.carousel-content h3 { color: #F98866; font-size: 1.3rem; font-weight: bold; margin: 0 0 8px 0; }
.carousel-content p { color: #666; font-size: 0.95rem; margin: 0; line-height: 1.4; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive for infinite carousel */
@media (max-width: 768px) {
    .infinite-carousel-section { padding: 40px 0; }
    .carousel-item { flex: 0 0 250px; margin: 0 10px; }
    .carousel-image { height: 150px; }
    .carousel-content { padding: 15px; }
    .carousel-content h3 { font-size: 1.2rem; }
    .carousel-content p { font-size: 0.9rem; }
} 

/* --- Carousel Fixes --- */
.carousel-container {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.carousel {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}
.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s;
  opacity: 0;
  z-index: 1;
}
.carousel-slide.active {
  display: block;
  opacity: 1;
  z-index: 2;
}
.carousel-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0;
}
.carousel-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.carousel-control:hover {
  background: rgba(0,0,0,0.7);
}
.carousel-control.prev {
  left: 18px;
}
.carousel-control.next {
  right: 18px;
}
@media (max-width: 700px) {
  .carousel-container, .carousel {
    height: 180px;
    min-height: 120px;
  }
  .carousel-slide img {
    height: 180px;
  }
  .carousel-caption {
    font-size: 1rem;
    padding: 8px 16px;
  }
}

/* Main Layout with Sidebar */
.main-layout {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.left-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Widgets */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.widget-header {
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    font-size: 1.2rem;
}

.widget-controls {
    display: flex;
    gap: 8px;
}

.widget-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.widget-content {
    padding: 20px;
}

.widget-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

.view-all-link {
    color: #4fc3f7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #66A5AD;
    text-decoration: none;
}

/* Services Widget */
.services-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: #f8f9fa;
}

.services-scroll {
    padding: 10px;
}

.service-category-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-category-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #4fc3f7;
}

.service-category-header:hover {
    background: #f8f9fa;
}

.service-category-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-category-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.service-category-info {
    flex: 1;
    min-width: 0;
}

.service-category-name {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.service-category-description {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.service-category-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-category-toggle i {
    color: #4fc3f7;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-sub-categories {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

.service-sub-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px 10px 30px;
    color: #666;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.service-sub-category-item:last-child {
    border-bottom: none;
}

.service-sub-category-item:hover {
    background: #fff;
    color: #4fc3f7;
    transform: translateX(5px);
}

.service-sub-category-item i {
    color: #4fc3f7;
    font-size: 0.7rem;
}

/* Stats Widget */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

/* Quick Links Widget */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: #fff;
    color: #4fc3f7;
    text-decoration: none;
    border-color: #4fc3f7;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.1);
}

.quick-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.quick-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Become a Seller Widget Styles */
.become-seller-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

.become-seller-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400" fill="none"><defs><pattern id="seller-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern><pattern id="seller-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23seller-grid)"/><rect width="100%" height="100%" fill="url(%23seller-dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.become-seller-widget .widget-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.become-seller-widget .widget-title {
    color: #fff;
}

.become-seller-widget .widget-title i {
    color: #fff;
}

.seller-content {
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.seller-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: sellerPulse 2s infinite;
}

@keyframes sellerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.seller-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.seller-info {
    margin-bottom: 20px;
}

.seller-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #fff;
}

.seller-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.seller-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.seller-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.seller-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.seller-benefits .benefit-item i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.seller-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.seller-stat {
    text-align: center;
}

.seller-stat .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.seller-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seller-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.seller-btn::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: left 0.5s;
}

.seller-btn:hover::before {
    left: 100%;
}

.seller-btn.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    border-color: #4CAF50;
}

.seller-btn.primary:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    color: #fff;
    text-decoration: none;
}

.seller-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.seller-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.seller-btn i {
    font-size: 0.9rem;
}

.seller-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #4CAF50;
    margin-bottom: 10px;
}

.seller-status i {
    font-size: 0.9rem;
    color: #fff;
}

/* Dark Theme Seller Widget */
.dark-theme .become-seller-widget {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
}

.dark-theme .become-seller-widget::before {
    opacity: 0.2 !important;
}

.dark-theme .seller-icon {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.dark-theme .seller-benefits .benefit-item {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.dark-theme .seller-benefits .benefit-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.dark-theme .seller-stats {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.dark-theme .seller-btn.secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.dark-theme .seller-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Responsive Seller Widget */
@media (max-width: 768px) {
    .seller-content {
        padding: 15px 0;
    }
    
    .seller-icon {
        width: 50px;
        height: 50px;
    }
    
    .seller-icon i {
        font-size: 1.5rem;
    }
    
    .seller-title {
        font-size: 1.2rem;
    }
    
    .seller-description {
        font-size: 0.85rem;
    }
    
    .seller-benefits .benefit-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .seller-stats {
        padding: 12px;
    }
    
    .seller-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .seller-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .seller-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .seller-content {
        padding: 12px 0;
    }
    
    .seller-icon {
        width: 45px;
        height: 45px;
    }
    
    .seller-icon i {
        font-size: 1.3rem;
    }
    
    .seller-title {
        font-size: 1.1rem;
    }
    
    .seller-description {
        font-size: 0.8rem;
    }
    
    .seller-benefits {
        gap: 6px;
    }
    
    .seller-benefits .benefit-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .seller-stats {
        padding: 10px;
    }
    
    .seller-stat .stat-number {
        font-size: 1rem;
    }
    
    .seller-stat .stat-label {
        font-size: 0.65rem;
    }
    
    .seller-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .seller-btn span {
        display: none;
    }
    
    .seller-btn i {
        font-size: 1rem;
    }
    
    .seller-status {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .seller-status i {
        font-size: 0.8rem;
    }
}

/* Responsive Sidebar */
@media (max-width: 1200px) {
    .main-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .left-sidebar {
        width: 100%;
        position: static;
    }
    
    .sidebar-widgets {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-layout {
        padding: 15px;
    }
    
    .sidebar-widgets {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-container {
        height: 300px;
    }
    
    .service-category-item {
        margin-bottom: 8px;
    }
    
    .service-category-header {
        padding: 12px;
    }
    
    .service-category-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-category-name {
        font-size: 0.9rem;
    }
    
    .service-category-description {
        font-size: 0.75rem;
    }
    
    .service-sub-category-item {
        padding: 8px 12px 8px 25px;
        font-size: 0.8rem;
    }
}

/* Our Products Section */
.our-products-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
}

.our-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4fc3f7, #66A5AD, #4fc3f7);
}

.products-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-carousel {
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.product-item {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.2);
    border-color: #4fc3f7;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-badge {
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.product-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #4fc3f7;
}

.product-rating {
    font-size: 0.85rem;
    color: #ff9800;
    font-weight: 500;
}

.product-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.product-btn:hover {
    background: linear-gradient(135deg, #66A5AD, #4fc3f7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Carousel Navigation */
.carousel-nav-btn {
    background: linear-gradient(135deg, #4fc3f7, #66A5AD);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #66A5AD, #4fc3f7);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4fc3f7;
    transform: scale(1.2);
}

.indicator:hover {
    background: #4fc3f7;
}

/* Responsive Products Carousel */
@media (max-width: 1200px) {
    .products-carousel-container {
        max-width: 900px;
    }
    
    .product-item {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .our-products-section {
        padding: 40px 0;
    }
    
    .products-carousel-container {
        max-width: 100%;
        gap: 10px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .product-item {
        flex: 0 0 220px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
    }
    
    .product-content p {
        font-size: 0.85rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Download App Section */
.download-app-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" fill="none"><defs><pattern id="mobile-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%234fc3f7" stroke-width="0.8" opacity="0.08"/></pattern><pattern id="mobile-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%234fc3f7" opacity="0.12"/></pattern><filter id="mobile-glow"><feGaussianBlur stdDeviation="4" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter><radialGradient id="mobile-radial" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234fc3f7" stop-opacity="0.15"/><stop offset="100%" stop-color="%234fc3f7" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23mobile-grid)"/><rect width="100%" height="100%" fill="url(%23mobile-dots)"/><g filter="url(%23mobile-glow)"><circle cx="200" cy="150" r="80" fill="url(%23mobile-radial)"/><circle cx="1000" cy="450" r="120" fill="url(%23mobile-radial)"/><circle cx="800" cy="200" r="60" fill="url(%23mobile-radial)"/><circle cx="300" cy="400" r="100" fill="url(%23mobile-radial)"/><circle cx="1100" cy="300" r="70" fill="url(%23mobile-radial)"/><circle cx="150" cy="500" r="90" fill="url(%23mobile-radial)"/></g><g opacity="0.1"><path d="M 0 100 Q 300 50 600 100 T 1200 100" stroke="%234fc3f7" stroke-width="2" fill="none"/><path d="M 0 500 Q 300 450 600 500 T 1200 500" stroke="%234fc3f7" stroke-width="2" fill="none"/></g></svg>');
    background-size: cover, 1200px 600px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.download-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(102, 165, 173, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: mobileFloat 10s ease-in-out infinite;
}

.download-app-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #66A5AD, #4fc3f7);
    animation: mobileShimmer 4s ease-in-out infinite;
}

@keyframes mobileFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes mobileShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mobile App Section Dark Theme */
.dark-theme .download-app-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(44, 44, 44, 0.98) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" fill="none"><defs><pattern id="mobile-grid-dark" width="70" height="70" patternUnits="userSpaceOnUse"><path d="M 70 0 L 0 0 0 70" fill="none" stroke="%234fc3f7" stroke-width="0.6" opacity="0.06"/></pattern><pattern id="mobile-dots-dark" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.2" fill="%234fc3f7" opacity="0.1"/></pattern><filter id="mobile-glow-dark"><feGaussianBlur stdDeviation="5" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter><radialGradient id="mobile-radial-dark" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234fc3f7" stop-opacity="0.12"/><stop offset="100%" stop-color="%234fc3f7" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23mobile-grid-dark)"/><rect width="100%" height="100%" fill="url(%23mobile-dots-dark)"/><g filter="url(%23mobile-glow-dark)"><circle cx="250" cy="180" r="100" fill="url(%23mobile-radial-dark)"/><circle cx="950" cy="480" r="140" fill="url(%23mobile-radial-dark)"/><circle cx="750" cy="240" r="80" fill="url(%23mobile-radial-dark)"/><circle cx="350" cy="450" r="120" fill="url(%23mobile-radial-dark)"/><circle cx="1050" cy="350" r="90" fill="url(%23mobile-radial-dark)"/><circle cx="200" cy="550" r="110" fill="url(%23mobile-radial-dark)"/></g><g opacity="0.08"><path d="M 0 120 Q 350 70 700 120 T 1200 120" stroke="%234fc3f7" stroke-width="2.5" fill="none"/><path d="M 0 520 Q 350 470 700 520 T 1200 520" stroke="%234fc3f7" stroke-width="2.5" fill="none"/></g></svg>') !important;
    background-size: cover, 1200px 600px !important;
    background-position: center, center !important;
    background-repeat: no-repeat, repeat !important;
}

.dark-theme .download-app-section::before {
    background: radial-gradient(circle at 25% 25%, rgba(79, 195, 247, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(102, 165, 173, 0.06) 0%, transparent 50%) !important;
}

.dark-theme .download-app-section::after {
    background: linear-gradient(90deg, #4fc3f7, #66A5AD, #4fc3f7) !important;
}

.app-download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.app-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: appRotate 4s linear infinite;
}

.app-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 17px;
    z-index: 1;
}

@keyframes appRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.app-icon i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 2;
    position: relative;
}

.app-text h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.app-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item i {
    color: #3498db;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-stats {
    display: flex;
    gap: 25px;
}

.app-stats .stat-item {
    text-align: center;
    color: #fff;
}

.app-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
}

.app-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* App Download Card */
.app-download {
    display: flex;
    justify-content: center;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

/* Phone Mockup */
.app-preview {
    margin-bottom: 25px;
}

.phone-mockup {
    width: 180px;
    height: 320px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 22px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 13px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.app-logo {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo i {
    font-size: 1.3rem;
    color: #fff;
}

.app-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-item i {
    font-size: 1.3rem;
}

.service-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Download Actions */
.download-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.play-store-btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
    display: inline-block;
}

.play-store-btn:hover {
    background: linear-gradient(135deg, #34a853, #4285f4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-icon i {
    font-size: 1.7rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.btn-store {
    font-size: 1.1rem;
    font-weight: bold;
}

/* QR Code Section */
.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-code {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.qr-placeholder i {
    font-size: 1.3rem;
}

.qr-placeholder span {
    font-size: 0.7rem;
    text-align: center;
}

.qr-code-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Download App */
@media (max-width: 1200px) {
    .app-download-content {
        gap: 30px;
    }
    
    .app-text h2 {
        font-size: 2.2rem;
    }
    
    .app-text p {
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 160px;
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .app-download-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .app-info {
        gap: 15px;
    }
    
    .app-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .app-icon i {
        font-size: 2.2rem;
    }
    
    .app-text h2 {
        font-size: 2rem;
        margin: 0 0 12px 0;
    }
    
    .app-text p {
        font-size: 0.95rem;
        margin: 0 0 15px 0;
    }
    
    .app-features {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 20px;
        gap: 12px;
    }
    
    .feature-item {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .feature-item i {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .app-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .app-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .app-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .download-card {
        max-width: 320px;
        padding: 25px;
    }
    
    .phone-mockup {
        width: 150px;
        height: 260px;
    }
    
    .phone-screen {
        padding: 12px;
        gap: 12px;
    }
    
    .app-logo {
        width: 30px;
        height: 30px;
    }
    
    .app-logo i {
        font-size: 1.2rem;
    }
    
    .app-header h3 {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 10px;
        gap: 5px;
    }
    
    .service-item i {
        font-size: 1.2rem;
    }
    
    .service-item span {
        font-size: 0.7rem;
    }
    
    .play-store-btn {
        padding: 10px 18px;
    }
    
    .btn-icon i {
        font-size: 1.5rem;
    }
    
    .btn-store {
        font-size: 1rem;
    }
    
    .qr-code {
        width: 60px;
        height: 60px;
    }
    
    .qr-placeholder i {
        font-size: 1.2rem;
    }
    
    .qr-placeholder span {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 35px 0;
    }
    
    .app-download-content {
        gap: 25px;
    }
    
    .app-info {
        gap: 12px;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-icon i {
        font-size: 2rem;
    }
    
    .app-text h2 {
        font-size: 1.8rem;
        margin: 0 0 10px 0;
    }
    
    .app-text p {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
        line-height: 1.4;
    }
    
    .app-features {
        max-width: 300px;
        margin: 0 auto 15px;
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .feature-item i {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }
    
    .app-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-stats .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .app-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .app-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .download-card {
        max-width: 280px;
        padding: 20px 15px;
    }
    
    .phone-mockup {
        width: 130px;
        height: 230px;
        padding: 10px;
    }
    
    .phone-screen {
        padding: 10px;
        gap: 10px;
    }
    
    .app-logo {
        width: 25px;
        height: 25px;
    }
    
    .app-logo i {
        font-size: 1rem;
    }
    
    .app-header h3 {
        font-size: 0.9rem;
    }
    
    .app-content {
        gap: 8px;
    }
    
    .service-item {
        padding: 8px;
        gap: 4px;
    }
    
    .service-item i {
        font-size: 1rem;
    }
    
    .service-item span {
        font-size: 0.65rem;
    }
    
    .download-actions {
        gap: 15px;
    }
    
    .play-store-btn {
        padding: 8px 15px;
    }
    
    .btn-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-icon i {
        font-size: 1.3rem;
    }
    
    .btn-text {
        align-items: center;
    }
    
    .btn-label {
        font-size: 0.6rem;
    }
    
    .btn-store {
        font-size: 0.9rem;
    }
    
    .qr-code {
        width: 50px;
        height: 50px;
    }
    
    .qr-placeholder i {
        font-size: 1rem;
    }
    
    .qr-placeholder span {
        font-size: 0.55rem;
    }
    
    .qr-code-section p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .download-app-section {
        padding: 25px 0;
    }
    
    .app-download-content {
        gap: 20px;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-icon i {
        font-size: 1.8rem;
    }
    
    .app-text h2 {
        font-size: 1.6rem;
        margin: 0 0 8px 0;
    }
    
    .app-text p {
        font-size: 0.85rem;
        margin: 0 0 10px 0;
    }
    
    .app-features {
        max-width: 250px;
        margin: 0 auto 12px;
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .feature-item i {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }
    
    .app-stats {
        gap: 12px;
    }
    
    .app-stats .stat-item {
        padding: 6px 0;
    }
    
    .app-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .app-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .download-card {
        max-width: 250px;
        padding: 15px 12px;
    }
    
    .phone-mockup {
        width: 110px;
        height: 200px;
        padding: 8px;
    }
    
    .phone-screen {
        padding: 8px;
        gap: 8px;
    }
    
    .app-logo {
        width: 20px;
        height: 20px;
    }
    
    .app-logo i {
        font-size: 0.9rem;
    }
    
    .app-header h3 {
        font-size: 0.8rem;
    }
    
    .app-content {
        gap: 6px;
    }
    
    .service-item {
        padding: 6px;
        gap: 3px;
    }
    
    .service-item i {
        font-size: 0.9rem;
    }
    
    .service-item span {
        font-size: 0.6rem;
    }
    
    .download-actions {
        gap: 12px;
    }
    
    .play-store-btn {
        padding: 6px 12px;
    }
    
    .btn-content {
        gap: 6px;
    }
    
    .btn-icon i {
        font-size: 1.1rem;
    }
    
    .btn-label {
        font-size: 0.55rem;
    }
    
    .btn-store {
        font-size: 0.8rem;
    }
    
    .qr-code {
        width: 40px;
        height: 40px;
    }
    
    .qr-placeholder i {
        font-size: 0.9rem;
    }
    
    .qr-placeholder span {
        font-size: 0.5rem;
    }
    
    .qr-code-section p {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .download-app-section {
        padding: 20px 0;
    }
    
    .app-text h2 {
        font-size: 1.4rem;
    }
    
    .app-text p {
        font-size: 0.8rem;
    }
    
    .app-features {
        max-width: 220px;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    .download-card {
        max-width: 220px;
        padding: 12px 10px;
    }
    
    .phone-mockup {
        width: 100px;
        height: 180px;
    }
    
    .play-store-btn {
        padding: 5px 10px;
    }
    
    .btn-icon i {
        font-size: 1rem;
    }
    
    .btn-store {
        font-size: 0.75rem;
    }
}

/* Email Subscription Section */
.email-subscription-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.email-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.subscription-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.subscription-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.subscription-text h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.subscription-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.subscription-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subscription Form */
.subscription-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.subscription-form {
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.subscription-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.subscription-input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.subscription-input::placeholder {
    color: #999;
}

.subscription-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.subscription-btn:hover {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.subscription-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-messages {
    margin-bottom: 15px;
}

.success-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    border: 2px solid #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: slideInUp 0.4s ease;
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.success-content i {
    font-size: 2rem;
    color: #fff;
    margin-top: 5px;
}

.success-text h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.success-text p {
    margin: 0 0 15px 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.detail-item i {
    font-size: 0.9rem;
    color: #fff;
}

/* Celebration Animation */
.success-message.celebrate {
    animation: celebrate 0.6s ease;
}

@keyframes celebrate {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.privacy-note i {
    color: #4CAF50;
}

/* Subscription Stats */
.subscription-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Newsletter Toggle */
.newsletter-toggle {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

.newsletter-toggle i {
    transition: transform 0.3s ease;
}

.email-subscription-section.expanded .newsletter-toggle i {
    transform: rotate(180deg);
}

/* Responsive Email Subscription */
@media (max-width: 1200px) {
    .email-subscription-section {
        padding: 50px 0;
    }
    
    .subscription-content {
        gap: 40px;
    }
    
    .subscription-text h2 {
        font-size: 2.2rem;
    }
    
    .subscription-text p {
        font-size: 1rem;
    }
    
    .subscription-icon {
        width: 70px;
        height: 70px;
    }
    
    .subscription-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .email-subscription-section {
        padding: 45px 0;
    }
    
    .subscription-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .subscription-info {
        gap: 20px;
    }
    
    .subscription-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }
    
    .subscription-icon i {
        font-size: 2rem;
    }
    
    .subscription-text h2 {
        font-size: 2rem;
        margin: 0 0 12px 0;
    }
    
    .subscription-text p {
        font-size: 0.95rem;
        margin: 0 0 20px 0;
        line-height: 1.5;
    }
    
    .subscription-benefits {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 25px;
        gap: 12px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .benefit-item i {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }
    
    .subscription-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .subscription-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .subscription-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .subscription-form-container {
        max-width: 400px;
        margin: 0 auto;
        padding: 25px;
    }
    
    .subscription-form {
        margin-bottom: 20px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .subscription-input {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .subscription-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .privacy-note {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .privacy-note i {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .email-subscription-section {
        padding: 35px 0;
    }
    
    .subscription-content {
        gap: 25px;
    }
    
    .subscription-info {
        gap: 15px;
    }
    
    .subscription-icon {
        width: 55px;
        height: 55px;
    }
    
    .subscription-icon i {
        font-size: 1.8rem;
    }
    
    .subscription-text h2 {
        font-size: 1.8rem;
        margin: 0 0 10px 0;
    }
    
    .subscription-text p {
        font-size: 0.9rem;
        margin: 0 0 15px 0;
        line-height: 1.4;
    }
    
    .subscription-benefits {
        max-width: 300px;
        margin: 0 auto 20px;
        gap: 10px;
    }
    
    .benefit-item {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .benefit-item i {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }
    
    .subscription-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .subscription-stats .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    
    .subscription-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .subscription-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .subscription-form-container {
        max-width: 320px;
        padding: 20px;
    }
    
    .subscription-form {
        margin-bottom: 15px;
    }
    
    .form-group {
        gap: 10px;
    }
    
    .subscription-input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .subscription-input::placeholder {
        font-size: 0.85rem;
    }
    
    .subscription-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .form-messages {
        margin-top: 10px;
    }
    
    .success-message, .error-message {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .success-content {
        gap: 12px;
    }
    
    .success-content i {
        font-size: 1.5rem;
    }
    
    .success-text h4 {
        font-size: 1.1rem;
    }
    
    .success-details {
        gap: 6px;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .privacy-note {
        font-size: 0.75rem;
        gap: 5px;
        margin-top: 12px;
    }
    
    .privacy-note i {
        font-size: 0.75rem;
    }
    
    .newsletter-toggle {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .newsletter-toggle i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .email-subscription-section {
        padding: 25px 0;
    }
    
    .subscription-content {
        gap: 20px;
    }
    
    .subscription-info {
        gap: 12px;
    }
    
    .subscription-icon {
        width: 45px;
        height: 45px;
    }
    
    .subscription-icon i {
        font-size: 1.6rem;
    }
    
    .subscription-text h2 {
        font-size: 1.6rem;
        margin: 0 0 8px 0;
    }
    
    .subscription-text p {
        font-size: 0.85rem;
        margin: 0 0 12px 0;
    }
    
    .subscription-benefits {
        max-width: 250px;
        margin: 0 auto 15px;
        gap: 8px;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .benefit-item i {
        width: 14px;
        height: 14px;
        font-size: 0.7rem;
    }
    
    .subscription-stats {
        gap: 12px;
    }
    
    .subscription-stats .stat-item {
        padding: 6px 0;
    }
    
    .subscription-stats .stat-number {
        font-size: 1.1rem;
    }
    
    .subscription-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .subscription-form-container {
        max-width: 280px;
        padding: 15px;
    }
    
    .subscription-form {
        margin-bottom: 12px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .subscription-input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .subscription-input::placeholder {
        font-size: 0.8rem;
    }
    
    .subscription-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .form-messages {
        margin-top: 8px;
    }
    
    .success-message, .error-message {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .privacy-note {
        font-size: 0.7rem;
        gap: 4px;
        margin-top: 10px;
    }
    
    .privacy-note i {
        font-size: 0.7rem;
    }
    
    .newsletter-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .newsletter-toggle i {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .email-subscription-section {
        padding: 20px 0;
    }
    
    .subscription-text h2 {
        font-size: 1.4rem;
    }
    
    .subscription-text p {
        font-size: 0.8rem;
    }
    
    .subscription-benefits {
        max-width: 220px;
    }
    
    .benefit-item {
        font-size: 0.75rem;
    }
    
    .subscription-form-container {
        max-width: 250px;
        padding: 12px;
    }
    
    .subscription-input {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .subscription-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .success-message, .error-message {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .privacy-note {
        font-size: 0.65rem;
    }
    
    .newsletter-toggle {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
} 