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

:root {
    --primary: #0070f3; /* Vercel Blue */
    --primary-hover: #0051b3;
    --bg-deep: #000000;
    --bg-surface: rgba(255, 255, 255, 0.02);
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-main: #ededed;
    --text-dim: #888888;
    --border: rgba(255, 255, 255, 0.1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.2s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { 
    font-family: var(--font-sans); 
    background-color: var(--bg-deep); 
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: #ffffff; }

/* Clean Background */
.bg-glow-1, .bg-glow-2, .noise-overlay, .phone-glow { display: none; }

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 6%; position: fixed; width: 100%; top: 0; z-index: 1000;
    background: transparent; 
    border-bottom: 1px solid transparent; 
    transition: all 0.3s ease-in-out;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 6%;
}

.logo-group { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; }
.logo-group img { height: 70px; border-radius: 4px; filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(180deg) brightness(1.2); }
.logo-text { display: flex; flex-direction: column; }
.logo-text-main { font-weight: 800; font-size: 1.4rem; color: #ffffff; text-shadow: none; font-size: 1.2rem; letter-spacing: -0.02em; }
.logo-text-sub { font-size: 0.75rem; color: #ffffff; letter-spacing: 0.05em; font-weight: 500; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { 
    text-decoration: none; color: var(--text-dim); font-weight: 500; font-size: 0.9rem; 
    transition: var(--transition); padding: 5px 0;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: #00e5ff !important; font-weight: 800; }

.nav-btn {
    background: #ffffff; color: #000000; border: 1px solid #ffffff;
    padding: 8px 16px; border-radius: 6px; font-weight: 500; font-size: 0.85rem;
    text-decoration: none; transition: var(--transition);
}
.nav-btn:hover { background: transparent; color: #ffffff; }

/* Buttons */
.btn-primary {
    background: var(--primary); color: white; padding: 12px 24px; border-radius: 6px; font-weight: 500;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition); border: 1px solid var(--primary); font-size: 0.95rem; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

.btn-outline {
    background: transparent; color: #ffffff; padding: 12px 24px;
    border-radius: 6px; font-weight: 500; text-decoration: none; display: inline-flex;
    align-items: center; gap: 8px; transition: var(--transition);
    border: 1px solid var(--border); font-size: 0.95rem;
}
.btn-outline:hover { background: var(--bg-surface); border-color: #666; }

.badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #222; color: #ededed;
    padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 500;
    border: 1px solid #444; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Layout Blocks */
section { padding: 80px 0; position: relative; }
.container { max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 24px; box-sizing: border-box; }
.text-center { text-align: center; }

.hero {
    min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding-top: 100px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; color: var(--text-dim); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; }

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

.glass-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 30px; border-radius: 8px;
    transition: var(--transition); display: flex; flex-direction: column; }
.glass-card:hover { border-color: #666; }

.icon-wrap {
    width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    background: #222; color: #ededed; border: 1px solid #333;
    font-size: 1.25rem; margin-bottom: 20px; transition: var(--transition);
}

.glass-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.glass-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }

/* Showcase / Mobile Page */
.showcase-mockup {
    width: 100%; border-radius: 8px; border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: var(--transition); display: block;
}

.app-row {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
    padding: 40px; margin-bottom: 30px;
}
@media(min-width: 900px) {
    .app-row { grid-template-columns: 1fr 1.5fr; align-items: center; }
    .app-row.reverse { grid-template-columns: 1.5fr 1fr; }
    .app-row.reverse .app-content { order: -1; }
}
.app-visual img { width: 100%; border-radius: 8px; display: block; margin: 0 auto; border: 1px solid var(--border); }
.app-content h2 { font-size: 2rem; margin-bottom: 12px; }
.app-content p { color: var(--text-dim); font-size: 1rem; margin-bottom: 24px; max-width: 500px; }
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--text-main); font-size: 0.95rem; }
.feature-list li i { color: var(--primary); width: 18px; }

/* Footer */
footer { margin-top: 50px; border-top: 1px solid var(--border); padding: 30px 6% 30px; background: #000; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-top: 0; }
.footer-desc { color: var(--text-dim); margin-top: 16px; max-width: 300px; font-size: 0.9rem; }
.footer-col h4 { font-size: 0.95rem; margin-bottom: 20px; color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-dim); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-col ul a:hover { color: white; }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--border); text-align: center; color: var(--text-dim); font-size: 0.85rem; }

/* Animations */
.reveal, .reveal-left, .reveal-right { opacity: 0; transform: translateY(20px); transition: 0.6s ease; }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translateY(0); }

/* Floating Actions */
.fab-whatsapp {
    position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
    background: #111; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); z-index: 100; text-decoration: none; font-size: 24px;
    transition: var(--transition);
}
.fab-whatsapp:hover { background: #222; border-color: #666; }

/* Mobile Nav Toggle */
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Responsive */
@media(max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media(max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 250px; height: 100vh;
        background: #111; border-left: 1px solid var(--border);
        flex-direction: column; padding: 80px 30px; transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .menu-toggle { display: block; z-index: 1001; }
    .nav-btn { display: none; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}
/* Horizontal Gallery */
.horizontal-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.horizontal-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
.gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    background: #000;
}
.gallery-item:hover {
    transform: scale(1.03);
    border-color: #666;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.gallery-item img {
    height: 350px;
    width: auto;
    display: block;
    object-fit: contain;
}
.gallery-item.pc img {
    height: auto;
    width: 600px;
}
.app-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 15px;
    object-fit: cover;
    background: #111;
    border: 1px solid var(--border);
}

/* Accordion Gallery */
.gallery-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, margin 0.6s ease;
    opacity: 0;
    margin-top: 0;
}
.gallery-accordion.expanded {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
}
.toggle-gallery-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.toggle-gallery-btn:hover {
    background: #222;
}
.toggle-gallery-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Marquee Auto-Scroll */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 40px;
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

/* Floating Hero Animation */
@keyframes float-hero {
    0% { transform: translateY(0px) scale(1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
    50% { transform: translateY(-20px) scale(1.02); box-shadow: 0 40px 80px rgba(0,112,243,0.2); }
    100% { transform: translateY(0px) scale(1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
}
.floating-hero {
    animation: float-hero 6s ease-in-out infinite;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

/* Premium Mobile App Card Layout */
.app-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.app-card:hover {
    border-color: rgba(0, 112, 243, 0.3);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: translateY(-4px);
}
.app-card-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.app-card-info {
    flex: 1;
}
.app-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed var(--border);
}
.app-card-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}
.app-card-feature i {
    color: #ffffff;
    width: 18px;
    height: 18px;
}
.app-card-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: nowrap;
    justify-content: center;
}
.app-card-actions > * {
    flex: 1;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}

/* Grid specific fixes for app-card */
.app-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 480px);
    justify-content: center;
    gap: 40px;
}

@keyframes searchReveal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes searchHide {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}
.app-grid-container .app-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.app-grid-container .app-card-actions {
    margin-top: auto;
    padding-top: 20px;
}

/* Global Responsive Overhaul & Footer Adjustments */
footer .logo-group img {
    filter: grayscale(100%) opacity(0.8);
}
footer .logo-text-main, footer .logo-text-sub {
    color: var(--text-dim) !important;
}

@media (max-width: 992px) {
    .app-grid-container {
        grid-template-columns: 1fr;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .hero h1 { font-size: 4rem; }
    .hero-visual { display: none; }
    .nav-search input { width: 140px !important; }
}

@media (max-width: 768px) {
    .app-card-actions {
        flex-wrap: wrap;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { padding-top: 120px; min-height: auto; }
    section { padding: 60px 0; }
    .container { padding: 0 20px; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .nav-btn { display: none; }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .app-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .app-card-features {
        grid-template-columns: 1fr 1fr;
    }
    .app-card-actions {
        justify-content: center;
    }
    .app-card {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
        padding: 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        grid-column: 1 !important;
    }
    .footer-col .logo-group {
        justify-content: center;
    }
    .footer-col div[style*="display: flex"] {
        justify-content: center;
    }
    .gallery-item img, .gallery-item.pc img {
        height: 200px; /* smaller images on mobile */
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .badge { font-size: 0.75rem; }
    .btn-primary { padding: 12px 20px; font-size: 0.9rem; }
    .gallery-item img, .gallery-item.pc img {
        height: 150px;
    }
    .app-logo {
        width: 60px;
        height: 60px;
    }
}









/* Premium Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay.active 
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}
.modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}
.modal-header h3 {
    font-size: 2rem;
    color: #fff;
}
/* Hide the old inline accordion galleries */
.gallery-accordion {
    display: none !important;
}

/* Modal Overrides for Carousel */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    z-index: 100;
}
.carousel-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}
.carousel-wrapper {
    gap: 15px;
}
body.no-scroll, html.no-scroll {
    overflow: hidden !important;
    }
.carousel-track img {
    height: 60vh;
    max-height: 600px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}
/* Fix Modal Scroll & Carousel */
body.no-scroll, html.no-scroll {
    overflow: hidden !important;
    
    touch-action: none;
}

#gallery-modal .marquee-container {
    animation: none !important;
}
#gallery-modal .marquee-track {
    animation: none !important;
    transform: none !important;
}
#gallery-modal .carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    border-radius: 12px;
}
#gallery-modal .carousel-container::-webkit-scrollbar {
    display: none;
}

#gallery-modal .marquee-track {
    display: flex;
    gap: 0;
}

#gallery-modal .gallery-item:hover {
    transform: none;
}
#gallery-modal .gallery-item img {
    height: 60vh;
    max-height: 500px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* FINAL PERFECT MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
body.no-scroll, html.no-scroll {
    overflow: hidden !important;
    touch-action: none;
}
.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 99999 !important; /* Force to be clickable */
}
.carousel-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}



/* Modern Toast Notification */
.toast-notification {
    position: fixed;
    top: -100px; bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(25, 25, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(0, 200, 255, 0.15);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.toast-notification.show {
    top: 120px;
    opacity: 1;
}




.btn-fb {
    background: linear-gradient(90deg, #1877F2, #0d47a1, #1877F2);
    background-size: 200% auto;
    transition: all 0.4s ease !important;
    border: none !important;
}
.btn-fb:hover {
    background-position: right center;
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.6) !important;
    transform: translateY(-2px) !important;
}
.btn-fb svg {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-fb:hover svg {
    transform: rotate(-15deg) scale(1.2);
}

#coming-soon-toast.show {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
}

.section-header { text-align: center; margin-bottom: 50px; }

.pc-adobe-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
.pc-adobe-card:hover .hover-bg {
    opacity: 0.8 !important;
}
.pc-adobe-card:hover .hover-gradient {
    opacity: 1 !important;
}