@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-light: #f0f7ff;
    --bg-gradient: radial-gradient(circle at top right, #dbeafe 0%, #f0f7ff 60%);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(59, 130, 246, 0.4); /* Blue outline */
    --accent-blue: #3b82f6; /* Bright vivid blue */
    --accent-cyan: #0ea5e9; /* Sky blue */
    --accent-purple: #8b5cf6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --glass-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.05), inset 0 1px 8px rgba(255, 255, 255, 0.9);
    --glass-shadow-hover: 0 30px 50px -15px rgba(59, 130, 246, 0.18), inset 0 2px 10px rgba(255, 255, 255, 0.9);
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --new-year-red: #da291c;
    --new-year-gold: #ffcc00;
}


/* --- DARK MODE VARIABLES (Premium) --- */
body.dark-mode {
    --bg-light: #020617; /* Cyberpunk incredibly dark slate */
    --bg-gradient: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), 
                   radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                   linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --glass-bg: rgba(15, 23, 42, 0.5); /* Extremely sheer dark glass */
    --glass-border: rgba(96, 165, 250, 0.15); /* Soft frosty blue border */
    --accent-blue: #60a5fa; /* Glowy bright blue */
    --accent-cyan: #38bdf8;
    --accent-purple: #a78bfa;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* Smart dark mode glow shadows instead of light mode inset */
    --glass-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5), inset 0 1px 3px rgba(255, 255, 255, 0.05);
    --glass-shadow-hover: 0 25px 45px -10px rgba(59, 130, 246, 0.15), inset 0 1px 4px rgba(255, 255, 255, 0.1);
}

body.dark-mode .nav-links {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(96, 165, 250, 0.1);
}
body.dark-mode .btn-outline {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}
body.dark-mode .btn-outline:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}
body.dark-mode .contact-form input, body.dark-mode .contact-form textarea {
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-primary);
    border-color: rgba(96, 165, 250, 0.15);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}
body.dark-mode .contact-form input:focus, body.dark-mode .contact-form textarea:focus {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15), inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.custom-cursor, .custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    will-change: transform;
}
.custom-cursor {
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}
.custom-cursor-outline {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--accent-blue);
    margin-left: -13px;
    margin-top: -13px;
}
body:hover .custom-cursor, body:hover .custom-cursor-outline {
    opacity: 1;
}

/* Hide default cursor on desktop when over the document */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, .clickable, .logo { cursor: none; }
}

@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-outline { display: none; }
    body { cursor: auto !important; }
}

/* ========== PRE-LOADER (Premium) ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-light);
    background-image: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(59, 130, 246, 0.1);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.loader-ring::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 4px solid rgba(139, 92, 246, 0.1);
    border-bottom: 4px solid var(--accent-purple);
    border-radius: 50%;
    animation: loader-spin 2s linear infinite reverse;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}


body.dark-mode footer {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9), transparent) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    transition: background 0.2s ease, background-image 0.2s ease, color 0.2s ease;
}

/* --- Page Load Progress Bar --- */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    z-index: 9999;
    transition: width 0.25s ease;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Layout */
.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; position: relative; }
section { padding: 120px 0 80px; min-height: 70vh; display: flex; flex-direction: column; justify-content: center; }

/* ========== NAVBAR — Blue Gradient ========== */
nav {
    margin: 20px auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95) 0%, rgba(224, 231, 255, 0.95) 100%);
    border: 2px solid var(--accent-blue);
    border-radius: 100px;
    max-width: 820px;
    box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.05);
    position: sticky;
    top: 20px;
    z-index: 100;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode nav {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--accent-blue);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
}
.logo::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: block;
    margin-top: 4px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.7);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Nav Links */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 100px;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}
.nav-links a.active {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

/* ========== GZC COMPANY NAV BUTTON ========== */
.btn-gzc-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.5);
    border: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-gzc-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-gzc-nav:hover::before { opacity: 1; }
.btn-gzc-nav:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 15px 30px -8px rgba(139, 92, 246, 0.55);
    color: #fff;
}
.btn-gzc-nav i {
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}
.btn-gzc-nav span, .btn-gzc-nav { position: relative; }

/* ========== GLASS CARDS — Blue Outline ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border); /* Thinner subtle outline */
    border-radius: 32px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}
.glass:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--accent-blue);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    letter-spacing: -0.01em;
}
.btn-primary {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.35);
}
.btn-primary:hover {
    box-shadow: 0 20px 35px -10px rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    color: #fff;
    background: #2563eb;
}
.btn-outline {
    background: #ffffff;
    border: 2px solid var(--accent-blue); /* Blue outline */
    color: var(--accent-blue);
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.1);
}
.btn-outline:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.2);
    transform: translateY(-3px);
}

/* ========== FORM ========== */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 2px solid rgba(59, 130, 246, 0.3); /* Blue outline */
    border-radius: 20px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), inset 0 2px 6px rgba(0,0,0,0.02);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* ========== REVEAL ANIMATION ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== LAYOUT ========== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

/* ========== SCROLL TO TOP BUTTON ========== */
#scroll-top {
    position: fixed;
    bottom: 240px; /* Above the utility group */
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
}
#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
#scroll-top:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

/* ========== WHATSAPP CHAT BUBBLE ========== */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid white;
    animation: wa-bounce 3s ease-in-out infinite;
}
@keyframes wa-bounce {
    0%, 100% { box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.7); transform: translateY(-4px); }
}
.whatsapp-chat:hover {
    transform: translateY(-6px) scale(1.1) !important;
    box-shadow: 0 20px 40px -5px rgba(37, 211, 102, 0.6);
    background: #1ebe57;
    animation: none;
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #111;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid rgba(37,211,102,0.3);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: white;
}
.whatsapp-chat:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-6px);
}

/* ========== CURSOR GLOW (Smart Feature) ========== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease, top 0.15s ease;
}

/* ========== TYPING CURSOR ========== */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-blue);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ========== RESPONSIVE ========== */
.hamburger {
    display: none;
    font-size: 1.6rem;
    color: var(--accent-blue);
    cursor: pointer;
    margin-left: 12px;
    transition: var(--transition);
}

@media (max-width: 900px) {
    nav { max-width: 95%; margin: 15px auto; padding: 10px 20px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }

    /* Mobile Nav Dropdown */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.2);
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        text-align: center;
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px);
    }
    
    .btn-gzc-nav {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .grid-2 { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .grid-3 { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    
    h1 { font-size: 2.4rem !important; }
    h2 { font-size: 2.0rem !important; }
    h3 { font-size: 1.4rem !important; }
    p { font-size: 0.95rem; }
    section { padding: 80px 0 50px; min-height: auto; }
    
    /* Center align everything in footer components */
    footer div[style*="align-items: flex-start"] {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Reduce floating buttons bulk on mobile */
    .whatsapp-chat {
        width: 50px; height: 50px; font-size: 26px;
        bottom: 20px; right: 20px;
    }
    .contact-float-btn {
        width: 50px; height: 50px; font-size: 1.2rem;
        bottom: 80px; right: 20px;
    }
    .theme-float-btn {
        width: 50px; height: 50px; font-size: 1.3rem;
        top: 25px; bottom: auto; right: 20px;
    }
    .chatbot-trigger {
        width: 50px; height: 50px; font-size: 1.3rem;
        bottom: 140px; right: 20px;
    }
    
    #scroll-top {
        width: 40px; height: 40px; font-size: 1rem;
        bottom: 200px; right: 20px;
    }
    
    .glass { padding: 25px; }
    .glass:hover { transform: translateY(-3px); }
}

/* Hide contact float btn on the contact page itself */
.contact-float-hidden {
    display: none !important;
}

/* ========== GZC COMPANY NAVBAR BUTTON — Customer Attention ========== */
.btn-gzc-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-left: auto;   /* push to far right of navbar */
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.03em;
    position: relative;
    overflow: visible; /* allow outer pulse ring */
    background: linear-gradient(135deg, #1d4ed8, #7c3aed, #0ea5e9);
    background-size: 300% 300%;
    animation: gzc-grad 3.5s ease infinite, gzc-attention 6s 2s ease-in-out infinite;
    box-shadow:
        0 6px 20px rgba(59, 130, 246, 0.5),
        0 0 0 2px rgba(255,255,255,0.3) inset;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    z-index: 1;
}

/* Flowing gradient animation */
@keyframes gzc-grad {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Attention-grabbing subtle shake/bounce to catch customer eye */
@keyframes gzc-attention {
    0%, 90%, 100% { transform: translateY(0) scale(1); }
    92%           { transform: translateY(-5px) scale(1.06); }
    94%           { transform: translateY(0) scale(1); }
    96%           { transform: translateY(-3px) scale(1.03); }
    98%           { transform: translateY(0) scale(1); }
}

/* Outer pulsing glow ring — draws customer eyes */
.btn-gzc-nav::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #0ea5e9);
    background-size: 300% 300%;
    animation: gzc-grad 3.5s ease infinite, gzc-ring-pulse 2.5s ease-in-out infinite;
    z-index: -1;
    filter: blur(6px);
    pointer-events: none; /* Crucial: stops the glow from blocking clicks on other links */
}
@keyframes gzc-ring-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(1.05); }
}

/* Shimmer sweep on hover */
.btn-gzc-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    border-radius: 100px;
    transition: left 0.55s ease;
    z-index: 2;
    pointer-events: none; /* Prevent shimmer from blocking clicks */
}
.btn-gzc-nav:hover::before { left: 140%; }

/* Hover: big lift + stronger glow */
.btn-gzc-nav:hover {
    transform: translateY(-4px) scale(1.07);
    box-shadow:
        0 16px 35px rgba(59, 130, 246, 0.6),
        0 0 0 2px rgba(255,255,255,0.4) inset;
    color: #fff;
    animation: gzc-grad 3.5s ease infinite; /* stop attention shake on hover */
}

/* Company icon - building style */
.btn-gzc-nav i {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
    z-index: 2;
    position: relative;
}
.btn-gzc-nav:hover i {
    transform: scale(1.25) rotate(-5deg);
}

/* "Visit" badge — small live dot to say it's active */
.gzc-badge {
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 2px 9px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
/* Live green dot inside badge */
.gzc-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: gzc-live 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px #4ade80;
}
@keyframes gzc-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ========== FLOATING CONTACT & THEME BUTTONS ========== */
.theme-float-btn {
    position: fixed;
    top: 30px;               /* Perfectly Aligned with Navbar top area */
    bottom: auto;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 1000;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
body.dark-mode .theme-float-btn {
    background: #1e293b;
    border-color: rgba(59, 130, 246, 0.25);
}
.theme-float-btn:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 18px 35px -8px rgba(0, 0, 0, 0.15);
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

/* Tooltip for theme button */
.theme-float-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--text-primary);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.1);
    pointer-events: none;
}
body.dark-mode .theme-float-tooltip {
    background: #1e293b;
    color: #f8fafc;
    border-color: rgba(255,255,255,0.1);
}
.theme-float-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: white;
}
body.dark-mode .theme-float-tooltip::after {
    border-left-color: #1e293b;
}
.theme-float-btn:hover .theme-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-6px);
}

.contact-float-btn {
    position: fixed;
    bottom: 100px;            /* Grouped close to WhatsApp */
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    text-decoration: none;
    z-index: 1000;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow:
        0 10px 25px -5px rgba(59, 130, 246, 0.5),
        0 0 0 0 rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: contact-ring 2.5s ease-out infinite;
}

/* Ripple ring animation */
@keyframes contact-ring {
    0%  { box-shadow: 0 10px 25px -5px rgba(59,130,246,0.5), 0 0 0 0 rgba(59,130,246,0.35); }
    70% { box-shadow: 0 10px 25px -5px rgba(59,130,246,0.5), 0 0 0 16px rgba(59,130,246,0); }
    100%{ box-shadow: 0 10px 25px -5px rgba(59,130,246,0.5), 0 0 0 0 rgba(59,130,246,0); }
}

.contact-float-btn:hover {
    transform: translateY(-6px) scale(1.1);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 18px 35px -8px rgba(59, 130, 246, 0.65);
    animation: none;
    color: white;
}

/* Paper plane icon wobble on hover */
.contact-float-btn i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-float-btn:hover i {
    transform: rotate(-35deg) translate(3px, -3px);
}

/* Tooltip */
.contact-float-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #1d4ed8;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(59,130,246,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(59,130,246,0.15);
    pointer-events: none;
}
.contact-float-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: white;
}
.contact-float-btn:hover .contact-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-6px);
}

/* ========== MONITOR FRAME (Mac Style) ========== */
.monitor-frame {
    background: #e2e8f0;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
}
body.dark-mode .monitor-frame {
    background: #1e293b;
    border-color: rgba(96, 165, 250, 0.2);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.7);
}

.monitor-top-bar {
    height: 32px;
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 7px;
    transition: var(--transition);
}
body.dark-mode .monitor-top-bar {
    background: linear-gradient(to bottom, #334155, #1e293b);
    border-bottom: 1px solid rgba(0,0,0,0.5);
}

.monitor-top-bar .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.monitor-top-bar .dot.mac-red { background: #ff5f56; border: 1px solid #e0443e; }
.monitor-top-bar .dot.mac-yellow { background: #ffbd2e; border: 1px solid #dea123; }
.monitor-top-bar .dot.mac-green { background: #27c93f; border: 1px solid #1aab29; }

.monitor-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Make image fit well and scroll on hover */
.monitor-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: transform 5s ease;
}

.monitor-frame:hover .monitor-screen img {
    transform: scale(1.05); /* Subtle zoom when hovered inside the monitor */
}

/* ========== ROCKET LAUNCH EFFECT (Centered & Blur) ========== */
#rocket-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    pointer-events: none;
    transition: all 0.5s ease;
    visibility: hidden;
}

#rocket-overlay.active {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(0, 0, 0, 0.6);
    visibility: visible;
    pointer-events: auto;
}

.rocket-container {
    position: fixed;
    bottom: -250px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    pointer-events: none;
    font-size: 10rem; /* Massive Rocket */
    display: none;
    filter: drop-shadow(0 0 30px var(--accent-blue));
}

.rocket-container.launch {
    display: block;
    animation: rocket-fly-centered 1.4s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}

@keyframes rocket-fly-centered {
    0% {
        bottom: -250px;
        transform: translateX(-50%) rotate(0deg) scale(0.6);
    }
    30% {
        bottom: 25%;
        transform: translateX(-50%) rotate(-5deg) scale(1.1);
    }
    100% {
        bottom: 180vh;
        transform: translateX(-50%) rotate(0deg) scale(0.9);
    }
}

.rocket-trail {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 300px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple), transparent);
    filter: blur(15px);
    opacity: 0.95;
    border-radius: 50%;
}

/* ========== STAR FIELD BACKGROUND (Dark Mode) ========== */
#star-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    display: none;
}

body.dark-mode #star-field {
    display: block;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: star-twinkle var(--duration) ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(59, 130, 246, 0.4);
}

@keyframes star-twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: var(--max-opacity); transform: scale(1.1); }
}

/* ========== SUN EFFECT (Light Mode) ========== */
#sun-container {
    position: fixed;
    top: -150px;
    right: -150px; /* Sun on right */
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.4) 0%, rgba(255, 126, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
    transition: opacity 0.8s ease;
    animation: sun-pulse 8s ease-in-out infinite;
}

body.dark-mode #sun-container {
    opacity: 0;
    visibility: hidden;
}

.sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #fff 0%, #ffcc00 60%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 100px #ffcc00, 0 0 200px rgba(255, 204, 0, 0.3);
    opacity: 0.8;
}

@keyframes sun-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 1; }
}

/* Ambient warm glows across the page for light mode */
body:not(.dark-mode)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

/* ========== MOON EFFECT (Dark Mode) ========== */
#moon-container {
    position: fixed;
    top: -50px;
    left: -50px; /* Stationary on the LEFT */
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 35% 35%, #f8fafc 0%, #e2e8f0 40%, #94a3b8 100%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 0 50px rgba(148, 163, 184, 0.2), inset -8px -8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    animation: moon-pulse 8s ease-in-out infinite;
}

body.dark-mode #moon-container {
    opacity: 0.8;
    visibility: visible;
}

/* Add a crescent shadow to make it a more premium moon */
#moon-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -25px;
    width: 185px;
    height: 185px;
    background: var(--bg-light); /* Matches background to clip the moon */
    border-radius: 50%;
    opacity: 0.95;
}

@keyframes moon-pulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* Ambient cool glows for dark mode sky */
body.dark-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
}

/* ========== BIRD EFFECT (Light Mode) ========== */
#bird-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.dark-mode #bird-container {
    opacity: 0;
    visibility: hidden;
}

.bird {
    position: absolute;
    width: 32px;
    height: 32px;
    animation: bird-fly var(--duration) linear infinite;
    transform: translate(-50px, 0); /* Start off-screen */
}

.bird-body {
    fill: none;
    stroke: var(--accent-blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: bird-wing var(--flap-speed) ease-in-out infinite;
    opacity: 0.4;
}

@keyframes bird-fly {
    0% { left: -50px; top: var(--top-start); }
    100% { left: 110vw; top: var(--top-end); }
}

@keyframes bird-wing {
    0%, 100% { d: path("M2,16 Q8,8 16,16 Q24,8 30,16"); }
    50% { d: path("M2,16 Q8,24 16,16 Q24,24 30,16"); }
}

/* ========== AI CHATBOT (Premium Glass) ========== */
.chatbot-trigger {
    position: fixed;
    bottom: 170px; /* Directly above Contact button */
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-trigger:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.chat-window {
    position: fixed;
    bottom: 175px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow-hover);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
}

.message.bot {
    align-self: flex-start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 18px;
    border-radius: 50px;
    color: var(--text-primary);
    outline: none;
    transition: 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.chat-send-btn:hover {
    background: var(--accent-purple);
    transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
        height: 70vh;
    }
    .chatbot-trigger {
        bottom: 140px;
        right: 20px;
    }
}