/* ============================================================
   Yashcore IT Solutions - Professional IT Website
   Modern, animated, tech-industry design
   ============================================================ */

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

:root {
    --primary:    #0066ff;
    --primary-d:  #0044cc;
    --primary-l:  #3d8bff;
    --accent:     #00e5ff;
    --accent-d:   #00b8d4;
    --dark:       #060b14;
    --dark-2:     #0a1120;
    --dark-3:     #0f1a2e;
    --dark-4:    #142340;
    --surface:    #111c2e;
    --success:    #00d97e;
    --warning:    #ffb020;
    --danger:     #ff4757;
    --text:       #e8edf5;
    --text-2:     #9aa8c0;
    --text-3:     #5a6a85;
    --border:     rgba(255,255,255,.08);
    --border-2:   rgba(255,255,255,.12);
    --glow:       0 0 40px rgba(0,102,255,.25);
    --glow-cyan:  0 0 40px rgba(0,229,255,.2);
    --radius:     14px;
    --radius-sm:  10px;
    --radius-lg:  20px;
    --transition: .4s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

a { text-decoration: none; color: var(--primary-l); transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- Selection ---- */
::selection { background: var(--primary); color: #fff; }

/* ============================================================
   ANIMATIONS / KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-20px); }
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50%     { opacity: .5; }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes shimmer {
    0%   { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}
@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes bounce-in {
    0%   { opacity: 0; transform: scale(.3); }
    50%  { transform: scale(1.05); }
    70%  { transform: scale(.95); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes glow-pulse {
    0%,100% { box-shadow: 0 0 20px rgba(0,102,255,.3); }
    50%     { box-shadow: 0 0 40px rgba(0,102,255,.5), 0 0 60px rgba(0,229,255,.2); }
}
@keyframes scroll-down {
    0%   { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(10px); }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* ---- Reveal on scroll ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.active, .reveal-right.active { transform: translateX(0); }
.reveal-scale { transform: scale(.9); }
.reveal-scale.active { transform: scale(1); }

/* Delay utilities */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: rgba(6,11,20,.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .82rem;
    color: var(--text-2);
    position: relative;
    z-index: 1100;
}
.topbar a { color: var(--text-2); }
.topbar a:hover { color: var(--accent); }
.topbar .pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--success);
    margin-right: 6px;
    animation: pulse 2s infinite;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav {
    background: rgba(10,17,32,.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: all .4s ease;
    z-index: 1000;
}
.main-nav.scrolled {
    background: rgba(6,11,20,.98);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand .logo-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: var(--glow);
    animation: glow-pulse 3s ease-in-out infinite;
}
.navbar-brand .brand-text {
    background: linear-gradient(135deg, #fff, var(--text-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-2) !important;
    font-weight: 500;
    font-size: .95rem;
    margin: 0 3px;
    padding: 8px 16px !important;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(0,102,255,.1);
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width .3s ease;
}
.nav-link:hover::before, .nav-link.active::before { width: 50%; }

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,102,255,.3);
    transition: var(--transition);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,102,255,.4);
    background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
}
.nav-cta::before { display: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6,11,20,.95) 0%, rgba(10,17,32,.85) 50%, rgba(15,26,46,.7) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 750px;
    padding: 0 8%;
}
.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,102,255,.15);
    border: 1px solid rgba(0,102,255,.3);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--primary-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-2);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
}
.hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Slider navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}
.hero-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}
.hero-nav-btn:hover {
    background: rgba(0,102,255,.2);
    border-color: var(--primary);
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}
.hero-dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active {
    background: var(--accent);
}

/* ============================================================
   NEW HERO SLIDER
   ============================================================ */
.hero-slider-new {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #0a0e27;
}
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}
.slide-item.active {
    opacity: 1;
    z-index: 1;
}
.slide-content {
    width: 100%;
    padding: 100px 0;
}
.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    animation: slideUp 0.8s ease;
}
.slide-title .highlight {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slide-desc {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    animation: slideUp 1s ease;
}
.slide-actions {
    display: flex;
    gap: 16px;
    animation: slideUp 1.2s ease;
}
.btn-slide {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-slide.primary {
    background: #fff;
    color: #667eea;
    border: none;
}
.btn-slide.primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-slide.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-slide.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}
.slider-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    transform: scale(1.1);
}

/* Slider indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}
.indicator {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.indicator:hover {
    background: rgba(255,255,255,0.5);
}
.indicator.active {
    background: #fff;
    width: 60px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   PROFESSIONAL SLIDER
   ============================================================ */
.professional-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #0a0e27;
}
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}
.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}
.slider-slide.active .slider-bg {
    transform: scale(1);
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(20, 30, 60, 0.75) 50%, rgba(30, 40, 80, 0.65) 100%);
    z-index: 2;
}
.slider-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.slider-text-wrapper {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}
.slider-label {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.slider-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.slider-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 650px;
}
.slider-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.slider-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}
.slider-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}
.slider-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}
.slider-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.slider-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}
.slider-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: scale(1.1);
}
.slider-nav-btn:active {
    transform: scale(0.95);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
}
.slider-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .slider-heading {
        font-size: 2.5rem;
    }
    .slider-description {
        font-size: 1.1rem;
    }
    .slider-nav-btn {
        width: 50px;
        height: 50px;
    }
    .slider-navigation {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .slider-heading {
        font-size: 2rem;
    }
    .slider-description {
        font-size: 1rem;
    }
    .slider-label {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    .slider-buttons {
        flex-direction: column;
        width: 100%;
    }
    .slider-btn {
        width: 100%;
        justify-content: center;
    }
    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
    .slider-pagination {
        bottom: 30px;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 26px; height: 42px;
    border: 2px solid var(--text-3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-indicator::after {
    content: '';
    width: 4px; height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-down 1.5s infinite;
}

/* Responsive slider styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .hero-content {
        max-width: 100%;
        padding: 0 5%;
    }
    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-content .hero-badge {
        font-size: 0.75rem;
        padding: 4px 14px;
    }
    .hero-content .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-content .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .hero-dots {
        bottom: 60px;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 32px;
    transition: var(--transition);
    border: none;
    font-size: .95rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,102,255,.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,102,255,.4);
    background: linear-gradient(135deg, var(--primary-l), var(--primary));
}
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-d));
    color: var(--dark) !important;
    box-shadow: 0 4px 20px rgba(0,229,255,.3);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,229,255,.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--border-2);
    color: #fff;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,229,255,.05);
}
.btn-lg { padding: 14px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: .85rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 100px 0; position: relative; }

.section-padding { padding: 100px 0; }
.section-dark    { background: var(--dark-2); }
.section-darker  { background: var(--dark); }
.section-surface { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 70px; }
.section-header .section-tag {
    display: inline-block;
    background: rgba(0,102,255,.1);
    border: 1px solid rgba(0,102,255,.25);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
}
.section-header p {
    color: var(--text-2);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--primary-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,.3), var(--glow);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .feature-icon {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,102,255,.15), rgba(0,229,255,.1));
    border: 1px solid rgba(0,102,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0 auto 24px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--glow);
}
.feature-card h5 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-2); font-size: .95rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(0,0,0,.4), var(--glow);
}
.service-card .service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-card .service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-card .service-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--surface) 100%);
}
.service-card .service-body {
    padding: 30px;
    position: relative;
}
.service-card .service-body::before {
    content: '';
    position: absolute;
    top: -50px; left: 30px;
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
}
.service-card .service-icon-wrap {
    position: absolute;
    top: -40px; left: 30px;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: var(--glow);
    z-index: 2;
}
.service-card h5 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--text-2); font-size: .92rem; margin-bottom: 16px; }
.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.service-card .service-features li {
    color: var(--text-2);
    font-size: .9rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-card .service-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(0,102,255,.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(0,229,255,.08) 0%, transparent 40%);
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-item .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--primary-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-item .stat-label {
    color: var(--text-2);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ============================================================
   ABOUT / FEATURE LIST
   ============================================================ */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.about-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--glow);
}
.about-feature .icon-box {
    min-width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,102,255,.15), rgba(0,229,255,.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}
.about-feature h6 { margin-bottom: 4px; font-size: 1.05rem; }
.about-feature p { color: var(--text-2); font-size: .9rem; margin: 0; }

/* ---- Mission/Vision cards ---- */
.mvv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.mvv-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,102,255,.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .5s ease;
}
.mvv-card:hover::before { opacity: 1; }
.mvv-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.mvv-card .mvv-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: var(--glow);
    animation: float 4s ease-in-out infinite;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.team-card .team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.team-card .team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.team-card:hover .team-img img { transform: scale(1.08); }
.team-card .team-body { padding: 24px; }
.team-card .team-body h5 { margin-bottom: 4px; }
.team-card .team-role { color: var(--accent); font-size: .9rem; }
.team-card .team-social {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.team-card .team-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    font-size: .9rem;
    transition: var(--transition);
}
.team-card .team-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card .blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.1); }
.blog-card .blog-date {
    position: absolute;
    top: 15px; left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,102,255,.3);
}
.blog-card .blog-body { padding: 28px; }
.blog-card .blog-body h5 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card .blog-body p { color: var(--text-2); font-size: .92rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-control, .form-select {
    background: var(--dark-3);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text);
    font-size: .95rem;
    transition: var(--transition);
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus, .form-select:focus {
    background: var(--dark-3);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 4px rgba(0,102,255,.1);
}
.form-control:focus::placeholder { color: var(--text-3); }
.form-label {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: .92rem;
}
.form-label .req { color: var(--danger); }

.input-group-text {
    background: var(--dark-3);
    border: 2px solid var(--border);
    color: var(--text-2);
    border-radius: var(--radius-sm);
}

/* ---- Contact info box ---- */
.contact-info-box {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}
.contact-info-box h3 { margin-bottom: 20px; }
.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-box .info-item .info-icon {
    min-width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,102,255,.1);
    border: 1px solid rgba(0,102,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
}
.contact-info-box .info-item h6 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-box .info-item p { color: var(--text-2); margin: 0; font-size: .92rem; }

/* ---- Form card ---- */
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}
.form-card h3 { margin-bottom: 24px; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    background: var(--dark-2);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0,102,255,.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,229,255,.08) 0%, transparent 50%);
}
.page-banner::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,102,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: fadeInUp .8s ease;
}
.page-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    animation: fadeInUp 1s ease;
}
.page-banner .breadcrumb a { color: var(--accent); }
.page-banner .breadcrumb .active { color: var(--text-2); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: var(--text-3); }

/* ============================================================
   JOB CARDS
   ============================================================ */
.job-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}
.job-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
}
.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}
.job-card h4 { font-size: 1.25rem; margin-bottom: 8px; }
.job-card .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-2);
    font-size: .85rem;
    margin-bottom: 16px;
}
.job-card .job-meta i { color: var(--accent); margin-right: 5px; }
.job-card .badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,102,255,.08) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px;
}
.footer h5, .footer h6 { color: #fff; margin-bottom: 20px; }
.footer .footer-about p { color: var(--text-2); font-size: .92rem; }
.footer .footer-links { list-style: none; padding: 0; }
.footer .footer-links li { margin-bottom: 12px; }
.footer .footer-links a {
    color: var(--text-2);
    font-size: .92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.footer .footer-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    margin-right: 8px;
    font-size: .7rem;
    color: var(--primary);
    transition: var(--transition);
}
.footer .footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}
.footer .footer-links a:hover::before { color: var(--accent); }
.footer .footer-contact { list-style: none; padding: 0; }
.footer .footer-contact li {
    color: var(--text-2);
    font-size: .92rem;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer .footer-contact li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
}
.footer .social-links { display: flex; gap: 12px; margin-top: 20px; }
.footer .social-links a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: var(--transition);
}
.footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--glow);
}
.footer .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-3);
    font-size: .88rem;
}
.footer .footer-bottom a { color: var(--accent); }

/* ============================================================
   ALERTS (dark theme)
   ============================================================ */
.alert {
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.alert-success {
    background: rgba(0,217,126,.1);
    border-color: rgba(0,217,126,.3);
    color: var(--success);
}
.alert-danger {
    background: rgba(255,71,87,.1);
    border-color: rgba(255,71,87,.3);
    color: var(--danger);
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body {
    background: var(--dark-2);
    color: var(--text);
}
.admin-sidebar {
    background: var(--dark);
    border-right: 1px solid var(--border);
    min-height: 100vh;
    position: fixed;
    width: 260px;
    left: 0; top: 0;
    padding-top: 24px;
    z-index: 1000;
    overflow-y: auto;
}
.admin-sidebar .brand {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-sidebar .brand .logo-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--glow);
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-2);
    padding: 13px 24px;
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
    font-size: .92rem;
    font-weight: 500;
}
.admin-sidebar a:hover {
    background: rgba(0,102,255,.08);
    color: var(--accent);
    border-left-color: var(--accent);
}
.admin-sidebar a.active {
    background: rgba(0,102,255,.1);
    color: #fff;
    border-left-color: var(--primary);
}
.admin-content { margin-left: 260px; padding: 24px 30px; min-height: 100vh; }
.admin-topbar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-topbar h4 { margin: 0; font-size: 1.3rem; }
.admin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
}
.admin-card h5 { margin-bottom: 20px; }

/* Admin stat cards */
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--glow);
}
.stat-card .stat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.stat-card .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-card .stat-label {
    color: var(--text-2);
    font-size: .85rem;
    margin-top: 4px;
}
.stat-blue   .stat-icon { background: rgba(0,102,255,.15);  color: var(--primary-l); }
.stat-green  .stat-icon { background: rgba(0,217,126,.15);  color: var(--success); }
.stat-orange .stat-icon { background: rgba(255,176,32,.15); color: var(--warning); }
.stat-purple .stat-icon { background: rgba(174,120,255,.15); color: #ae78ff; }

/* Admin tables */
.table {
    color: var(--text);
    border-color: var(--border);
}
.table thead th {
    color: var(--text-2);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
}
.table td { border-color: var(--border); }
.table-hover tbody tr { transition: var(--transition); }
.table-hover tbody tr:hover {
    background: rgba(0,102,255,.05);
    color: #fff;
}
.action-btns .btn { padding: 6px 12px; font-size: .8rem; }

/* Admin badges */
.badge { padding: 6px 14px; border-radius: 50px; font-size: .75rem; font-weight: 600; }

/* Admin login page */
.login-page {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.login-page::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,102,255,.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,229,255,.08) 0%, transparent 50%);
}
.login-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    position: relative;
    z-index: 1;
    animation: bounce-in .6s ease;
}
.login-icon {
    width: 72px; height: 72px;
    margin: -36px auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: var(--glow);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* ============================================================
   TECH DECORATIVE ELEMENTS
   ============================================================ */
.tech-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.code-block {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    font-family: 'Courier New', monospace;
    font-size: .85rem;
    color: var(--text-2);
    position: relative;
    overflow: hidden;
}
.code-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 30px;
    background: var(--dark-3);
    border-bottom: 1px solid var(--border);
}
.code-block .code-dots {
    position: absolute;
    top: 10px; left: 12px;
    display: flex;
    gap: 6px;
}
.code-block .code-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.code-block .code-dots span:nth-child(1) { background: #ff5f56; }
.code-block .code-dots span:nth-child(2) { background: #ffbd2e; }
.code-block .code-dots span:nth-child(3) { background: #27c93f; }
.code-block .code-content { margin-top: 20px; }
.code-block .code-content .keyword { color: var(--accent); }
.code-block .code-content .string { color: var(--success); }
.code-block .code-content .comment { color: var(--text-3); }

/* ---- Floating particles ---- */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: .3;
    animation: float 8s ease-in-out infinite;
}

/* ---- Section divider ---- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

/* ---- Glow card ---- */
.glow-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.glow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}
.glow-card:hover::before { transform: scaleX(1); }
.glow-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,.3), var(--glow);
}

/* ---- Article content ---- */
.article-content { color: var(--text-2); font-size: 1.05rem; line-height: 1.8; }
.article-content p { margin-bottom: 20px; }

/* ---- Map ---- */
.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    filter: invert(.9) hue-rotate(180deg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .section-header h2 { font-size: 2rem; }
    .admin-sidebar { transform: translateX(-100%); transition: transform .3s ease; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    section { padding: 60px 0; }
}
@media (max-width: 576px) {
    .section-header h2 { font-size: 1.6rem; }
    .page-banner h1 { font-size: 2rem; }
    .page-banner { padding: 110px 0 50px; }
    section { padding: 50px 0; }
    .stat-item .stat-number { font-size: 2.5rem; }
    .footer { padding: 50px 0 20px; }
    .form-card, .contact-info-box { padding: 25px; }
    .admin-content { padding: 16px; }
}
