:root {
    --bg-main: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent: #181818; 
    --accent-light: #f1f5f9; 
    --btn-dark: #181818;
    --card-bg: #ffffff;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
}

body { 
    background-color: var(--bg-main); 
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px); 
    background-size: 50px 50px; 
    color: var(--text-main); 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
}

h1, h2, h3 { color: var(--text-main); font-weight: 700; letter-spacing: -0.5px; }
p { color: var(--text-muted); line-height: 1.7; }

/* Navbar */
.pill-nav { position: fixed; top: 30px; left: 50%; transform: translateX(-50%); width: 95%; max-width: 1200px; background-color: #181818; border-radius: 60px; padding: 10px 15px 10px 25px; display: flex; justify-content: space-between; align-items: center; z-index: 9999; box-shadow: 0 15px 35px rgba(0,0,0,0.15); transition: transform 0.4s var(--transition-smooth); }
.pill-nav.nav-hidden { transform: translate(-50%, -150%); }
.logo-container { display: flex; align-items: center; gap: 15px; }
.logo-text h1 { 
    font-size: 1rem; 
    font-weight: 800; 
    letter-spacing: 0.5px; 
    line-height: 1.2; 
    color: #ffffff; 
    font-family: 'Montserrat', sans-serif; 
}
.logo-text p { font-size: 0.65rem; color: #cbd5e1; margin: 0; line-height: 1; }
.nav-links { list-style: none; display: flex; gap: 35px; align-items: center; }
.nav-links a { position: relative; color: #f8fafc; text-decoration: none; font-weight: 500; font-size: 0.95rem; padding-bottom: 4px; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; background-color: #ffffff; transition: all 0.3s ease; }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a:hover { color: #ffffff; }
.nav-btn { background-color: #ffffff; color: #181818; text-decoration: none; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2); }
.brand-logo { height: 28px; width: auto; object-fit: contain; display: block; filter: brightness(0) invert(1); } 

/* About Section */
.about-top-section { position: relative; display: flex; align-items: center; padding-top: 60px; overflow: hidden; }
.container { padding: 80px 5%; max-width: 1400px; margin: 0 auto; z-index: 1; position: relative; }
.bg-light { background: transparent; }
.section-header { text-align: center; margin-bottom: 60px; }
.accent-tag { display: inline-block; padding: 6px 16px; background: rgba(0, 0, 0, 0.08); color: #181818; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; border: none; }
.section-title { font-size: 3rem; }

/* Buttons */
.btn { display: inline-block; padding: 16px 36px; font-size: 1rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: var(--btn-dark); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--btn-dark); border: 2px solid var(--btn-dark); }
.btn-outline:hover { background: var(--btn-dark); color: #fff; transform: translateY(-3px); }

/* Custom Pill Button for Visual Showcase */
.btn-explore {
    background: #181818;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-explore:hover {
    background: #e0e0e0;
    color: #181818;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.full-width { width: 100%; }
.btn-back { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; margin-bottom: 40px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.btn-back:hover { color: var(--btn-dark); }
.card-shadow { box-shadow: var(--shadow-soft); border-radius: 16px; background: var(--card-bg); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }

/* About & Image */
.about-grid { 
    display: grid; 
    grid-template-columns: 0.75fr 1.25fr; 
    gap: 80px; 
    align-items: center; 
}

.about-image-wrapper { 
    width: 100%; 
    max-width: 420px; 
    margin-left: auto; 
}
.pro-image-placeholder { 
    width: 100%; 
    height: 0;
    padding-top: 120%; 
    background: #efefef url('images/Ansil.png') no-repeat;
    background-size: cover; 
    background-position: center 10%; 
    border-radius: 16px;
    position: relative;
}
.image-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.1); border-radius: 16px; pointer-events: none; }
.lead-text { font-size: 1.3rem; font-weight: 500; color: var(--btn-dark); margin-bottom: 20px; }

/* Skills Grid */
.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.skill-card { padding: 35px 30px; text-align: left; transition: transform 0.4s ease, box-shadow 0.4s ease; position: relative; transform-style: preserve-3d; perspective: 1000px; aspect-ratio: 1 / 1 !important; display: flex; flex-direction: column; justify-content: center; background: #ffffff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important; }
.skill-card p { font-size: 0.95rem; line-height: 1.6; margin: 0; color: var(--text-muted); }
.skill-icon-box { width: 50px; height: 50px; background: #f1f5f9; color: #181818; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transform: translateZ(30px); }
.skill-icon-box svg { width: 24px; height: 24px; transition: transform 0.4s ease; }
.skill-card h3 { color: var(--btn-dark); margin-bottom: 10px; font-size: 1.25rem; }
.skill-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important; border-color: transparent; }
.skill-card:hover .skill-icon-box { background: #181818; color: #ffffff; transform: translateZ(40px) scale(1.05); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); }
.skill-card:hover .skill-icon-box svg { transform: scale(1.1); }

/* --- 3D Glimpse Showcase Layout --- */
.glimpse-showcase { 
    display: flex; justify-content: center; align-items: center; 
    max-width: 1100px;
    margin: 40px auto 0; position: relative; 
}

.glimpse-wrapper { 
    position: relative; width: 320px; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Left Card */
.glimpse-left { 
    margin-right: -40px; 
    transform: scale(0.85); 
    z-index: 1; 
    opacity: 0.75; 
    filter: blur(2px); 
}

/* Center Card */
.glimpse-center { 
    z-index: 3; 
    transform: scale(1.08); 
}
.glimpse-center .pro-card { 
    box-shadow: 0 40px 80px rgba(0,0,0,0.15) !important; 
}

/* Right Card */
.glimpse-right { 
    margin-left: -40px; 
    transform: scale(0.85); 
    z-index: 1; 
    opacity: 0.75; 
    filter: blur(2px); 
}

.glimpse-left:hover, .glimpse-right:hover { 
    opacity: 1; 
    z-index: 4; 
    transform: scale(0.98); 
    filter: blur(0px); 
}

/* Straight Auto-Scroll Marquee */
.marquee-outer-container { padding: 60px 0; overflow: hidden; position: relative; background: transparent; }
.straight-marquee-wrapper { width: 100%; background: #0f0f0f; padding: 40px 0; position: relative; z-index: 10; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), 0 20px 60px -10px rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.slanted-marquee { display: flex; width: max-content; }
.marquee-content { display: flex; flex-shrink: 0; align-items: center; gap: 80px; padding-right: 80px; animation: scrollMarquee 25s linear infinite; }
@keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.logo-link { display: flex; align-items: center; justify-content: center; width: 140px; height: 60px; transition: transform 0.3s ease; }
.logo-link:hover { transform: scale(1.05); }
.client-logo-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; transition: opacity 0.3s ease; }
.client-logo-img:hover { opacity: 0.8; }

/* Contact Form & Pills */
.contact-wrapper { padding: 50px; max-width: 800px; margin: 0 auto; }
.pro-form { display: flex; flex-direction: column; gap: 25px; }
.input-group { display: flex; gap: 25px; }
.input-field { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.input-field label { font-size: 0.9rem; font-weight: 600; color: var(--btn-dark); }
.pro-form input, .pro-form textarea { width: 100%; padding: 16px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 1rem; transition: all 0.3s; }
.pro-form input:focus, .pro-form textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-light); }

.contact-methods { display: flex; justify-content: center; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.contact-pill { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; padding: 10px 20px !important; border-radius: 50px !important; background: #181818 !important; color: #ffffff !important; text-decoration: none !important; font-weight: 500 !important; transition: all 0.3s ease !important; border: none !important; }
.contact-pill:hover { background: #e0e0e0 !important; color: #181818 !important; transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Portfolio Grids */
.project-grid, .gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 40px; 
}
.pro-card { position: relative; height: 380px; cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease; transform-style: preserve-3d; perspective: 1000px; }
.pro-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.card-image { width: 100%; height: 70%; transition: transform 0.5s ease; border-bottom: 1px solid rgba(0,0,0,0.05); }
.card-content { padding: 25px; height: 30%; background: white; display: flex; align-items: center; justify-content: center; text-align: center; }
.card-content h3 { font-size: 1.4rem; margin: 0; }

/* Masonry Layout for Photos */
.masonry-grid { column-count: 3; column-gap: 30px; width: 100%; }
.masonry-card { break-inside: avoid; margin-bottom: 30px; height: auto !important; display: inline-block; width: 100%; background: #ffffff; border: 1px solid rgba(0,0,0,0.04); }
.masonry-card .card-content { height: auto; padding: 20px; }
.masonry-card img { width: 100%; height: auto; display: block; border-bottom: 1px solid rgba(0,0,0,0.05); }
.masonry-pdf-cover { width: 100%; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #94a3b8; letter-spacing: 2px; border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Sub-categories & Tabs */
.pro-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.tab-btn { background: #f1f5f9; border: none; color: var(--text-muted); font-size: 1rem; font-weight: 600; padding: 12px 30px; border-radius: 30px; cursor: pointer; transition: all 0.3s; }
.tab-btn.active { background: var(--btn-dark); color: white; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

/* FIXED SUB-TABS: Added Safe Padding for Shadows */
/* Container for the category buttons */
/* Container for the category buttons */
/* Container for the category buttons (Back to normal) */
.sub-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 30px; 
    padding: 10px 10px 25px 10px; 
    width: 100%;
}

.sub-tab-btn { 
    background: #181818; 
    color: #ffffff; 
    border: none; 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 500; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sub-tab-btn:hover { 
    background: #e0e0e0; 
    color: #181818; 
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sub-tab-btn.active { 
    background: #e0e0e0; 
    color: #181818; 
    font-weight: 700; 
    transform: translateY(-4px); 
    box-shadow: 0 6px 18px rgba(0,0,0,0.3); 
}

/* Video Popup Modal */
.video-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-content { width: 90%; max-width: 1000px; position: relative; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.close-modal { position: absolute; top: -50px; right: 0; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; transition: color 0.3s; }
.close-modal:hover { color: #cbd5e1; }

/* Floating Portfolio Button */
.floating-portfolio-btn { position: fixed; bottom: 40px; right: 40px; background: #181818; color: white; border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 14px 28px; font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; cursor: pointer; z-index: 99999; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); animation: float-pulse 3s ease-in-out infinite; }
.floating-portfolio-btn svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.floating-portfolio-btn:hover { transform: scale(1.08); background: #000; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); animation: none; }
.floating-portfolio-btn:hover svg { transform: rotate(15deg) scale(1.2); }
@keyframes float-pulse { 0% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.3); } 50% { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.4); } 100% { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.3); } }

/* Footer */
footer { padding: 40px 5%; background: var(--btn-dark); text-align: center; margin-top: 50px; border-top: 1px solid #333; }
.footer-content p { color: #94a3b8; font-size: 0.9rem; }
.footer-socials a:hover { color: #ffffff !important; transform: translateY(-2px); }
.footer-content .branding { margin-top: 10px; }
.branding strong { color: #fff; }

.hidden { display: none !important; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }

/* DISABLE 3D TILT ON PORTFOLIO WORKS */
.pro-card {
    transform: none !important; 
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.pro-card:hover {
    transform: translateY(-10px) !important;
}

.pro-card .js-tilt-glare {
    display: none !important;
}

/* IMAGE LIGHTBOX ARROWS */
.nav-arrow { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(24, 24, 24, 0.6); 
    color: white; 
    border: none; 
    font-size: 1.5rem; 
    width: 50px;
    height: 50px;
    cursor: pointer; 
    border-radius: 50%; 
    transition: all 0.3s ease; 
    z-index: 100001; 
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.nav-arrow:hover { 
    background: rgba(255, 255, 255, 0.9); 
    color: #181818;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: -70px; }
.right-arrow { right: -70px; }

/* =======================================
   CLEAN 3-COLUMN HORIZONTAL GRID
======================================= */
.video-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    width: 100%;
    align-items: start; 
}

/* Make standard video works perfect Landscape (16:9) */
.video-masonry-grid .pro-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0; 
    height: auto; 
    aspect-ratio: 16 / 9; 
}

/* Keep the Reels/Shorts tall */
.video-masonry-grid .pro-card.portrait-card {
    height: 540px; 
    aspect-ratio: auto; 
}

/* SHOWCASE HOVER VIDEO EFFECT */
.hover-video-card:hover .static-thumb {
    opacity: 0;
}

/* PORTRAIT VIDEO CARDS (REELS/SHORTS) */
.pro-card.portrait-card {
    height: 540px; 
}

.portrait-card .card-image {
    height: 100%; 
}

/* =======================================
   2K & 4K LARGE MONITOR FIXES
======================================= */
@media (min-width: 1921px) {
    .about-top-section { min-height: 100vh; justify-content: center; }
    .container { max-width: 1600px; padding-top: 100px; }
    .pill-nav { max-width: 1400px; padding: 15px 20px 15px 30px; }
    .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 120px; align-items: center; }
    .pro-image-placeholder { height: auto; aspect-ratio: 4 / 5; max-height: none; padding-top: 0; }
    .about-text { max-width: 750px; }
    .section-title { font-size: 4.2rem; }
    .lead-text { font-size: 1.6rem; line-height: 1.7; margin-bottom: 25px; }
    p { font-size: 1.15rem; line-height: 1.8; }
    .skill-card { padding: 50px 45px; }
    .skill-icon-box { width: 65px; height: 65px; margin-bottom: 25px; }
    .skill-icon-box svg { width: 30px; height: 30px; }
    .skill-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
    .skill-card p { font-size: 1.1rem; }
}

/* =======================================
   TABLET RESPONSIVENESS FIXES
======================================= */
@media (max-width: 1024px) {
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { column-count: 2; }
    .video-masonry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =======================================
   DESKTOP SPECIFIC FIXES
======================================= */
@media (min-width: 769px) {
    /* Add extra space below the Portfolio heading on Desktop only */
    #full-portfolio .section-title {
        margin-bottom: 40px;
    }
}

/* =======================================
   MOBILE RESPONSIVENESS FIXES
======================================= */
@media (max-width: 768px) {
    .nav-links, .logo-text p { display: none; }
    .pill-nav { padding: 12px 20px; width: 90%; }
    .logo-text h1 { font-size: 0.9rem; }
    .nav-btn { padding: 10px 20px; font-size: 0.85rem; }
    .brand-logo { height: 18px; }
    .section-title { font-size: 2rem; margin-bottom: 30px; }
    .container { padding: 50px 5%; }
    .about-top-section { padding-top: 80px; } 
    .about-grid, .skills-grid { grid-template-columns: 1fr; gap: 30px; }
    .input-group { flex-direction: column; gap: 15px; }
    .contact-wrapper { padding: 30px 20px; }
    .btn { padding: 12px 24px; font-size: 0.95rem; }
    
    /* Marquee Fixes */
    .marquee-outer-container { padding: 25px 0; }
    .straight-marquee-wrapper { 
        padding: 25px 0; 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.05); 
    }
    .marquee-content { gap: 30px; padding-right: 30px; } 
    .logo-link { width: 110px; height: 50px; } 
    .client-logo-img { max-width: 100%; max-height: 100%; }
    
    /* Contact Form Fixes */
    .contact-methods { flex-wrap: nowrap; gap: 12px; }
    .contact-pill { width: 50px !important; height: 50px !important; max-width: none !important; padding: 0 !important; border-radius: 50% !important; font-size: 0 !important; justify-content: center !important; align-items: center !important; gap: 0 !important; }
    .contact-pill svg { width: 22px; height: 22px; margin: 0; }
    .floating-portfolio-btn { bottom: 20px; right: 20px; padding: 12px 22px; font-size: 0.9rem; }
    
    /* Tabs Fixes */
    /* Reset margins for mobile so it looks tight and clean */
    .pro-tabs {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }
    .tab-btn { padding: 10px 20px; font-size: 0.9rem; }
    
    /* FIXED MOBILE SUB-TABS */
    /* Mobile scrolling category list */
    .sub-tabs { 
        /* CRITICAL: Locks the first button to the left wall so it never gets chopped off */
        justify-content: flex-start; 
        flex-wrap: nowrap; /* Puts them in a single line for scrolling */
        overflow-x: auto; 
        padding: 10px 20px 25px 20px; 
        margin-bottom: 20px;
        width: 100%; 
        -webkit-overflow-scrolling: touch; 
    }
    
    .sub-tabs::-webkit-scrollbar { display: none; }
    
    .sub-tab-btn { 
        white-space: nowrap; 
        padding: 8px 16px; 
        font-size: 0.8rem; 
    }

    .masonry-grid { column-count: 1; }
    .video-masonry-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Mobile fix for Glimpse Layout */
    .glimpse-showcase { flex-direction: column; gap: 30px; }
    .glimpse-wrapper { margin: 0 !important; transform: scale(1) !important; width: 100%; max-width: 350px; opacity: 1 !important; filter: none !important; }
    .glimpse-center { order: -1; }

    /* Cards */
    .skill-card { aspect-ratio: auto !important; padding: 30px 20px !important; justify-content: flex-start; }
    .skill-card, .pro-card { transform: none !important; }
    .skill-card:hover, .pro-card:hover { transform: none !important; }
    .skill-icon-box, .skill-card:hover .skill-icon-box { transform: none !important; }
    
    /* Lightbox Arrows Mobile */
    .left-arrow { left: 10px; width: 40px; height: 40px; font-size: 1.2rem; }
    .right-arrow { right: 10px; width: 40px; height: 40px; font-size: 1.2rem; }
    #image-modal .close-modal { right: 0; top: -50px; }
}