/* Root Variables */
:root {
    --background: #0A1628;
    --foreground: #00C0FF;
    --card: #0D2137;
    --primary: #00C0FF;
    --primary-foreground: #0A1628;
    --secondary: #1E5F73;
    --muted: #1A3A4D;
    --border: rgba(0, 192, 255, 0.2);
    --input-background: #0D2137;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 192, 255, 0.5), 0 0 20px rgba(0, 192, 255, 0.3), 0 0 30px rgba(0, 192, 255, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 192, 255, 0.8), 0 0 30px rgba(0, 192, 255, 0.5), 0 0 40px rgba(0, 192, 255, 0.3);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 192, 255, 0.6), 0 0 50px rgba(0, 192, 255, 0.3);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Text Effects */
.text-gradient {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-glow {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 192, 255, 0.5)) drop-shadow(0 0 20px rgba(0, 192, 255, 0.3));
}

.box-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.static-glow {
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.border-glow {
    border-color: rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
	
    font-weight: bold;
    background: linear-gradient(135deg, #00c8ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.logo-text {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-link:hover {
    animation: glow 3s ease-in-out infinite;
	font-weight: bold;
}

.desktop-only {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(13, 33, 55, 0.95);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-primary:hover {
    background: rgba(0, 192, 255, 0.9);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(0, 192, 255, 0.5);
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 192, 255, 0.1);
    -webkit-text-fill-color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /*
	background-image: url('https://images.unsplash.com/photo-1745917784526-fbad88531db1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxrZWxwJTIwZm9yZXN0JTIwdW5kZXJ3YXRlcnxlbnwxfHx8fDE3NjEzODIwNDh8MA&ixlib=rb-4.1.0&q=80&w=1080');
    */
	background-image: url("../images/background.png");
	background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.5), var(--background));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-title span {
    display: inline-block;
    margin: 0 0.25rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(0, 192, 255, 0.5);
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--primary);
    border-radius: 0.5rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Sections */
.section {
    padding: 6rem 1rem;
}

.section-alt {
    background: rgba(13, 33, 55, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 42rem;
    margin: 0 auto;
}

/* Cards */
.cards-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.card-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.card-title {
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-description {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Story Section */
.story-section {
    background: rgba(13, 33, 55, 0.5);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.story-content {
    display: grid;
    gap: 2rem;
}

.story-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.story-description {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
}

/* Services */
.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.service-card .card-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
}

.service-card .card-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.services-cta {
    text-align: center;
}

.services-cta-text {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    transition: all 0.3s;
}

.portfolio-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.portfolio-image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(10, 22, 40, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    margin-bottom: 0.5rem;
}

.portfolio-title {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: rgba(13, 33, 55, 0.5);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.info-title {
    margin-bottom: 1rem;
}

.process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.process-number {
    font-weight: 500;
}

.process-text {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.expertise-label {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-bar {
    height: 0.5rem;
    background: var(--muted);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 1rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-subtitle {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: var(--input-background);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: inherit;
    font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 192, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: none;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--card);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.contact-label {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 500;
}

.business-hours {
    background: rgba(13, 33, 55, 0.5);
    border: 1px solid rgba(0, 192, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 192, 255, 0.3), inset 0 0 10px rgba(0, 192, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.hours-title {
    margin-bottom: 0.75rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
.footer {
    background: rgba(13, 33, 55, 0.5);
    border-top: 1px solid var(--border);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-title {
    margin-bottom: 1rem;
}

.footer-links,
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover {
    animation: glow 3s ease-in-out infinite;
}

.footer-list li {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--muted);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 192, 255, 0.4), 0 0 30px rgba(0, 192, 255, 0.2), 0 0 45px rgba(0, 149, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    animation: pulseGlow 3s ease-in-out infinite;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    background: linear-gradient(135deg, #00C0FF 0%, #0095FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .desktop-only {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
