/* =========================================================
   1. PREMIUM FLOATING SOCIAL BAR (Right Side)
   ========================================================= */
.float-social {
    position: fixed;
    top: 50%;
    right: 0; /* Right side positioning */
    left: auto;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85); /* Glassmorphism background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 6px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-right: none;
}

.float-social a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Hover Effect: Right side se lift hokar highlight ho */
.float-social a:hover {
    background: #007bff; /* Primary Brand Accent Color */
    color: #ffffff !important;
    transform: translateX(-6px); /* Left ki taraf smooth glide */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.35);
}

/* Icon Alignment (if font-awesome or SVG is used inside 'a') */
.float-social a i,
.float-social a svg {
    font-size: 16px;
    margin-right: 8px;
}

/* =========================================================
   2. PREMIUM & CLEAN TOP BAR
   ========================================================= */
/* =========================================================
   1. PREMIUM FLOATING SOCIAL BAR (Right Side)
   ========================================================= */
.float-social {
    position: fixed;
    top: 50%;
    right: 0; /* Right side positioning */
    left: auto;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85); /* Glassmorphism background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 6px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-right: none;
}

.float-social a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Hover Effect: Right side se lift hokar highlight ho */
.float-social a:hover {
    background: #007bff; /* Primary Brand Accent Color */
    color: #ffffff !important;
    transform: translateX(-6px); /* Left ki taraf smooth glide */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.35);
}

/* Icon Alignment (if font-awesome or SVG is used inside 'a') */
.float-social a i,
.float-social a svg {
    font-size: 16px;
    margin-right: 8px;
}

/* =========================================================
   2. PREMIUM & CLEAN TOP BAR
   ========================================================= */
.top_bar {
    background: #0f172a; /* Deep Charcoal / Dark Navy Theme */
    color: #cbd5e1;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top_bar a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.top_bar a:hover {
    color: #38bdf8; /* Soft Neon Accent */
}

.top_bar ul,
.top_bar .left-content,
.top_bar .right-content {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
