/* =========================================
   FIXCORP GLOBAL STYLES (FULL UPDATED)
   ========================================= */
:root {
    --bg-color: #050505;
    --card-bg: #111;
    --input-bg: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --border-color: #222;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
    --accent: #ff0033; 
    --accent-hover: #cc0029;
    --accent-glow: rgba(255, 0, 51, 0.4);
    --nav-height: 90px;
}

body.light-theme {
    --bg-color: #f4f4f4;
    --card-bg: #ffffff;
    --input-bg: #f0f0f0;
    --text-color: #1a1a1a;
    --text-muted: #555;
    --border-color: #ddd;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --accent-glow: rgba(255, 0, 51, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; transition: background 0.3s, color 0.3s; }

/* =========================================
   SEASONAL EFFECTS (REALISTIC)
   ========================================= */

/* --- WINTER: SNOW & SMOKE --- */
.snowflake {
    position: fixed; top: -10%; z-index: 999; user-select: none; pointer-events: none;
    color: #fff; font-family: Arial, sans-serif; text-shadow: 0 0 5px rgba(255,255,255,0.8);
    animation: snowfall linear infinite;
}
@keyframes snowfall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0.2; }
}

#smoke-overlay { 
    position: fixed; bottom: 0; left: 0; width: 100%; height: 300px; 
    background: linear-gradient(to top, rgba(255,255,255,0.1), transparent); 
    z-index: 998; pointer-events: none; opacity: 0; transition: 2s;
}
.active-smoke { opacity: 1 !important; filter: blur(50px); animation: fogMove 12s infinite alternate ease-in-out; }
@keyframes fogMove { from { transform: translateX(-3%); } to { transform: translateX(3%); } }

/* --- RAIN: DROPS & SPLASH --- */
.rain-drop {
    position: fixed; top: -10px; width: 1px; height: 25px; 
    background: rgba(255,255,255,0.2); z-index: 999;
    animation: rainFall linear forwards;
}
@keyframes rainFall { to { transform: translateY(105vh); } }

.splash {
    position: fixed; width: 6px; height: 6px; background: rgba(255,255,255,0.15);
    border-radius: 50%; z-index: 10000; filter: blur(1px); animation: splashAnim 1.5s forwards ease-out;
    pointer-events: none;
}
@keyframes splashAnim { 
    0% { transform: scale(0); opacity: 1; border: 1px solid rgba(255,255,255,0.5); } 
    100% { transform: scale(15); opacity: 0; }
}

/* --- SUMMER: CINEMATIC REFLECTION, LEAVES & WIND --- */
#sun-ray {
    position: fixed; top: 0; right: 0; width: 100%; height: 100%;
    /* Diagonal Reflection from Top-Right to Bottom-Left */
    background: linear-gradient(225deg, rgba(255, 170, 0, 0.15) 0%, rgba(255, 200, 0, 0.05) 35%, transparent 70%);
    z-index: 5; pointer-events: none; opacity: 0; transition: 4s ease-in-out;
}
.active-sun { opacity: 1 !important; animation: sunPulse 10s infinite alternate ease-in-out; }

@keyframes sunPulse { from { opacity: 0.5; } to { opacity: 1; } }

/* Dry Leaves Animation */
.dry-leaf {
    position: fixed; z-index: 999; pointer-events: none;
    font-size: 24px; filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
    animation: leafFall linear forwards;
}
@keyframes leafFall {
    0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(110vh) translateX(-250px) rotate(1080deg); opacity: 0; }
}

/* Wind Streaks Animation */
.wind-line {
    position: fixed; height: 1px; width: 180px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
    z-index: 998; pointer-events: none;
    animation: windSweep linear forwards;
}
@keyframes windSweep {
    from { transform: translateX(-20vw) translateY(0); opacity: 0; }
    50% { opacity: 1; }
    to { transform: translateX(120vw) translateY(80px); opacity: 0; }
}

/* =========================================
   GLOBAL COMPONENTS
   ========================================= */

/* Overlay Effect for Premium Mobile Menu */
body.menu-open { overflow: hidden; }
body.menu-open::after {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 1000; animation: fadeIn 0.3s forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; font-weight: 700; }
.section-title span { color: var(--accent); text-shadow: 0 0 15px var(--accent-glow); }

.btn { 
    background: var(--accent); color: white; padding: 12px 30px; border-radius: 50px; 
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; 
    text-decoration: none; display: inline-flex; align-items: center; gap: 10px; font-size: 0.9rem; 
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(255, 0, 51, 0.2); 
}
.btn:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255, 0, 51, 0.5); }

.theme-btn { 
    background: transparent; border: 1px solid var(--border-color); color: var(--text-color); 
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    cursor: pointer; font-size: 1.2rem; transition: 0.3s; 
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); transform: rotate(15deg); }

/* PRELOADER */
.loader-wrapper { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; 
    background: var(--bg-color); display: flex !important; justify-content: center !important; 
    align-items: center !important; z-index: 100000; transition: opacity 0.5s ease-out; 
}
.loader { 
    width: 55px; height: 55px; border: 5px solid #333; border-top: 5px solid var(--accent); 
    border-radius: 50%; animation: spin 1s linear infinite; box-shadow: 0 0 15px var(--accent-glow); 
    margin: auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* HEADER */
header { 
    background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); 
    position: sticky; top: 0; z-index: 1001; border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    height: var(--nav-height); display: flex; align-items: center; box-shadow: var(--shadow); transition: background 0.3s; 
}
body.light-theme header { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #ddd; }
.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper img { height: 65px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: transform 0.3s; }
.logo-wrapper:hover img { transform: scale(1.05); }

.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links li a { 
    color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; font-weight: 500; 
    letter-spacing: 1px; text-decoration: none; position: relative; padding: 5px 0; transition: 0.3s; 
}
.nav-links li a:hover { color: var(--text-color); }
.nav-links li a::after { 
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; 
    background-color: var(--accent); transition: width 0.3s ease; 
}
.nav-links li a:hover::after { width: 100%; }

/* HERO */
.hero { 
    min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; 
    text-align: center; background: radial-gradient(circle at center, var(--card-bg) 0%, var(--bg-color) 100%); 
    padding: 100px 20px 40px; transition: background 0.3s; 
}
.hero h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--text-muted); max-width: 600px; margin-bottom: 40px; font-size: 1.2rem; }

/* =========================================
   CALCULATOR STYLING (Plus/Minus & Switch)
   ========================================= */
.calculator-box { 
    background: var(--card-bg); padding: 40px; border-radius: 20px; 
    border: 1px solid var(--border-color); width: 100%; max-width: 550px; margin: 0 auto; 
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.05); overflow: visible !important; position: relative; z-index: 10;
}
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; position: relative; gap: 20px; }
.calc-row label { font-size: 1.1rem; color: var(--text-muted); font-weight: 500; white-space: nowrap; }

.page-ctrl-wrapper {
    display: flex; align-items: center; background: var(--input-bg); border: 1px solid var(--border-color);
    border-radius: 8px; overflow: hidden; width: 160px; height: 48px;
}
.page-btn {
    background: #1a1a1a; border: none; color: white; width: 50px; height: 100%;
    cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.page-btn:hover { background: var(--accent); }
.page-btn:active { transform: scale(0.9); }
#pageCount {
    width: 60px; text-align: center; border: none !important; background: transparent !important;
    font-size: 1.2rem; font-weight: 700; color: white !important; pointer-events: none;
}

.switch { position: relative; display: inline-block; width: 55px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider.round {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333; transition: .4s; border-radius: 34px;
}
.slider.round:before {
    position: absolute; content: ""; height: 18px; width: 18px;
    left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider.round { background-color: var(--accent); }
input:checked + .slider.round:before { transform: translateX(27px); }

.custom-select-wrapper { position: relative; user-select: none; width: 220px; z-index: 20; }
.custom-select-trigger {
    position: relative; display: flex; justify-content: space-between; align-items: center;
    padding: 12px 15px; font-size: 1rem; font-weight: 400; color: var(--text-color);
    background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 8px; 
    cursor: pointer; transition: all 0.3s ease; width: 100%; height: 50px; outline: none;
}
.custom-select-trigger::after { content: '\25BC'; font-size: 0.8rem; transition: transform 0.3s; color: var(--accent); }
.custom-select-wrapper.open .custom-select-trigger::after { transform: rotate(180deg); }
.custom-options {
    position: absolute; display: block; top: 110%; left: 0; right: 0;
    background: #000; border: 1px solid var(--accent); border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8); z-index: 1000; opacity: 0; visibility: hidden;
    transform: translateY(-10px); transition: 0.3s;
}
.custom-select-wrapper.open .custom-options { opacity: 1; visibility: visible; transform: translateY(0); }
.custom-option { padding: 12px 15px; color: #bbb; cursor: pointer; transition: 0.2s; border-bottom: 1px solid #222; }
.custom-option:last-child { border-bottom: none; }
.custom-option:hover, .custom-option.selected { color: white; background-color: var(--accent); }

.divider { height: 1px; background: var(--border-color); margin: 30px 0; width: 100%; }
.calc-result { text-align: center; }
.result-item .label { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.calc-result h2 { font-size: 3.5rem; color: var(--accent); font-weight: 800; text-shadow: 0 0 20px var(--accent-glow); line-height: 1; margin: 10px 0; }
.disclaimer { font-size: 0.85rem; color: #666; margin-top: 10px; font-style: italic; }

/* =========================================
   REMAINTING SECTIONS (India, Grid, Founders, Process, etc.)
   ========================================= */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding-bottom: 80px; }
.card { 
    background: var(--card-bg); padding: 40px; border-radius: 16px; border: 1px solid var(--border-color); 
    transition: 0.4s; overflow: hidden; position: relative; box-shadow: var(--shadow); 
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); }
.card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; }
.card h3 { margin-bottom: 15px; color: var(--text-color); }
.card p { color: var(--text-muted); }

.india-section { padding: 20px 0; background: var(--input-bg); border-bottom: 1px solid var(--border-color); text-align: center; }
.india-badge { 
    display: inline-flex; align-items: center; gap: 15px; border: 1px solid var(--border-color); 
    padding: 10px 30px; border-radius: 50px; background: var(--card-bg); box-shadow: var(--shadow); 
}
.india-badge img { height: 25px; width: auto; border-radius: 4px; }
.india-badge span { font-weight: 600; color: var(--text-color); letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; }

.founders-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.founder-card { text-align: center; padding: 40px 20px; }
.founder-img { 
    width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; 
    border: 3px solid var(--accent); padding: 3px; background: var(--bg-color); 
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.founder-role { color: var(--accent); font-size: 0.9rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: 5px; display: block; }

.process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
.step-card { 
    background: var(--card-bg); padding: 30px; border-radius: 12px; border: 1px solid var(--border-color); 
    width: 23%; position: relative; transition: 0.3s; overflow: hidden; box-shadow: var(--shadow); 
}
.step-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.step-card .step-num { font-size: 4rem; font-weight: 800; color: var(--accent); opacity: 0.1; position: absolute; top: -10px; right: 10px; }
.step-card h3 { margin-top: 10px; margin-bottom: 10px; color: var(--text-color); }
.step-card p { color: var(--text-muted); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.why-card { 
    background: linear-gradient(145deg, var(--card-bg), var(--bg-color)); border: 1px solid var(--border-color); 
    border-radius: 20px; padding: 50px 40px; display: flex; align-items: flex-start; gap: 25px; 
    transition: all 0.4s ease; position: relative; overflow: hidden; 
}
.why-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 10px 40px rgba(255, 0, 51, 0.1); }
.why-card .icon-box { 
    flex-shrink: 0; width: 70px; height: 70px; background: rgba(255, 0, 51, 0.1); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 0, 51, 0.2); transition: 0.4s; 
}
.why-card:hover .icon-box { background: var(--accent); color: white; transform: scale(1.1) rotate(10deg); box-shadow: 0 0 20px var(--accent-glow); }
.why-card .icon-box i { font-size: 1.8rem; color: var(--accent); margin: 0; transition: 0.4s; }
.why-card:hover .icon-box i { color: white; }
.card-content { text-align: left; }
.why-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: var(--text-color); }
.why-card p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

.quote-box { 
    max-width: 800px; margin: 0 auto; background: var(--card-bg); padding: 50px; border-radius: 15px; 
    border: 1px solid var(--border-color); box-shadow: var(--shadow); overflow: visible !important; 
}
.form-row { display: flex; gap: 30px; margin-bottom: 20px; }
.form-group { width: 100%; display: flex; flex-direction: column; }
.form-group label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; font-weight: 500; }
.quote-box input, .quote-box select, .quote-box textarea { 
    background: var(--input-bg) !important; border: 1px solid var(--border-color) !important; color: var(--text-color) !important; 
    padding: 15px; border-radius: 8px; font-size: 1rem; width: 100%; outline: none; transition: 0.3s; 
}
.quote-box input:focus, .quote-box select:focus, .quote-box textarea:focus { border-color: var(--accent) !important; box-shadow: 0 0 10px var(--accent-glow); }
.quote-box option { background: var(--bg-color); color: var(--text-color); }
.file-upload-wrapper { display: flex; align-items: center; gap: 15px; background: var(--input-bg); border: 1px dashed var(--border-color); padding: 10px; border-radius: 8px; }
#custom-button { padding: 10px 20px; color: var(--text-color); background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 5px; cursor: pointer; transition: 0.3s; }
#custom-button:hover { background: var(--accent); border-color: var(--accent); color: white; }
#custom-text { color: var(--text-muted); font-size: 0.9rem; }
.success-msg { background: rgba(0, 255, 0, 0.1); color: #4caf50; padding: 15px; border-radius: 8px; text-align: center; margin-bottom: 20px; border: 1px solid #4caf50; }
.error-msg { color: #ff3b30; text-align: center; margin-bottom: 20px; }

/* FAB */
.fab-container { position: fixed !important; bottom: 30px !important; right: 30px !important; z-index: 99999; display: flex; flex-direction: column; align-items: center; }
.fab-toggle { width: 60px; height: 60px; background: var(--accent); border-radius: 50%; color: white; border: none; font-size: 1.8rem; cursor: pointer; box-shadow: 0 5px 15px rgba(255, 0, 51, 0.5); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; position: relative; z-index: 2; }
.fab-toggle:hover { transform: scale(1.1); }
.fab-toggle .close-icon { display: none; }
.fab-container.active .fab-toggle .open-icon { display: none; }
.fab-container.active .fab-toggle .close-icon { display: block; }
.fab-options { display: flex; flex-direction: column-reverse; gap: 15px; margin-bottom: 15px; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.fab-container.active .fab-options { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-btn { width: 50px; height: 50px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.5); transition: 0.3s; }
.fab-btn:hover { transform: scale(1.1); }
.whatsapp { background: #25D366; }
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.facebook { background: #1877F2; }

/* FOOTER */
footer { background: #020202; padding: 60px 0; text-align: center; border-top: 1px solid #111; margin-top: 50px; }
.hidden { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.show { opacity: 1; transform: translateY(0); }

/* =========================================
   MOBILE RESPONSIVE & PREMIUM SIDE DRAWER
   ========================================= */
.menu-toggle { display: none; color: var(--text-color); font-size: 1.6rem; cursor: pointer; }
.mobile-cta { display: none; }

@media (max-width: 768px) {
    header { padding: 0 15px; height: 80px; }
    .menu-toggle { display: flex; z-index: 1002; width: 45px; height: 45px; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s; }
    .menu-toggle:active { background: rgba(255,255,255,0.1); }
    .desktop-cta { display: none; }

    /* Side Drawer Navigation (Not Full Screen) */
    .nav-menu { 
        position: fixed; top: 0; right: -110%; width: 280px; height: 100vh; height: 100dvh; 
        background: #0a0a0a; border-left: 1px solid #222; display: flex; flex-direction: column; 
        justify-content: flex-start; padding-top: 100px; box-shadow: -10px 0 30px rgba(0,0,0,0.8); 
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); z-index: 1001; 
    }
    .nav-menu.active { right: 0; }

    .nav-links { flex-direction: column; text-align: left; gap: 15px; width: 100%; padding: 0 30px; }
    
    /* Staggered Entrance Animation */
    .nav-links li {
        opacity: 0; transform: translateX(30px);
        transition: 0.4s ease forwards; border-bottom: 1px solid #151515; padding-bottom: 10px; margin-bottom: 5px;
    }
    .nav-menu.active .nav-links li { opacity: 1; transform: translateX(0); }
    .nav-menu.active .nav-links li:nth-child(1) { transition-delay: 0.2s; }
    .nav-menu.active .nav-links li:nth-child(2) { transition-delay: 0.3s; }
    .nav-menu.active .nav-links li:nth-child(3) { transition-delay: 0.4s; }
    .nav-menu.active .nav-links li:nth-child(4) { transition-delay: 0.5s; }
    .nav-menu.active .nav-links li:nth-child(5) { transition-delay: 0.6s; }

    .nav-links li a { font-size: 1.1rem; font-weight: 600; color: #ffffff !important; text-transform: uppercase; letter-spacing: 1px; }
    
    .mobile-cta { display: flex; width: 100%; justify-content: center; margin-top: 20px; padding: 0 30px; }
    .mobile-cta a { 
        width: 100%; text-align: center; background: #ff0033; background: linear-gradient(135deg, #ff0033 0%, #d9002b 100%); 
        color: white !important; padding: 14px; border-radius: 8px; font-size: 1rem; font-weight: 700; 
        text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; box-shadow: 0 8px 25px rgba(255, 0, 51, 0.5); 
    }
    
    .theme-btn { position: absolute; bottom: 40px; left: 30px; border: 1px solid #333; }

    /* Layout Fixes for Mobile */
    .hero h1 { font-size: 2.2rem; }
    .step-card { width: 100%; margin-bottom: 20px; }
    .grid, .founders-grid, .why-grid { grid-template-columns: 1fr; }
    
    /* Calculator Mobile Fix (Centered & Refined) */
    .calculator-box { padding: 25px 15px; width: 95%; overflow: visible; }
    .calc-row { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
    .page-ctrl-wrapper { margin: 0 auto !important; width: 180px !important; }
    .custom-select-wrapper { width: 100% !important; }
    .calc-row label { white-space: normal; }
    .quote-box { padding: 30px 20px; }
}

/* =========================================
   PART 2: ADMIN PANEL ISOLATED STYLES
   ========================================= */
.admin-body { background-color: #000; font-family: 'Poppins', sans-serif; color: #fff; min-height: 100vh; }
.admin-wrapper { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
.admin-nav-header { background: #111; padding: 20px 30px; border-radius: 12px; border: 1px solid #333; display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-logo { font-size: 1.5rem; font-weight: 700; color: white; }
.admin-logo span { color: #ff0033; }
.admin-links { display: flex; gap: 20px; }
.admin-links a { color: #888; font-weight: 500; text-transform: uppercase; font-size: 0.85rem; text-decoration: none; transition: 0.3s; }
.admin-links a:hover, .admin-links a.active { color: #ff0033; }
.admin-logout { color: #ff4444 !important; }

.admin-card-box { background: #111; border: 1px solid #333; padding: 30px; border-radius: 12px; margin-bottom: 40px; }
.admin-input-field { width: 100%; background: #050505 !important; border: 1px solid #333 !important; color: white !important; padding: 12px 15px; border-radius: 6px; outline: none; margin-bottom: 15px; font-size: 0.9rem; }
.admin-input-field:focus { border-color: #ff0033 !important; }

.admin-grid-view { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.admin-grid-item { background: #111; border: 1px solid #333; padding: 20px; border-radius: 12px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: 0.3s; overflow: hidden; }
.admin-grid-item:hover { border-color: #ff0033; transform: translateY(-5px); }
.admin-grid-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; border: 1px solid #222; }
.admin-grid-item i { font-size: 2.5rem; color: #ff0033; margin-bottom: 15px; }
.admin-grid-item h3 { margin-bottom: 8px; font-size: 1.1rem; color: #fff; }
.admin-grid-item p { color: #888; font-size: 0.85rem; margin-bottom: 15px; }

.admin-delete-btn { display: inline-block; color: #ff4444; border: 1px solid #ff4444; padding: 6px 20px; border-radius: 50px; font-size: 0.8rem; text-decoration: none; transition: 0.3s; }
.admin-delete-btn:hover { background: #ff4444; color: white; }

.admin-table-container { overflow-x: auto; }
table.admin-table-style { width: 100%; border-collapse: collapse; min-width: 600px; }
table.admin-table-style th { text-align: left; padding: 15px; background: #1a1a1a; color: #ff0033; border-bottom: 2px solid #333; }
table.admin-table-style td { padding: 15px; border-bottom: 1px solid #222; color: #ccc; }

.admin-edit-btn { display: inline-block; color: #4facfe; border: 1px solid #4facfe; padding: 6px 20px; border-radius: 50px; font-size: 0.8rem; text-decoration: none; transition: 0.3s; margin-right: 10px; cursor: pointer; }
.admin-edit-btn:hover { background: #4facfe; color: white; }

