html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #101720;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #101720 0%, #0d0f17 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
}

.loader-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    position: relative;
    opacity: 0.5;
}

.loader-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: drop-shadow(-2px 0 #ff00ff);
    animation: glitch-shift-left 1.5s ease-in-out infinite;
    opacity: 0.8;
}

.loader-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: drop-shadow(2px 0 #00ffff);
    animation: glitch-shift-right 1.5s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes glitch-shift-left {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    25%, 75% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0);
        opacity: 0;
    }
}

@keyframes glitch-shift-right {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    25%, 75% {
        transform: translateX(3px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(16, 23, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.menu-visible {
    opacity: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-svg {
    filter: drop-shadow(0 0 8px #00ffff);
    transform: rotate(10deg) scale(1.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
    color: #00ffff;
    transform: scale(1.2);
}

.nav-link.active .nav-icon {
    color: #00ffff;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(16, 23, 32, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: flex;
        padding: 20px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

    .nav-link.active {
        background-color: rgba(0, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 70px;
}

.hero-container {
    text-align: center;
    position: relative;
}

/* About Section */
.about-section {
    min-height: auto;
    padding: 100px 0;
    background: linear-gradient(180deg, #101720 0%, #0d1117 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    will-change: transform;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

.about-content {
    margin-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 25px;
}

.experience-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: #00ffff;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.designer-info {
    display: flex;
    justify-content: center;
}

.designer-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
}

.designer-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 255, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.designer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.specialty {
    color: #00ffff;
    font-size: 14px;
    margin-bottom: 30px !important;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tag {
    background-color: rgba(0, 255, 255, 0.15);
    color: #00ffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    font-weight: 500;
}

.about-mission {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 60px;
    margin: 80px 0;
    text-align: center;
}

.mission-content h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #cccccc;
    font-size: 14px;
    background: linear-gradient(180deg, #0d1117 0%, #101720 100%);
}

.footer p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 15px;
        font-size: 12px;
    }
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, #101720 100%);
    overflow: hidden;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients-container h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.clients-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #101720 0%, transparent 10%, transparent 90%, #101720 100%);
    padding: 40px 0;
}

.clients-scroll {
    display: flex;
    gap: 40px;
    animation: scroll-right 40s linear infinite;
    will-change: transform;
}

.client-logo {
    min-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .clients-container h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .clients-scroll {
        gap: 30px;
        animation: scroll-right 28s linear infinite;
    }

    .client-logo {
        min-width: 160px;
        height: 100px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #101720 0%, #0d1117 100%);
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.submit-btn {
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 100%);
    color: #101720;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    border-left: 3px solid #00ffff;
    padding-left: 15px;
}

.info-item strong {
    color: #00ffff;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background-color: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.8);
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 768px) {
    .contact-header {
        margin-bottom: 60px;
        padding-top: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form,
    .contact-info {
        padding: 30px;
    }

    .social-icons-footer {
        justify-content: flex-start;
        margin-top: 30px;
        padding-top: 30px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 60px;
    }

    .about-container {
        padding: 40px 20px;
    }

    .about-header {
        margin-bottom: 60px;
        padding-top: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .experience-highlight {
        grid-template-columns: 1fr;
    }

    .about-mission {
        padding: 40px 20px;
        margin: 60px 0;
    }

    .mission-content h2 {
        font-size: 28px;
    }

    .mission-content p {
        font-size: 16px;
    }
}

.glitch-text {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    line-height: 1;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-animation-1 2.5s infinite;
    color: #00ffff;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
}

.glitch-text::after {
    animation: glitch-animation-2 2.5s infinite;
    color: #ff00ff;
    z-index: -2;
    clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
}

@keyframes glitch-animation-1 {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(-2px, -2px);
    }
    60% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(2px, 2px);
    }
    80% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(2px, -2px);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
        transform: translate(0);
    }
}

@keyframes glitch-animation-2 {
    0% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    20% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(2px, -2px);
    }
    40% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(2px, 2px);
    }
    60% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(-2px, -2px);
    }
    80% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(-2px, 2px);
    }
    100% {
        clip-path: polygon(0 58%, 100% 45%, 100% 100%, 0 100%);
        transform: translate(0);
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 60px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 40px;
        letter-spacing: 2px;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    background: linear-gradient(135deg, #101720 0%, #1a1f2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.portfolio-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: glitch-animation-1 0.3s infinite;
    position: relative;
    display: inline-block;
}

.portfolio-hero h1::before {
    content: attr(data-text);
    position: absolute;
    left: -3px;
    top: 0;
    color: #ff00ff;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 58%);
    animation: glitch-animation-2 0.3s infinite;
}

.portfolio-hero h1::after {
    content: attr(data-text);
    position: absolute;
    left: 3px;
    top: 0;
    color: #00ffff;
    clip-path: polygon(0 60%, 100% 50%, 100% 100%, 0 100%);
    animation: glitch-animation-1 0.2s infinite;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.portfolio-section {
    background: linear-gradient(180deg, #101720 0%, #0d1117 100%);
    padding: 100px 20px;
    position: relative;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeInUp 0.8s ease;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.2));
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.portfolio-overlay p {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 300;
}

.portfolio-cta {
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 50%, #ff00ff 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #101720;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(16, 23, 32, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #101720;
    color: #00ffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #101720;
}

.cta-button:hover {
    background: transparent;
    color: #101720;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 23, 32, 0.3);
}

/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 100px 20px 80px;
        margin-top: 60px;
    }

    .portfolio-hero h1 {
        font-size: 2.5rem;
    }

    .portfolio-subtitle {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-image {
        height: 300px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        padding: 80px 15px 60px;
        margin-top: 50px;
    }

    .portfolio-hero h1 {
        font-size: 1.8rem;
    }

    .portfolio-section {
        padding: 60px 15px;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .portfolio-image {
        height: 250px;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }

    .portfolio-overlay p {
        font-size: 0.8rem;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
