/* --- CSS VARIABLES & THEME LOGIC --- */
:root {
    --bg-main: #050505;
    --text-main: #ffffff;
    --text-muted: #8a8a93;
    --accent: #9333ea;
    --accent-glow: rgba(147, 51, 234, 0.3);
    --card-bg: rgba(20, 20, 22, 0.6);
    --card-border: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(5, 5, 5, 0.8);
    --btn-bg: #ffffff;
    --btn-text: #000000;
}

[data-theme="light"] {
    --bg-main: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent: #7e22ce;
    --accent-glow: rgba(126, 34, 206, 0.2);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.08);
    --nav-bg: rgba(248, 250, 252, 0.8);
    --btn-bg: #0f172a;
    --btn-text: #ffffff;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
    scroll-behavior: smooth;
}

/* Base Stop for horizontal scrolling issues */
html, body { max-width: 100%; overflow-x: hidden; }

h1, h2, h3, .nav-logo { font-family: 'Syne', sans-serif; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 120px 0; }
.mt-base { margin-top: 2rem; }

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 8px; height: 8px; background-color: var(--accent);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); transition: opacity 0.3s;
}
.cursor-outline {
    width: 40px; height: 40px; border: 1px solid var(--accent);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-outline.hover-active { width: 60px; height: 60px; background-color: var(--accent-glow); border-color: transparent; }

.ambient-glow {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
    z-index: -1; pointer-events: none; transition: background 0.5s ease;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; z-index: 1001; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: var(--nav-bg); 
    -webkit-backdrop-filter: blur(12px); /* Linter Prefix Fix */
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--card-border);
}
.nav-logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: var(--text-main); letter-spacing: -1px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

/* Hamburger (Hidden on Desktop) */
.hamburger {
    display: none; 
    flex-direction: column; 
    justify-content: space-between;
    width: 30px; height: 20px; 
    cursor: auto; z-index: 1002;
}
.hamburger span {
    width: 100%; height: 2px; 
    background-color: var(--text-main); 
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: translateY(-9px) rotate(-45deg); }

/* FLOATING MOBILE MENU */
.mobile-menu {
    position: fixed; top: 80px; left: 5%; width: 90%; height: auto;
    background: var(--nav-bg); 
    -webkit-backdrop-filter: blur(24px); /* Linter Prefix Fix */
    backdrop-filter: blur(24px); 
    border: 1px solid var(--card-border); border-radius: 24px;
    padding: 2.5rem; z-index: 1000; opacity: 0; pointer-events: none;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
[data-theme="light"] .mobile-menu { background: rgba(255, 255, 255, 0.9); }
.mobile-menu.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.mobile-links { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; width: 100%; }
.mobile-link { 
    font-size: 1.3rem; font-family: 'Syne', sans-serif; font-weight: 700;
    color: var(--text-main); text-decoration: none;
    transform: translateY(10px); opacity: 0; transition: all 0.4s ease;
}
.mobile-menu.active .mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.btn-primary, .contact-pill {
    display: inline-block; background: var(--btn-bg); color: var(--btn-text);
    padding: 14px 32px; border-radius: 50px; font-weight: 600; text-decoration: none; border: none; cursor: none;
}
.theme-btn {
    background: transparent; border: 1px solid var(--card-border); font-size: 1.2rem; cursor: none;
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: var(--text-main);
}
.theme-icon-wrapper { display: flex; flex-direction: column; transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
[data-theme="light"] .theme-icon-wrapper { transform: translateY(-50%); }

.magnetic-btn {
    transform: translate3d(var(--mx, 0), var(--my, 0), var(--mz, 0));
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s, color 0.3s;
}

/* --- HERO --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 0 5%; position: relative;
}
.huge-text { 
    font-size: clamp(2.5rem, 7vw, 7rem); 
    font-weight: 800; line-height: 1; letter-spacing: -2px; 
    margin-bottom: 2rem; z-index: 2; width: 100%; 
    white-space: nowrap; text-align: center; padding: 0 1rem; 
}
.subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 650px; z-index: 2; line-height: 1.6; text-align: center; }

/* --- MARQUEE --- */
.marquee-container {
    width: 100vw; max-width: 100%; overflow: hidden; background: var(--card-bg); 
    padding: 1.5rem 0; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
}
.marquee-track { display: flex; width: max-content; animation: scrollText 20s linear infinite; }
.marquee-group { display: flex; align-items: center; gap: 3rem; padding-right: 3rem; }
.marquee-group span { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-main); white-space: nowrap; }
.marquee-group .dot { color: var(--accent); }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- ABOUT SECTION --- */
.about-section { padding: 150px 5%; text-align: center; perspective: 1000px; }
.hollow-text {
    font-size: clamp(4rem, 10vw, 7rem); color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.2); margin-bottom: -40px; position: relative; z-index: 1;
    background: linear-gradient(90deg, #ff6b6b, #8b5cf6, #92EFFD, #ff6b6b);
    background-size: 300% auto; 
    -webkit-background-clip: text; /* Linter Prefix Fix */
    background-clip: text; 
    transition: all 0.5s ease;
}
[data-theme="light"] .hollow-text { -webkit-text-stroke: 2px rgba(0,0,0,0.1); }
.about-section:hover .hollow-text { -webkit-text-stroke: 0px transparent; color: transparent; animation: textFlow 4s linear infinite; }
@keyframes textFlow { to { background-position: 300% center; } }

.about-content {
    background: rgba(24, 24, 27, 0.8); 
    -webkit-backdrop-filter: blur(10px); /* Linter Prefix Fix */
    backdrop-filter: blur(10px); 
    padding: 40px; border-radius: 24px; max-width: 800px; margin: 0 auto;
    position: relative; z-index: 2; border: 1px solid rgba(255,255,255,0.05);
    transform-style: preserve-3d; transition: transform 0.1s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
[data-theme="light"] .about-content { background: rgba(255,255,255,0.8); border-color: rgba(0,0,0,0.05); }
.about-content::before {
    content: ''; position: absolute; inset: -2px; border-radius: 26px;
    background: linear-gradient(45deg, #ff6b6b, #8b5cf6);
    z-index: -1; opacity: 0; transition: opacity 0.5s ease, filter 0.5s ease;
}
.about-content:hover::before { opacity: 1; filter: blur(20px); }
.about-content p { font-size: 1.1rem; line-height: 1.6; color: var(--text-main); transform: translateZ(30px); margin-bottom: 2rem; }

/* --- ACCORDION --- */
.section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 3rem; text-align: center; }
.accordion-item { border-bottom: 1px solid var(--card-border); }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 0; cursor: none; transition: color 0.3s; }
.accordion-header:hover { color: var(--accent); }
.accordion-header .num { font-size: 1rem; color: var(--text-muted); font-family: 'Syne', sans-serif; width: 40px; }
.accordion-header h3 { font-size: clamp(1.2rem, 3vw, 2rem); flex: 1; margin-left: 1rem;}
.accordion-header .icon { position: relative; width: 20px; height: 20px; }
.accordion-header .icon::before, .accordion-header .icon::after { content: ''; position: absolute; background: var(--text-main); transition: transform 0.3s ease; }
.accordion-header .icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.accordion-header .icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content { padding: 0 0 2rem 40px; color: var(--text-muted); font-size: 1.1rem; max-width: 800px; }
.accordion-item.active .accordion-header .icon::after { transform: rotate(90deg); }
.accordion-item.active .accordion-header .icon::before, .accordion-item.active .accordion-header .icon::after { background: var(--accent); }

/* --- PROJECTS --- */
.immersive-projects { position: relative; width: 100%; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 100px 0; }
.project-bg-container { position: absolute; inset: 0; z-index: 0; }
.proj-bg-layer {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; visibility: hidden; transform: scale(1.05); transition: opacity 1.2s ease, transform 10s linear;
}
.proj-bg-layer.active { opacity: 1; visibility: visible; transform: scale(1); }
.proj-bg-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-main) 0%, rgba(5,5,5,0.8) 40%, rgba(5,5,5,0.4) 100%); z-index: 1; }
[data-theme="light"] .proj-bg-overlay { background: linear-gradient(90deg, var(--bg-main) 0%, rgba(248, 250, 252, 0.9) 45%, rgba(248, 250, 252, 0.5) 100%); }
.proj-layout { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 4rem; width: 100%; height: 100%; }
.proj-info-wrapper { flex: 1; max-width: 600px; }
.massive-proj-title { font-size: clamp(3rem, 6vw, 5rem); font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1; margin-bottom: 1.5rem; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.proj-description { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2.5rem; }
.proj-tags { display: flex; gap: 10px; margin-bottom: 2rem; flex-wrap: wrap; }
.proj-tags .tag { padding: 6px 16px; border: 1px solid var(--accent); border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; background: var(--accent-glow); color: var(--text-main); }
.proj-thumbnails { display: flex; flex-direction: column; gap: 1.5rem; width: 320px; flex-shrink: 0; }
.thumb-card {
    display: flex; align-items: center; gap: 1rem; padding: 10px; border-radius: 16px; cursor: none;
    background: var(--card-bg); border: 1px solid var(--card-border); 
    -webkit-backdrop-filter: blur(16px); /* Linter Prefix Fix */
    backdrop-filter: blur(16px); 
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.thumb-img { width: 80px; height: 80px; border-radius: 12px; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.thumb-content h4 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 4px; }
.thumb-content p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; }
.thumb-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--accent-glow)); opacity: 0; transition: opacity 0.4s ease; z-index: -1; }
.thumb-card:hover { transform: translateX(-10px); border-color: rgba(255,255,255,0.2); }
.thumb-card:hover .thumb-img { transform: scale(1.1); }
.thumb-card.active { transform: translateX(-20px) scale(1.05); border-color: var(--accent); box-shadow: 0 10px 30px var(--accent-glow); }
.thumb-card.active::before { opacity: 1; }

.proj-action-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-secondary {
    display: inline-block; background: transparent; color: var(--text-main);
    padding: 14px 32px; border-radius: 50px; font-weight: 600; text-decoration: none;
    border: 1px solid var(--card-border); cursor: none; 
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-glow); }

/* --- CONTACT SECTION --- */
.contact-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; }
.huge-text-sub { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin: 1rem 0 2rem 0; font-family: 'Syne', sans-serif;}
.contact-right { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-block h4 { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 0.5rem; text-transform: uppercase; font-weight: 600; }
.info-block p, .info-block a { color: var(--text-main); font-size: 1rem; text-decoration: none; line-height: 1.5; transition: color 0.3s; cursor: none;}
.info-block a:hover { color: var(--accent); }
.social-links-small { display: flex; flex-direction: column; gap: 0.5rem; }
.massive-email-container { text-align: center; margin-bottom: -50px; position: relative; z-index: 2; }
.massive-email { 
    font-size: clamp(2rem, 5vw, 5rem); font-weight: 800; 
    background: linear-gradient(135deg, #ff6b6b, var(--accent)); 
    -webkit-background-clip: text; /* Linter Prefix Fix */
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    letter-spacing: -2px; word-break: break-all; 
}
.map-form-container { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; margin-top: 50px; }
.map-wrapper { width: 100%; height: 600px; filter: grayscale(100%) invert(90%) contrast(120%); opacity: 0.6; transition: filter 0.5s; }
[data-theme="light"] .map-wrapper { filter: grayscale(100%) contrast(100%); opacity: 0.8; }
.form-overlap-card {
    background: var(--bg-main); border: 1px solid var(--card-border);
    border-radius: 24px 24px 0 0; padding: 5rem 10%; width: 90%; max-width: 1000px;
    margin-top: -150px; position: relative; z-index: 10; text-align: center;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.4);
}
[data-theme="light"] .form-overlap-card { box-shadow: 0 -20px 40px rgba(0,0,0,0.05); }
.form-overlap-card h3 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.form-subtext { color: var(--text-muted); margin-bottom: 3rem; }
.custom-form { text-align: left; }
.input-row { display: flex; gap: 2rem; }
.input-group { flex: 1; margin-bottom: 2.5rem; }
.custom-form input, .custom-form textarea {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--card-border);
    color: var(--text-main); padding: 15px 0; font-size: 1rem; font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease; cursor: none;
}
.custom-form input:focus, .custom-form textarea:focus { outline: none; border-bottom-color: var(--accent); }
.custom-form textarea { resize: vertical; min-height: 100px; }
.form-submit-btn { margin: 0 auto; display: block; margin-top: 3rem; }

/* --- MEGA FOOTER --- */
.mega-footer { padding: 80px 0 0 0; overflow: hidden; position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-col h4 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li, .footer-col p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.footer-social-pills { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-social-pills a {
    padding: 8px 24px; border: 1px solid var(--card-border); border-radius: 50px;
    color: var(--text-main); text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; cursor: none;
}
.footer-social-pills a:hover { border-color: var(--accent); background: var(--accent-glow); }
.footer-bottom-bar { text-align: center; padding-top: 2rem; position: relative; }
.footer-bottom-bar p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; position: relative; z-index: 2;}
.footer-massive-logo {
    font-size: clamp(2rem, 11vw, 15rem); line-height: 0.8; color: var(--text-main);
    opacity: 0.08; letter-spacing: -2px; margin-bottom: -10px; white-space: nowrap; font-family: 'Syne', sans-serif;
    display: block; width: 100%; overflow: hidden; text-align: center;
}

/* --- ANIMATION UTILITY CLASSES --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.is-visible { opacity: 1; transform: translateY(0); }
.hover-underline { position: relative; cursor: none;}
.hover-underline::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -2px; left: 0; background-color: currentColor; transition: width 0.3s ease; }
.hover-underline:hover::after { width: 100%; }

/* 🔥 THE BULLETPROOF MOBILE LAYOUT & CENTERING 🔥 */
@media (max-width: 900px) {
    /* Hide Desktop Elements */
    .nav-links, .desktop-only { display: none; }
    
    /* Show Hamburger */
    .hamburger { display: flex; }
    
    /* Navbar Adjustment */
    .navbar { padding: 1rem 5%; }
    .nav-logo { font-size: 1.1rem; letter-spacing: -0.5px; }
    .nav-actions { gap: 1rem; }
    .theme-btn { width: 32px; height: 32px; font-size: 0.8rem; }
    
    /* Hero Text Mobile Override */
    .huge-text { 
        font-size: 7vw; /* Math ensures 10 letters fit perfectly without word breaks */
        letter-spacing: 0px; 
        padding: 0 10px; 
        white-space: nowrap;
        text-align: center; 
    }

    /* ABOUT SECTION CENTERING */
    .about-content p { text-align: center; }

    /* ACCORDION MOBILE TWEAKS */
    .accordion { 
        padding: 0 1.5rem; 
    }
    .accordion-header {
        padding: 1.5rem 0; 
    }
    .accordion-header h3 { 
        font-size: 1.15rem; 
        text-align: left; 
    }
    .accordion-content { 
        padding: 0 0 1.5rem 10px; 
        text-align: left; 
    }

    /* Projects Adjustments */
    .proj-layout { flex-direction: column; justify-content: flex-end; padding-top: 150px; }
    .proj-info-wrapper { max-width: 100%; text-align: center; }
    .proj-tags { justify-content: center; }
    .proj-action-btns { justify-content: center; }
    .proj-thumbnails { flex-direction: row; width: 100%; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
    .thumb-card { min-width: 250px; scroll-snap-align: center; }
    .thumb-card.active { transform: translateY(-10px) scale(1.05); }
    
    /* CONTACT SECTION CENTERING FIX */
    .contact-top-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .contact-right { grid-template-columns: 1fr; gap: 2rem; } 
    .info-block { display: flex; flex-direction: column; align-items: center; } 
    .social-links-small { align-items: center; }
    
    .input-row { flex-direction: column; gap: 0; }
    .form-overlap-card { padding: 3rem 5%; width: 95%; margin-top: -100px; text-align: center; }
    
    /* FOOTER CENTERING FIX */
    .footer-col { text-align: center; }
    .footer-social-pills { align-items: center; }

    /* Fix Mobile Cursor Issues */
    .cursor-dot, .cursor-outline { display: none; }
    * { cursor: auto !important; }
}

/* --- ANTIGRAVITY BACKGROUND & TYPEWRITER --- */
.antigravity-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -2; pointer-events: none; opacity: 0.8;
}

.char-span {
    opacity: 0; transform: translateY(10px); display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease; 
}

.char-span.revealed { opacity: 1; transform: translateY(0); }

/* 🔥 THE ACCENT-COLORED BLINKING CURSOR 🔥 */
.type-cursor {
    color: var(--accent); 
    font-weight: 800;
    display: inline-block;
    margin-left: 2px;
    opacity: 1;
}

.type-cursor.blinking {
    animation: blinkCursor 0.9s step-end infinite;
}

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

/* --- LINTER FIXES: EXTRACTED INLINE STYLES --- */
.bg-proj-1 { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=1920'); }
.bg-proj-2 { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1920'); }
.bg-proj-3 { background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=1920'); }
.bg-proj-4 { background-image: url('https://i.ibb.co/FqqrV4Nq/autohub.png'); }

.bg-thumb-1 { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=800'); }
.bg-thumb-2 { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=800'); }
.bg-thumb-3 { background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?q=80&w=800'); }
.bg-thumb-4 { background-image: url('https://i.ibb.co/FqqrV4Nq/autohub.png'); }

.hidden-btn { display: none; }
.map-iframe { border: 0; }
.footer-email-link { color: inherit; text-decoration: none; cursor: none; }