:root {
    --primary-color: #4183C4;
    /* ACGI Medium Blue */
    --secondary-color: #1B1C1D;
    /* ACGI Dark Grey/Black */
    --accent-color: #f4f1ea;
    /* Off-white/Cream */
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --bg-dark: #0f0f0f;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Scrollbar Styling - Hardened Visible */
::-webkit-scrollbar {
    width: 18px;
    height: 18px;
    display: block !important;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), #2d5a8a);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 140px;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.serif {
    font-family: 'Times New Roman', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 100px 0;
}

.underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    font-size: 1.2rem;
}

/* Only color spans inside headings/body, not UI components */
h1 span,
h2 span,
h3 span,
p span,
.hero-content span {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #336699;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-promo-glow {
    background: var(--primary-color);
    color: var(--white);
    animation: promo-glow 2s infinite;
    box-shadow: 0 0 10px rgba(65, 131, 196, 0.5);
    /* Moderated size based on user feedback (made slightly larger than previous fix) */
    padding: 0.15rem 0.45rem;
    font-size: 0.52rem;
    min-width: 40px;
    line-height: 1.1;
    transform: scale(0.92);
    transition: all 0.3s ease;
}

/* Safety space to protect Services link */
.logo .btn-promo-glow {
    margin-right: 1.0rem !important;
}

.btn-promo-glow:hover {
    background: #336699;
    color: var(--white) !important;
    transform: scale(1.0) translateY(-1px);
}

@keyframes promo-glow {
    0% {
        transform: scale(0.92);
        box-shadow: 0 0 5px rgba(65, 131, 196, 0.4);
    }

    50% {
        transform: scale(0.98);
        box-shadow: 0 0 15px rgba(65, 131, 196, 0.6);
    }

    100% {
        transform: scale(0.92);
        box-shadow: 0 0 5px rgba(65, 131, 196, 0.4);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important; /* Critical for tooltips */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 120px;
    max-width: 100%;
    padding: 40px 0.5rem 20px 0.5rem;
    overflow: visible !important; /* Critical for tooltips */
}

/* Old promo links removed */
.promo-link-small {
    display: none !important;
}

/* Hamburger Styles - Base (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation States */
.hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    /* Force transparent */
}

.logo img {
    height: 48px;
    /* Reduced from 60px/110px for better fit */
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.2rem;
    margin-left: 1rem;
    overflow: visible !important; /* Critical for tooltips */
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1100;
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
}

.dropdown-menu a {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    color: var(--secondary-color) !important;
    font-weight: 600 !important;
}

.dropdown-menu a:hover {
    background: rgba(65, 131, 196, 0.08);
    color: var(--primary-color) !important;
}

.nav-links .btn {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn:hover {
    color: var(--white);
    background: #336699;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/acgi_hero_kitchen.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 150px; /* Fully push content down to clear the blurred header */
}

.hero-luxury {
    min-height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/acgi_hero_kitchen.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 100px;
}

.luxury-gold {
    color: var(--primary-color); /* ACGI Blue */
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.blog-hero {
    height: 45vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 10, 30, 0.75), rgba(0, 10, 30, 0.75)), url('https://res.cloudinary.com/dtia6nez1/image/upload/v1773285595/acgi_website/QUESTIONABLE_PIC_FILES/project_kitchen_1766104492989.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    padding-top: 150px; /* Standardize clearance */
}

.blog-hero .hero-content {
    text-align: center; /* Center for the user's requested 'X' position */
    margin-top: 20px;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
}

.hero-content p {
    font-size: 1.25rem;
    margin: 1.5rem 0 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Services */
.section-header p {
    text-align: center;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--accent-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Projects */
.projects {
    background: var(--secondary-color);
    color: var(--white);
}

.projects .section-header h2 {
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
}

.project-item.active {
    opacity: 1;
    transform: scale(1);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 60%, transparent);
    transition: var(--transition);
}

.project-info h3 {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0.25rem 0 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.project-info p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff !important;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.project-item:hover img {
    transform: scale(1.08);
}

.project-item:hover .project-info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 70%, transparent);
}

/* Tooltip CSS for Promo Button */
.has-tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 280px;
    background-color: #0f172a; /* Denser background for readability */
    color: #ffffff !important;
    text-align: center;
    border-radius: 10px;
    padding: 12px 18px;
    position: absolute;
    z-index: 2147483647 !important; /* Maximum possible z-index */
    top: 115%; 
    left: 50%;
    margin-left: -140px;
    opacity: 0;
    transition: all 0.25s ease-out;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: none;
    pointer-events: none; /* Prevent tooltip itself from catching mouse */
    white-space: normal;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Arrow points up from the top of the tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--secondary-color) transparent;
}

/* Hover Visibility Trigger */
.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Invisible bridge to keep tooltip open when moving mouse between button and tooltip */
.has-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40px; /* Slightly taller bridge for top: 110% placement */
    display: none;
    z-index: 10004;
}

.has-tooltip:hover::after {
    display: block !important;
}

/* Force tooltip visibility on hover */
.has-tooltip:hover > .tooltip-text {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    z-index: 200000 !important; /* Absolute top-most */
    pointer-events: auto !important;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Arrow points down from the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--secondary-color) transparent transparent transparent;
}

/* Specific override for Promo Tooltip to be BELOW and Wider */
.btn-promo-glow .tooltip-text {
    top: 125%; /* Lowered to clear the button glow better */
    bottom: auto;
    width: 320px;
    margin-left: -160px;
    text-align: left;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-promo-glow .tooltip-text::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent rgba(15, 23, 42, 0.98) transparent;
}

/* Tooltip Interior Elements */
.promo-tooltip-header {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.promo-tooltip-text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.mini-promo-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.mini-promo-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    font-size: 0.8rem;
    outline: none;
}

.mini-promo-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.mini-promo-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
}

.mini-promo-form button:hover {
    background: #336699;
}

.auth-notice {
    font-size: 0.7rem;
    color: #94a3b8;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* Promo Button Glow Effect */
.btn-promo-glow {
    position: relative;
    overflow: visible;
    /* Ensure tooltip and glow are visible */
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-promo-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(65, 131, 196, 0.6), 0 0 30px rgba(65, 131, 196, 0.4);
    border-color: rgba(255, 255, 255, 0.8) !important;
}

.btn-promo-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4183C4, #64b5f6, #4183C4);
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-promo-glow:hover::before {
    opacity: 0.3;
}


.has-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    color: #ffffff !important;
}

/* Before/After Slider */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 4rem auto;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-slider .ba-before {
    z-index: 1;
    position: relative;
}

.ba-slider .ba-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 3px solid var(--white);
}

.ba-slider .ba-after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    display: block;
}

.ba-slider .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 3;
    pointer-events: none;
}

.ba-slider .slider-handle::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    appearance: none;
    z-index: 4;
    cursor: ew-resize;
    outline: none;
}

.ba-slider .label {
    position: absolute;
    bottom: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
}

.ba-slider .label-before {
    left: 20px;
}

.ba-slider .label-after {
    right: 20px;
}

/* Service Tag Explorer */
.service-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 3rem;
}

.service-tag-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-tag-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(65, 131, 196, 0.3);
}


/* ===== BEFORE & AFTER SHOWCASE SECTION ===== */
.ba-showcase {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .ba-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.ba-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-5px);
}

.ba-label-top {
    padding: 15px 20px;
    background: #252525;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-slider-wrap {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-img-before {
    z-index: 2;
    border-right: 2px solid var(--white);
}

.ba-img-after {
    z-index: 1;
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--white);
    z-index: 3;
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--white);
}

.ba-pill {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 4;
}

.ba-pill-left {
    left: 20px;
}

.ba-pill-right {
    right: 20px;
}

.ba-card-info {
    padding: 20px;
}

.ba-card-info p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Spotlight Style for single images */
.ba-spotlight-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.ba-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
}

.ba-result-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #4caf50;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Responsive adjustment for desktop */
@media (min-width: 1200px) {

    .ba-slider-wrap,
    .ba-spotlight-img {
        height: 400px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    scroll-margin-top: 140px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--slate-300);
}

.badge-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge.veteran {
    border-color: var(--primary-color);
    background: rgba(191, 155, 95, 0.1);
}

.badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.badge-container a:hover .badge {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
}

/* Footer */
.footer {
    scroll-margin-top: 140px;
    background: #0f0f0f;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Old promo badge removed */
.promo-badge {
    display: none !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Icons Fallback */
.fas {
    margin-right: 8px;
}

/* About Image */
.about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Footer Icons */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estimate Section */
.estimate {
    background: var(--secondary-color);
    color: var(--white);
    scroll-margin-top: 100px;
}

.estimate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.estimate-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-benefits {
    list-style: none;
    margin-top: 2rem;
}

.form-benefits li {
    margin-bottom: 1rem;
    font-weight: 500;
}

.estimate-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--secondary-color);
    color: var(--white);
}

.full-width {
    width: 100%;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    text-align: center;
}

.submit-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#form-status {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
}

#form-status.success {
    color: #4CAF50;
}

#form-status.error {
    color: #F44336;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Shared Sidebar Layout (Forms & FAQ) --- */
.sidebar-layout,
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-content,
.faq-container {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.sidebar-box,
.faq-sidebar {
    position: sticky;
    top: 120px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.sidebar-title,
.faq-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-list,
.faq-nav-list {
    list-style: none;
}

.sidebar-list li,
.faq-nav-list li {
    margin-bottom: 1rem;
}

.sidebar-link,
.faq-nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.sidebar-link:hover,
.sidebar-link.active,
.faq-nav-link:hover,
.faq-nav-link.active {
    color: var(--primary-color);
    padding-left: 5px;
}

@media (max-width: 992px) {

    .sidebar-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-box,
    .faq-sidebar {
        display: none;
    }
}


.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-question.active {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    background: var(--accent-color);
    border-radius: 0 0 8px 8px;
}

.faq-answer.active {
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

/* Dropdown Navigation */
/* DROPDOWN UPDATE V3: RIGHT-ALIGNED & BRIDGE FOR CLICKABILITY */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    display: none;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem;
    z-index: 1005;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    top: 100%;
    right: 0;
    /* Menu expands to the LEFT of the button */
    left: auto;
    padding: 10px 0;
    margin-top: 2px;
    border-top: 3px solid var(--primary-color);
}

/* HOVER BRIDGE: Prevents dropdown from closing when moving mouse from logo to menu */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: var(--secondary-color) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color) !important;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-content a {
    color: var(--secondary-color);
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-content a i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgba(65, 131, 196, 0.08);
    color: var(--primary-color);
    padding-left: 1.2rem;
}

.nav-item-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Testimonial Carousel */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-slide .service-card {
    opacity: 1;
    transform: none;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
        flex: 0 0 50%;
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
        /* Above mobile menu overlay */
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    .nav-links.active a {
        font-size: 1.5rem;
    }

    .nav-links.active .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0.5rem;
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-links.active .dropdown:hover .dropdown-content,
    .nav-links.active .dropdown.active .dropdown-content {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .about-grid,
    .estimate-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .estimate-info h2 {
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .tooltip-text {
        width: 200px;
        margin-left: -100px;
        font-size: 0.75rem;
    }

}

/* Social Media Brand Colors */
.social-cluster .fa-yelp,
.footer-brand .fa-yelp {
    color: #D32323 !important;
}

.social-cluster .fa-facebook,
.social-cluster .fa-facebook-f,
.footer-brand .fa-facebook {
    color: #1877F2 !important;
}

.social-cluster .fa-houzz,
.footer-brand .fa-houzz {
    color: #7AC142 !important;
}

.social-cluster .fa-nextdoor,
.social-cluster .fa-house-user,
.footer-brand .fa-nextdoor {
    color: #00B246 !important;
}

.footer-social-img {
    width: 1.1em;
    height: 1.1em;
    vertical-align: middle;
    margin-right: 8px;
    object-fit: contain;
    filter: brightness(1.8) saturate(1.2);
}

.nav-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Added for dropdown positioning */
}

/* Header Contact Hover Styles */
.header-contact-wrapper {
    position: relative;
    cursor: pointer;
    padding: 2px 0;
    margin-top: 2px;
}

.header-contact-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
    /* Slightly larger than text */
    transition: var(--transition);
}

.header-contact-wrapper:hover .header-contact-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.header-contact-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border-top: 3px solid var(--primary-color);
}

.header-contact-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-color);
}

/* Invisible bridge to prevent hover loss */
.header-contact-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 15px;
    /* Bridge gap */
    background: transparent;
}

.header-contact-wrapper:hover .header-contact-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.contact-email {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.contact-email:hover {
    color: var(--primary-color);
}

.social-cluster .fa-certificate {
    color: #005691 !important;
}

/* BBB Blue */
.social-cluster .fa-map-location-dot {
    color: #00B246 !important;
}

/* Nextdoor map icon */

/* Veteran HQ Section */
.veteran-hq {
    background: linear-gradient(135deg, #1a1c1e 0%, #2c2e30 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.veteran-hq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/veteran_logo.png') no-repeat center center;
    background-size: 40%;
    opacity: 0.05;
    pointer-events: none;
}

.veteran-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(65, 131, 196, 0.3);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.veteran-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(65, 131, 196, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.vtas-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.vtas-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(65, 131, 196, 0.3));
    transition: transform 0.3s ease;
}

.vtas-logo:hover {
    transform: scale(1.05);
}

.veteran-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.veteran-questions-list {
    list-style: none;
    margin-top: 1.5rem;
}

.veteran-questions-list li {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.veteran-questions-list .q-num {
    color: var(--primary-color);
    font-weight: 700;
    min-width: 25px;
}

.veteran-cta-large {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .veteran-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .veteran-card {
        padding: 2rem 1.5rem;
    }

    .vtas-logo {
        height: 80px;
    }
}




/* Floating Labels for Luxury Form */
.floating-label-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
    color: #888;
    background: transparent;
}

/* Float label when focused or has value (placeholder not shown) */
.floating-label-group input:focus~.floating-label,
.floating-label-group input:not(:placeholder-shown)~.floating-label,
.floating-label-group textarea:focus~.floating-label,
.floating-label-group textarea:not(:placeholder-shown)~.floating-label,
.floating-label-group select:focus~.floating-label,
.floating-label-group select:valid~.floating-label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: #f8fafc;
    /* Match input background */
    padding: 0 0.4rem;
    font-weight: 600;
}

/* Adjust select to ensure label doesn't overlap text when filled */
.floating-label-group select {
    padding-top: 0.5rem;
    /* Give space if needed, though usually standard height is fine */
}


/* --- Form Verification (Anti-Spam) --- */
.form-verification-group {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.checkbox-verification {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-verification input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-verification label {
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Honeypot - Visually Hidden */
.website-honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}


/* Logo Fix */
.logo img {
    height: 60px;
    /* Standardize height */
    width: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Veteran HQ Link Hover */
.veteran-link-wrapper {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.veteran-link-wrapper:hover {
    transform: scale(1.02);
}

.veteran-link-wrapper h2 {
    cursor: pointer;
}


/* Fix Logo/Promo Button Spacing & Z-Index */
.logo {
    position: relative;
    z-index: 1010;
    /* Ensure on top of nav links */
    margin-right: 0.5rem; /* Reduced to pull buttons closer */
}

/* Ensure Tooltip is visible */
.has-tooltip .tooltip-text {
    z-index: 1011;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .logo {
        margin-right: 1rem;
    }

    .logo img {
        height: 40px;
        /* Smaller on tablet */
    }

    .nav {
        padding: 8px 2%;
    }

    .btn-promo-glow {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

/* Project Spotlight Viewer */
.spotlight-viewer {
    max-width: 1000px;
    margin: 3rem auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.spotlight-main {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: black;
}

.spotlight-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    pointer-events: none;
}

.spotlight-thumbnails {
    display: flex;
    gap: 10px;
    padding: 1rem;
    background: #222;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #333;
}

.spotlight-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.spotlight-thumbnails::-webkit-scrollbar-track {
    background: #333;
}

.spotlight-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.spotlight-thumbnails img {
    height: 80px;
    width: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.spotlight-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.spotlight-thumbnails img.active-thumb {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(65, 131, 196, 0.4);
}

/* Premium Blog Filters */
.blog-filters-bottom {
    padding: 3rem 0;
}

.filter-controls-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.search-box-premium {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box-premium input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.search-box-premium input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(65, 131, 196, 0.2);
}

.search-icon-premium {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-filters-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.filter-btn-premium {
    padding: 0.6rem 1.2rem;
    border: none;
    background: white;
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.filter-btn-premium.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(65, 131, 196, 0.3);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn-premium {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}
/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* MOBILE LOGO & REDESIGN STABILITY FIX */
@media (max-width: 768px) {
    .logo img {
        height: 38px !important;
        width: auto !important;
        max-width: 150px !important;
        display: block !important;
    }
    .heritage-gallery-row {
        grid-template-columns: 1fr !important;
    }
    .heritage-img-card {
        height: 160px !important;
    }
    .story-grid {
        grid-template-columns: 1fr !important;
    }
    .story-image {
        transform: none !important;
        order: -1;
    }
    .project-item {
        height: 280px !important;
    }
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* Commercial Projects Consolidated Block */
.commercial-projects {
    background: #0a0a0a;
    color: white;
}
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.commercial-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* MOBILE HEADER & LOGO HARDENING */
@media (max-width: 768px) {
    .header {
        height: 80px !important;
        padding: 0 !important;
    }
    .nav {
        min-height: 80px !important;
        padding: 5px 15px !important;
    }
    .logo img {
        height: 35px !important;
        width: auto !important;
    }
    .hero {
        padding-top: 80px !important;
    }
    .heritage-redesign-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* MOBILE HEADER & LOGO HARDENING */
@media (max-width: 768px) {
    .header {
        height: auto !important;
        position: fixed !important;
    }
    .nav {
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 5px !important;
        min-height: auto !important;
    }
    .logo {
        margin-bottom: 5px !important;
    }
    .logo img {
        height: 30px !important;
        width: auto !important;
    }
    .header-action-buttons {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        margin-bottom: 8px !important;
    }
    .header-action-buttons .btn {
        min-width: 70px !important;
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    .nav-links {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 5px !important;
    }
    .nav-links a {
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
    .hero {
        padding-top: 140px !important;
    }
    .heritage-redesign-grid {
        grid-template-columns: 1fr !important;
    }
}

/* MOBILE HEADER & LOGO HARDENING */
@media (max-width: 768px) {
    .header {
        height: auto !important;
        position: fixed !important;
    }
    .nav {
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px 5px !important;
        min-height: auto !important;
    }
    .logo {
        margin-bottom: 5px !important;
    }
    .logo img {
        height: 30px !important;
        width: auto !important;
    }
    .header-action-buttons {
        width: 100% !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        margin-bottom: 8px !important;
    }
    .header-action-buttons .btn {
        min-width: 70px !important;
        font-size: 0.65rem !important;
        padding: 0.2rem 0.5rem !important;
    }
    .nav-links {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 5px !important;
    }
    .nav-links a {
        font-size: 0.8rem !important;
        margin: 0 !important;
    }
    .hero {
        padding-top: 140px !important;
    }
    .heritage-redesign-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- RETURN HOME MINI LOGO --- */
.return-home-container {
    text-align: right;
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding-right: 5%;
    position: relative;
    z-index: 100;
}

.return-home-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.return-home-logo {
    width: 35px !important;
    height: auto !important;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.return-home-link:hover .return-home-logo {
    opacity: 1;
    transform: scale(1.1);
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* --- FUTURISTIC GLASSMORPHISM GALLERY --- */
.futuristic-gallery {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgb(18, 30, 48) 0%, rgb(0, 0, 0) 90%);
    padding: 100px 0;
    overflow: hidden;
}

/* Neon grid background effect */
.futuristic-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(0, 150, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.glass-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(20, 35, 50, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 40%, rgba(0, 150, 255, 0.05) 100%);
    z-index: 10;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 15px 45px rgba(0, 150, 255, 0.2), 0 0 20px rgba(0, 150, 255, 0.4) inset;
}

.glass-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.glass-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.glass-card:hover .glass-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2);
}

.glass-content {
    padding: 1.5rem;
    position: relative;
    z-index: 15;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.9) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.glass-content h3 {
    margin: 0;
    color: #e0f2ff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

    /* HARDENED TOOLTIP CSS */
    .has-tooltip:hover .tooltip-text {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    .has-tooltip .tooltip-text {
        pointer-events: none;
    }
    
    /* HARDENED TOOLTIP CSS */
    .has-tooltip:hover .tooltip-text {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    .has-tooltip .tooltip-text {
        pointer-events: none;
    }
    
    /* HARDENED TOOLTIP CSS */
    .has-tooltip:hover .tooltip-text {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    .has-tooltip .tooltip-text {
        pointer-events: none;
    }
    