/* -------------------------
   LIGHT MODE THEME
   -------------------------*/
:root {
    --bg: #f4f7fc;
    --card: #ffffff;
    --accent: #0066ff;
    --accent-2: #7a2cff;
    --muted: #4a5568;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-2: rgba(0, 0, 0, 0.03);
    --radius: 12px;
    --ff-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* Body background override */
body {
    background: radial-gradient(1200px 800px at 10% 10%, rgba(0, 102, 255, 0.12), transparent),
        radial-gradient(900px 600px at 90% 80%, rgba(122, 44, 255, 0.10), transparent),
        var(--bg);
    color: #1a1a1a;
}

.hamburger .bar {
    background-color: #001f3f;
}

.hamburger .bar::after,
.hamburger .bar::before {
    background-color: #001f3f;
}

/* Cards */
.services .card {
    background: linear-gradient(135deg, #ffffff, #e8ecf5);
    color: #1a1a1a;
    border: 1px solid #cfd6e6;
}

#services h3 {
    color: black;
}


.services .card h4 {
    color: black;
}

.services .card p {
    color: #4a5568;
}

/* About Section */
#about {
    background: linear-gradient(115deg, #0066ff21, #7a2cff2e);
}

#about .about-container h3 {
    color: black;
}

#about .about-container .company-info p {
    color: black;
}

/* Contact section */
#contact {
    background: linear-gradient(135deg, #ffffff, #dfe6f7);
    color: #1a1a1a;
}

#contact .contact-text {
    color: #555;
}

.contact-details p {
    color: #333;
}

#contact .contact-container h3 {
    color: black;
}

/* Footer */
.desktop-footer {
    color: black;
    z-index: 60;
    backdrop-filter: blur(6px);
    padding: 8px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 18px;
    margin: 0 18px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.6);
}

.desktop-footer .social-icon {
    background: rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left p {
    margin: 4px 0;
    font-size: 14px;
    color: #000000;
}

.footer-left .designed strong {
    color: #000000;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
}

.desktop-footer .social-icon {
    font-size: 24px;
    color: #001f3f;
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
    background-color: #ffffff18;
    border: 1px solid #001f3f;
}