/*
Theme Name: Joint Stock Theme
Theme URI: https://jointstockcompany.org
Author: MD Shan E Islam
Author URI: https://jointstockcompany.org
Description: Premium Corporate Theme - Exclusive Professional with Video Background
Version: 1.0
License: GPL v2 or later
Text Domain: joint-stock-theme
*/


/*======================================================
RESET
======================================================*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.8;
    overflow-x: hidden;
}


/*======================================================
ROOT COLORS
======================================================*/

:root {
    --primary: #FFFFFF;
    --primary-light: #FFFFFF;
    --primary-dark: #FFFFFF;
    --white-gradient: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 40%, #FFFFFF 70%, #FFFFFF 100%);
    --white: #ffffff;
    --dark: #0a0a0a;
}


/*======================================================
VIDEO + OVERLAY
======================================================*/

.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 10% ডার্ক ওভারলে ===== */
.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.09);
    z-index: 1;
    pointer-events: none;
}


/*======================================================
সাউন্ড কন্ট্রোল বাটন
======================================================*/

.sound-btn {
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.35);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sound-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(8deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.sound-btn.unmuted {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.08);
}

.sound-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.sound-btn::after {
    content: '🔊 Sound Off';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.sound-btn:hover::after {
    opacity: 1;
    bottom: -40px;
}

.sound-btn.unmuted::after {
    content: '🔊 Sound On';
}


/*======================================================
SITE WRAPPER - NO OVERLAY
======================================================*/

.site-wrapper {
    position: relative;
    z-index: 5;
    min-height: 100vh;
}

.site-wrapper > * {
    position: relative;
    z-index: 1;
}


/*======================================================
হেডার - এক্সক্লুসিভ ডায়নামিক ফ্লোটিং
======================================================*/

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.hide-header {
    transform: translateX(-50%) translateY(-120px);
    opacity: 0;
    pointer-events: none;
}

.site-header.show-header {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px 10px 28px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.header-container::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: headerFloatGlow 12s infinite ease-in-out;
}

.header-container::after {
    content: '';
    position: absolute;
    bottom: -70%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: headerFloatGlow 15s infinite ease-in-out reverse;
}

@keyframes headerFloatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(40px, -30px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.3; }
    75% { transform: translate(-50px, -20px) scale(1.15); opacity: 0.7; }
}


/*======================================================
লোগো
======================================================*/

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2)); }
}

.logo-svg svg {
    width: 40px;
    height: 40px;
    display: block;
    transition: transform 0.5s ease;
}

.logo a:hover .logo-svg svg {
    transform: rotate(-8deg) scale(1.05);
}

.logo-brand {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-highlight {
    font-size: 20px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: whiteShimmer 4s ease-in-out infinite;
}

@keyframes whiteShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, #FFFFFF, #FFFFFF, transparent);
    opacity: 0.4;
    border-radius: 2px;
    animation: underlineFlow 3s infinite;
}

@keyframes underlineFlow {
    0%, 100% { opacity: 0.3; width: 80%; transform: translateX(0); }
    50% { opacity: 0.8; width: 110%; transform: translateX(5px); }
}


/*======================================================
মেনু
======================================================*/

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    display: inline-block;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #FFFFFF, #FFFFFF, #FFFFFF);
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.nav-menu a:hover {
    color: #FFFFFF;
    background: transparent;
}

.nav-menu a:hover::after {
    width: 70%;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.nav-menu a.active {
    color: #FFFFFF;
    background: transparent;
}

.nav-menu a.active::after {
    width: 70%;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.nav-menu a.contact-btn {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 40%, #FFFFFF 70%, #FFFFFF 100%);
    color: #0a0a0a !important;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.2);
    animation: contactBtnPulse 3s ease-in-out infinite;
}

@keyframes contactBtnPulse {
    0%, 100% { box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25); }
    50% { box-shadow: 0 12px 55px rgba(255, 255, 255, 0.4); }
}

.nav-menu a.contact-btn::after {
    display: none;
}

.nav-menu a.contact-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 15px 60px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF);
    color: #0a0a0a !important;
}


/*======================================================
MAIN
======================================================*/

.site-main {
    padding-top: 0 !important;
    min-height: 100vh;
}

.single .site-main,
.page .site-main,
.blog .site-main,
.archive .site-main,
.search .site-main {
    padding-top: 70px !important;
}


/*======================================================
POST LAYOUT - LEFT SIDEBAR
======================================================*/

.fc-post-layout {
    display: flex;
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start;
}

.fc-post-sidebar {
    flex: 0 0 360px;
    min-width: 360px;
    max-width: 360px;
    position: sticky;
    top: 80px;
    padding: 0;
    margin: 0;
}

.fc-sidebar-slider {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.fc-sidebar-slider-title {
    text-align: center;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    line-height: 1;
}

.fc-sidebar-slider-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF !important;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.fc-sidebar-slider-title h3::before,
.fc-sidebar-slider-title h3::after {
    content: '✦';
    font-size: 11px;
    color: #FFFFFF;
    display: inline-block;
    margin: 0 5px;
}

.fc-sidebar-slideshow {
    position: relative;
    width: 100%;
    border-radius: 0 !important;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
}

.fc-sidebar-slide {
    display: none;
    position: relative;
}

.fc-sidebar-slide img {
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    background: transparent !important;
}

.fc-sidebar-slide-info {
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 2px 10px !important;
    text-align: center;
    border-bottom: 2px solid #FFFFFF;
}

.fc-sidebar-slide-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF !important;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 2px 0;
}

.fc-sidebar-prev,
.fc-sidebar-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 10px 14px;
    color: #FFFFFF !important;
    font-weight: bold;
    font-size: 16px;
    transition: 0.4s;
    border-radius: 0 4px 4px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-decoration: none;
    z-index: 3;
    border: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fc-sidebar-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.fc-sidebar-prev:hover,
.fc-sidebar-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

.fc-sidebar-dots {
    text-align: center;
    margin-top: 4px;
}

.fc-sidebar-dot {
    cursor: pointer;
    height: 6px;
    width: 6px;
    margin: 0 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.fc-sidebar-dot.active-dot,
.fc-sidebar-dot:hover {
    background-color: #FFFFFF;
    transform: scale(1.3);
}

.fade-sidebar {
    animation-name: fadeSidebar;
    animation-duration: 0.5s;
}

@keyframes fadeSidebar {
    from { opacity: 0.3; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.fc-post-main {
    flex: 1;
    min-width: 0;
    padding: 0 195px 0 35px !important;
}


/*======================================================
PAGE TITLE - HIDE FOR PAGES, SHOW FOR POSTS
======================================================*/

.page .page-title,
.page .entry-title,
.page .post-title {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    clip: rect(0,0,0,0) !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.single .page-title,
.single .entry-title,
.single .post-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    position: relative !important;
    clip: auto !important;
    pointer-events: auto !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 30px rgba(0, 0, 0, 0.6), 0 8px 60px rgba(0, 0, 0, 0.3);
    line-height: 1.15;
    text-align: left !important;
}

.fc-post-main .entry-content {
    color: #FFFFFF !important;
}

.fc-post-main .entry-content p {
    font-size: 17px;
    color: #FFFFFF !important;
    line-height: 1.9;
    margin-bottom: 18px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.5);
}

.fc-post-main .entry-content h2,
.fc-post-main .entry-content h3,
.fc-post-main .entry-content h4 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 25px rgba(0, 0, 0, 0.5);
}

.fc-post-main .entry-content ul,
.fc-post-main .entry-content ol {
    color: #FFFFFF !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.4);
}

.fc-post-main .entry-content a {
    color: #FFFFFF !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9), 0 3px 20px rgba(0, 0, 0, 0.5);
}

.fc-post-main .entry-content a:hover {
    border-bottom: 1px solid #FFFFFF;
}


/*======================================================
FOOTER - NO OVERLAY
======================================================*/

.rjsc-footer {
    background: transparent !important;
    color: #FFFFFF;
    padding: 50px 30px 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1;
}

.rjsc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.rjsc-footer-col h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rjsc-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, transparent);
    border-radius: 2px;
}

.rjsc-footer-col p {
    color: #FFFFFF !important;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 5px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.4);
}

.rjsc-footer-col p strong {
    color: #FFFFFF;
    font-weight: 800;
}

.rjsc-footer-col a {
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.4);
}

.rjsc-footer-col a:hover {
    color: #FFFFFF !important;
    padding-left: 8px;
}

.rjsc-footer-col .rjsc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.rjsc-footer-col .rjsc-contact-item:hover {
    transform: translateX(4px);
}

.rjsc-footer-col .rjsc-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rjsc-footer-col .rjsc-contact-item:hover .rjsc-contact-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    transform: rotateY(180deg);
}

.rjsc-footer-col .rjsc-contact-item span {
    color: #FFFFFF !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.4);
}

.rjsc-footer-col .rjsc-contact-item a {
    display: inline;
    padding-left: 0;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 15px;
}

.rjsc-footer-col .rjsc-contact-item a:hover {
    padding-left: 0;
    color: #FFFFFF !important;
}

.rjsc-footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 3px 20px rgba(0, 0, 0, 0.4);
}

.rjsc-footer-bottom strong {
    color: #FFFFFF !important;
    font-weight: 700;
}

.rjsc-footer-bottom a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rjsc-footer-bottom a:hover {
    color: #FFFFFF !important;
}


/*======================================================
BACK TO TOP
======================================================*/

.rjsc-back-to-top {
    position: fixed;
    bottom: 215px;
    right: 30px;
    z-index: 9998;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.rjsc-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.rjsc-back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}


/*======================================================
WHATSAPP + WECHAT - RIGHT SIDE
======================================================*/

.rjsc-whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 9999;
    width: 68px;
    height: 68px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
    transition: all 0.4s ease;
    animation: pulseGreen 2.5s infinite;
    text-decoration: none;
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 15px 60px rgba(37, 211, 102, 0.5); }
}

.rjsc-whatsapp-float:hover {
    transform: scale(1.1) rotate(4deg);
    box-shadow: 0 20px 70px rgba(37, 211, 102, 0.4);
}

.rjsc-wechat-float {
    position: fixed;
    bottom: 130px;
    right: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #07C160, #05944A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(7, 193, 96, 0.3);
    transition: all 0.4s ease;
    animation: pulseWeChat 2.5s infinite;
    cursor: pointer;
}

@keyframes pulseWeChat {
    0%, 100% { box-shadow: 0 10px 40px rgba(7, 193, 96, 0.3); }
    50% { box-shadow: 0 15px 60px rgba(7, 193, 96, 0.5); }
}

.rjsc-wechat-float:hover {
    transform: scale(1.1) rotate(-4deg);
}

.rjsc-wechat-label {
    position: fixed;
    bottom: 148px;
    right: 94px;
    z-index: 9999;
    background: rgba(7, 193, 96, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(7, 193, 96, 0.2);
    animation: labelPulse 3s infinite;
    pointer-events: none;
}

@keyframes labelPulse {
    0%, 100% { opacity: 0.7; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(-5px); }
}


/*======================================================
WECHAT MODAL
======================================================*/

.rjsc-wechat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.rjsc-wechat-modal.active {
    display: flex;
}

.rjsc-wechat-modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 30px 25px 25px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.4s ease;
    position: relative;
}

@keyframes modalPop {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.rjsc-wechat-modal-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.2);
    background: none;
    border: none;
    transition: all 0.3s ease;
}

.rjsc-wechat-modal-close:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
}

.rjsc-wechat-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: #07C160;
    margin: 0 0 16px 0;
}

.rjsc-wechat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    text-align: left;
}

.rjsc-wechat-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #07C160, #05944A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.rjsc-wechat-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 2px 0;
}

.rjsc-wechat-info p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    line-height: 1.4;
}

.rjsc-wechat-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
    border-radius: 14px;
    border: 2px solid rgba(7, 193, 96, 0.05);
    overflow: hidden;
    background: #FFFFFF;
}

.rjsc-wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rjsc-wechat-scan-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
}

.rjsc-wechat-id {
    font-size: 14px;
    font-weight: 700;
    color: #07C160;
    background: rgba(7, 193, 96, 0.05);
    padding: 5px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(7, 193, 96, 0.04);
}


/*======================================================
🥛 সব লেখা দুধের মতো সাদা + কালো শ্যাডো বর্ডার
======================================================*/

/* ===== সব এলাকায় সাদা টেক্সট + কালো শ্যাডো ===== */
body,
.site-wrapper,
.site-main,
.entry-content,
.page-content,
.fc-post-main,
.fc-post-main * {
    color: #FFFFFF !important;
}

p,
.entry-content p,
.page-content p,
.fc-post-main p,
.rjsc-footer p,
.rjsc-footer-col p,
.post-item p,
.service-item p {
    color: #FFFFFF !important;
    opacity: 1 !important;
}

h1, h2, h3, h4, h5, h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.fc-post-main h1,
.fc-post-main h2,
.fc-post-main h3,
.fc-post-main h4,
.fc-post-main h5,
.fc-post-main h6 {
    color: #FFFFFF !important;
}

a,
.entry-content a,
.page-content a,
.fc-post-main a,
.rjsc-footer a,
.rjsc-footer-col a {
    color: #FFFFFF !important;
}

a:hover,
.entry-content a:hover,
.page-content a:hover,
.fc-post-main a:hover,
.rjsc-footer a:hover,
.rjsc-footer-col a:hover {
    color: #FFFFFF !important;
}

ul, ol,
.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol,
.fc-post-main ul,
.fc-post-main ol {
    color: #FFFFFF !important;
}

ul li, ol li,
.entry-content ul li,
.entry-content ol li,
.page-content ul li,
.page-content ol li,
.fc-post-main ul li,
.fc-post-main ol li {
    color: #FFFFFF !important;
}

span,
div,
section,
article,
aside,
header,
footer,
main {
    color: #FFFFFF !important;
}

.rjsc-footer,
.rjsc-footer *,
.rjsc-footer-col,
.rjsc-footer-col *,
.rjsc-footer-bottom,
.rjsc-footer-bottom * {
    color: #FFFFFF !important;
}

.rjsc-footer a,
.rjsc-footer-col a {
    color: #FFFFFF !important;
}

.rjsc-footer a:hover,
.rjsc-footer-col a:hover {
    color: #FFFFFF !important;
}

.post-item,
.post-item *,
.service-item,
.service-item * {
    color: #FFFFFF !important;
}

.post-item a,
.service-item a {
    color: #FFFFFF !important;
}

.post-item a:hover,
.service-item a:hover {
    color: #FFFFFF !important;
}

.nav-menu a {
    color: #FFFFFF !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFFFFF !important;
}

.fc-sidebar-slide-info h4,
.fc-sidebar-slider-title h3 {
    color: #FFFFFF !important;
}


/*======================================================
🖤 কালো শ্যাডো বর্ডার (Text Shadow)
======================================================*/

/* ===== বেস শ্যাডো ===== */
body,
.site-wrapper,
.site-main,
.entry-content,
.page-content,
.fc-post-main,
p,
h1, h2, h3, h4, h5, h6,
a,
span,
div,
li,
.rjsc-footer,
.rjsc-footer *,
.post-item,
.service-item,
.nav-menu a {
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.9),
        0 2px 10px rgba(0, 0, 0, 0.7),
        0 4px 25px rgba(0, 0, 0, 0.4) !important;
}

/* ===== হেডিং এক্সট্রা শ্যাডো ===== */
h1, h2, h3, h4,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.fc-post-main h1,
.fc-post-main h2,
.fc-post-main h3,
.fc-post-main h4,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.95),
        0 4px 25px rgba(0, 0, 0, 0.7),
        0 8px 50px rgba(0, 0, 0, 0.3) !important;
}

/* ===== পোস্ট টাইটেল এক্সট্রা শ্যাডো ===== */
.single .page-title,
.single .entry-title,
.single .post-title {
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.95),
        0 4px 30px rgba(0, 0, 0, 0.7),
        0 8px 60px rgba(0, 0, 0, 0.3) !important;
}

/* ===== লিংক শ্যাডো ===== */
a,
.entry-content a,
.page-content a,
.fc-post-main a {
    text-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.9),
        0 2px 12px rgba(0, 0, 0, 0.6) !important;
}

a:hover,
.entry-content a:hover,
.page-content a:hover,
.fc-post-main a:hover {
    text-shadow: 
        0 1px 6px rgba(0, 0, 0, 0.95),
        0 3px 20px rgba(0, 0, 0, 0.7) !important;
}


/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:1024px) {
    .site-header { padding: 0 20px; }
    .header-container { padding: 8px 16px 8px 20px; border-radius: 50px; }
    .logo-svg svg { width: 34px; height: 34px; }
    .logo-text { font-size: 17px; }
    .logo-highlight { font-size: 17px; }
    .nav-menu a { font-size: 13px; padding: 8px 16px; }
    .nav-menu a.contact-btn { padding: 8px 20px; font-size: 13px; }
    .rjsc-footer-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .fc-post-layout { flex-direction: column; padding: 0 20px; }
    .fc-post-sidebar { flex: 1 1 auto; min-width: 100%; max-width: 100%; position: static; padding: 0; margin: 0; }
    .fc-sidebar-slide img { height: 260px !important; min-height: 260px !important; max-height: 260px !important; }
    .fc-post-main { padding: 0 75px 0 20px !important; }
    .single .page-title { font-size: 34px; }
}

@media(max-width:768px) {
    .site-header { top: 12px; padding: 0 15px; }
    .header-container { border-radius: 40px; padding: 6px 12px 6px 16px; flex-wrap: wrap; gap: 6px; }
    .logo-svg svg { width: 28px; height: 28px; }
    .logo-text { font-size: 14px; }
    .logo-highlight { font-size: 14px; }
    .logo a { gap: 8px; }
    .nav-menu { flex-wrap: wrap; gap: 3px; }
    .nav-menu a { font-size: 11px; padding: 5px 12px; letter-spacing: 0.5px; }
    .nav-menu a::after { bottom: 2px; height: 2px; }
    .nav-menu a.contact-btn { padding: 5px 16px; font-size: 11px; }
    .single .site-main { padding-top: 60px !important; }
    .single .page-title { font-size: 30px; }
    .fc-post-layout { padding: 0 15px; }
    .fc-sidebar-slide img { height: 220px !important; min-height: 220px !important; max-height: 220px !important; }
    .fc-post-main { padding: 0 45px 0 15px !important; }
    .rjsc-footer { padding: 40px 20px 20px; }
    .rjsc-footer-container { grid-template-columns: 1fr 1fr; gap: 25px; }
    .rjsc-whatsapp-float { width: 56px; height: 56px; bottom: 30px; right: 20px; }
    .rjsc-wechat-float { width: 48px; height: 48px; bottom: 110px; right: 20px; }
    .rjsc-wechat-label { bottom: 126px; right: 78px; font-size: 10px; padding: 4px 12px; }
    
    /* মোবাইলে শ্যাডো কম */
    body,
    .site-wrapper,
    p,
    h1, h2, h3, h4, h5, h6,
    a,
    span,
    div,
    li {
        text-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.9),
            0 2px 8px rgba(0, 0, 0, 0.6) !important;
    }
}

@media(max-width:480px) {
    .site-header { top: 8px; padding: 0 10px; }
    .header-container { border-radius: 30px; padding: 4px 8px 4px 12px; }
    .logo-svg svg { width: 22px; height: 22px; }
    .logo-text { font-size: 11px; }
    .logo-highlight { font-size: 11px; }
    .logo a { gap: 4px; }
    .nav-menu a { font-size: 9px; padding: 3px 8px; letter-spacing: 0.3px; }
    .nav-menu a.contact-btn { padding: 3px 12px; font-size: 9px; }
    .single .site-main { padding-top: 50px !important; }
    .single .page-title { font-size: 24px; }
    .fc-post-main { padding: 0 30px 0 12px !important; }
    .fc-sidebar-slide img { height: 180px !important; min-height: 180px !important; max-height: 180px !important; }
    .rjsc-footer { padding: 30px 15px 15px; }
    .rjsc-footer-container { grid-template-columns: 1fr; gap: 20px; }
    .rjsc-whatsapp-float { width: 50px; height: 50px; bottom: 25px; right: 15px; }
    .rjsc-wechat-float { width: 42px; height: 42px; bottom: 95px; right: 15px; }
    .rjsc-wechat-label { bottom: 110px; right: 68px; font-size: 9px; padding: 3px 10px; }
}