html {
    scroll-behavior: smooth;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

/* ... existing code ... */
.cat-link {
    font-size: 1.3rem;
    /* Larger letters as requested */
    font-weight: 700;
    /* Bold */
    color: #333;
    padding: 1rem 2rem;
    /* Larger hit area */
    border: 3px solid #007bff;
    /* Thicker border */
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

/* Modern News Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #eee;
}

.header-left {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    color: #004085;
    /* Dark blue/text */
    text-transform: uppercase;
}

/* Indian Flag Gradient Text */
.india-text {
    background: linear-gradient(90deg, #FF9933 10%, #000080 50%, #138808 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900 !important;
    display: inline-block;
}

.live-clock {
    font-size: 1.8rem;
    font-weight: 800;
    color: #dc3545;
    /* Red */
    line-height: 1;
    margin: 2px 0;
    font-family: 'Segoe UI', sans-serif;
    /* Digital look */
    transition: color 1s ease;
    /* Smooth color change */
}

.current-date {
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 900;
    /* Diagonal gradient with Flag Colors: Saffron, Navy (for contrast), Green */
    background: linear-gradient(135deg, #FF9933 0%, #000080 30%, #138808 60%, #FF9933 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    animation: waveFlag 5s ease infinite;
}

@keyframes waveFlag {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: #333;
    font-size: 1rem;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #007bff;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

/* Bottom Header (Nav) */
.bottom-header {
    background-color: #0047AB;
    /* Cobalt Blue */
    color: white;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.main-navigation {
    display: flex;
    gap: 0;
    overflow-x: auto;
    height: 100%;
    align-items: center;
    -webkit-overflow-scrolling: touch;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 1.2rem;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-trigger {
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding-left: 1rem;
}

/* Responsive Header */
@media (max-width: 992px) {
    .brand-logo {
        font-size: 1.5rem;
    }

    .live-clock {
        font-size: 1.4rem;
    }

    .header-center {
        position: relative;
        left: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .header-center {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .header-left {
        align-items: center;
    }

    .bottom-header {
        padding: 0 1rem;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(120deg, #2980b9, #8e44ad);
    color: white;
    margin-bottom: 2rem;
    /* Reduced bottom margin to fit navbar closer */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    /* Modern Shimmer Gradient */
    background: linear-gradient(to right, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite, modernSlideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes modernSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Category Navigation Bar */
.category-nav-container {
    background: white;
    /* Keeping the container borders as requested previously */
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
}

.category-nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.cat-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    padding: 0.8rem 2rem;
    border: 3px solid #007bff;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
}

.cat-link:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

/* Product Section */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 3px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Standard Grid Display */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Reference Design - Mobile Responsive */
.product-card {
    background: white;
    border: 1px solid #e1e4e8;
    /* Cleaner border */
    border-radius: 12px;
    /* Modern rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Very subtle base shadow */
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;

    /* Initial State for Scroll Animation */
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 85%;
        /* Peek effect on mobile */
        min-width: 85%;
        margin-right: 15px;
        /* Slight spacing for peek */
    }

    .product-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-right: 15px;
        /* End padding */
        scroll-padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar for cleaner look */
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }
}

.product-card.in-view {
    opacity: 1;
    transform: translateX(0);

    /* Share & Earn Styles */
    /* Share & Earn Styles */
    .share-wrapper {
        display: flex;
        align-items: center;
        border: 1px solid #e1e4e8;
        background: #f8f9fa;
        border-radius: 20px;
        padding: 2px 8px 2px 2px;
        gap: 8px;
    }

    .share-btn {
        background: white;
        border: 1px solid #ddd;
        color: #333;
        padding: 0.4rem 0.8rem;
        /* slightly smaller padding */
        border-radius: 18px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s;
        font-size: 0.85rem;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .share-btn:hover {
        background: #f0f0f0;
    }

    .coin-display {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.9rem;
        color: #333;
        font-weight: 700;
    }

    .coin-count {
        transition: color 0.3s ease;
    }

    /* Modern Share Modal */
    .share-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        z-index: 10000;
        display: none;
        /* Hidden by default */
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .share-overlay.active {
        opacity: 1;
    }

    .share-card {
        background: white;
        width: 90%;
        max-width: 400px;
        border-radius: 24px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        transform: translateY(20px);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    .share-overlay.active .share-card {
        transform: translateY(0);
    }

    .share-header h3 {
        margin: 0;
        font-size: 1.5rem;
        color: #333;
        font-weight: 800;
    }

    .share-header p {
        color: #666;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .share-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 4 cols */
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .social-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #555;
        font-size: 0.8rem;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .social-item:hover {
        transform: translateY(-5px);
    }

    .social-icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Brand Colors */
    .whatsapp {
        background: #25D366;
    }

    .facebook {
        background: #1877F2;
    }

    .twitter {
        background: #1DA1F2;
    }

    .telegram {
        background: #0088cc;
    }

    .copy-link {
        background: #555;
    }

    .close-modal {
        background: #f0f0f0;
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
        font-size: 1.2rem;
        color: #777;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-modal:hover {
        background: #e0e0e0;
        color: #333;
    }


    .product-card:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
        /* Hover effect still applies on top of in-view */
    }

    .product-card:active,
    .product-card:focus-within {
        /* Click "Light Up" Effect */
        animation: rainbowGlow 0.5s linear infinite;
        transform: translateY(-2px) scale(0.98);
    }

    @keyframes rainbowGlow {
        0% {
            box-shadow: 0 0 20px #ff0000;
            border-color: #ff0000;
        }

        20% {
            box-shadow: 0 0 20px #ff7f00;
            border-color: #ff7f00;
        }

        40% {
            box-shadow: 0 0 20px #ffff00;
            border-color: #ffff00;
        }

        60% {
            box-shadow: 0 0 20px #00ff00;
            border-color: #00ff00;
        }

        80% {
            box-shadow: 0 0 20px #0000ff;
            border-color: #0000ff;
        }

        100% {
            box-shadow: 0 0 20px #8b00ff;
            border-color: #8b00ff;
        }
    }

    .card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #ef4444;
        /* Red badge */
        color: white;
        padding: 4px 10px;
        font-size: 0.8rem;
        font-weight: bold;
        border-radius: 4px;
        z-index: 10;
    }

    .image-container {
        background-color: #fff;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 360px;
        overflow: hidden;
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s;
    }

    .product-card:hover .product-image {
        transform: scale(1.1);
    }

    .card-content {
        padding: 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex: 1;
        /* Fills remaining space */
    }

    .product-category {
        font-size: 0.8rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .product-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .product-price {
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }

    .original-price {
        text-decoration: line-through;
        color: #999;
    }

    .current-price {
        font-size: 1.4rem;
        font-weight: 800;
        color: #FFD700;
        /* Gold */
        animation: goldPulse 1.5s infinite;
    }

    @keyframes goldPulse {
        0% {
            transform: scale(1);
            text-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
        }

        50% {
            transform: scale(1.05);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }

        100% {
            transform: scale(1);
            text-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
        }
    }

    /* Bottom Action Row */
    .card-actions {
        margin-top: auto;
        display: flex;
        gap: 10px;
    }

    /* Modern Button Styling */
    .view-details-btn {
        flex: 1;
        background-color: #374151;
        /* Modern dark slate */
        color: white;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-top: 0;
        width: auto;
    }

    .view-details-btn:hover {
        background-color: #34495e;
        transform: none;
        /* Keep it simple */
        box-shadow: none;
    }

    .wishlist-btn {
        width: 48px;
        height: 46px;
        /* Match height roughy */
        background: white;
        border: 1px solid #ddd;
        border-radius: 6px;
        color: #dc3545;
        /* Red heart */
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: border-color 0.2s, background 0.2s;
    }

    .wishlist-btn:hover {
        border-color: #dc3545;
        background: #fff5f5;
    }

    .whatsapp-btn {
        flex: 1;
        background-color: #25D366;
        color: white;
        border: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: all 0.2s ease;
        text-decoration: none;
        box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
    }

    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: #fefefe;
        margin: 8% auto;
        padding: 2.5rem;
        border: none;
        width: 90%;
        max-width: 550px;
        border-radius: 12px;
        position: relative;
        animation: zoomIn 0.3s;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.2s;
    }

    .close:hover {
        color: #333;
    }

    /* Logo Word Animation Keyframes */
    @keyframes flyAway {
        0% {
            transform: translateY(0);
            opacity: 1;
        }

        100% {
            transform: translateY(-20px);
            opacity: 0;
        }
    }

    @keyframes comeDown {
        0% {
            transform: translateY(-20px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Old header categories removed/replaced by main details */

    /* Updated chip style for Header */
    .header-cat-link {
        font-size: 0.9rem;
        font-weight: 600;
        color: #444;
        padding: 0.5rem 1.2rem;
        border: 1px solid #e5e7eb;
        background: #f9fafb;
        border-radius: 50px;
        white-space: nowrap;
        transition: all 0.2s;
        text-transform: uppercase;
    }

    .header-cat-link:hover {
        background: #007bff;
        color: white;
        border-color: #007bff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    }


    /* Creative Contact Section */
    .contact-section {
        padding: 6rem 1rem;
        background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 100%);
        /* Fresh gradient */
        margin-top: 4rem;
        position: relative;
        overflow: hidden;
    }

    /* Background elements for creativity */
    .contact-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 300px;
        height: 300px;
        background: rgba(0, 123, 255, 0.05);
        border-radius: 50%;
        z-index: 0;
    }

    .contact-container {
        max-width: 1000px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
        display: flex;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .contact-info-side {
        background: linear-gradient(135deg, #007bff 0%, #00d2ff 100%);
        color: white;
        padding: 4rem 3rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-info-side h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .contact-info-side p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 3rem;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-form-side {
        flex: 1.5;
        padding: 4rem 3rem;
        background: white;
    }

    .modern-input-group {
        position: relative;
        margin-bottom: 2rem;
    }

    .modern-input {
        width: 100%;
        padding: 10px 0;
        font-size: 1rem;
        color: #333;
        border: none;
        border-bottom: 2px solid #ddd;
        outline: none;
        background: transparent;
        transition: border-color 0.3s;
    }

    .modern-input:focus {
        border-bottom-color: #007bff;
    }

    .modern-label {
        position: absolute;
        top: 10px;
        left: 0;
        font-size: 1rem;
        color: #999;
        pointer-events: none;
        transition: 0.3s ease all;
    }

    .modern-input:focus~.modern-label,
    .modern-input:valid~.modern-label {
        top: -20px;
        font-size: 0.85rem;
        color: #007bff;
        font-weight: 600;
    }

    .submit-btn-modern {
        background: #007bff;
        color: white;
        padding: 1rem 3rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
        transition: transform 0.3s, box-shadow 0.3s;
        width: auto;
    }

    .submit-btn-modern:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
        background: #0056b3;
    }

    @media (max-width: 768px) {
        header {
            flex-direction: column;
            gap: 1rem;
            padding: 1rem;
        }

        .nav-links {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .header-categories {
            width: 100%;
            justify-content: flex-start;
            /* Start align for scrolling */
            padding-bottom: 10px;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding-left: 5px;
            /* Helper padding */
        }

        .hero {
            padding: 4rem 1rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        /* Contact Page Mobile */
        .contact-container {
            flex-direction: column;
        }

        .contact-info-side,
        .contact-form-side {
            padding: 2rem;
        }

        /* Product Details Mobile */
        .detail-container {
            flex-direction: column;
            gap: 2rem;
        }

        .detail-image-side,
        .detail-info-side {
            width: 100%;
            /* Full width on mobile */
        }

        .main-detail-image {
            max-height: 300px;
            /* Limit height */
        }
    }

    @media (max-width: 480px) {
        .product-grid {
            grid-template-columns: 1fr;
            /* Single column on very small screens */
        }

        .section-title {
            font-size: 1.5rem;
        }

        .cat-link {
            padding: 0.6rem 1.2rem;
            font-size: 1rem;
        }
    }

    /* Modern Footer */
    .main-footer {
        background-color: white;
        color: #1e293b;
        padding: 5rem 1rem 2rem;
        border-top: 1px solid #eee;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #0f172a;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #64748b;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: #007bff;
    }

    .footer-contact li {
        display: flex;
        gap: 10px;
        margin-bottom: 1rem;
        color: #64748b;
        align-items: flex-start;
    }

    .footer-contact i {
        color: #007bff;
        margin-top: 4px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid #eee;
        color: #94a3b8;
    }

    .footer-desc {
        color: #64748b;
        line-height: 1.6;
        margin-top: 1rem;
    }