:root {
    --color-primary: #1F2833;
    --color-secondary: #3b599b;
    --color-dark: #1F2833;
    --color-darker: #C5C6C7;
    --color-accent: #01e6ea;
    --color-light: #1B2A6D;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #282d33 0%, #0f1829 50%, #1a2f3f 100%);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #282d33;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgb(1, 230, 234, 0.10);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.lightning-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.lightning-transition.active {
    opacity: 1;
    animation: lightningFlash 0.6s ease-in-out;
}

@keyframes lightningFlash {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
        filter: brightness(2);
    }

    50% {
        opacity: 0.8;
    }

    75% {
        opacity: 1;
        filter: brightness(1.5);
    }

    100% {
        opacity: 0;
    }
}

section {
    min-height: 100vh;
    padding: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-size: 100px 100px;
    animation: geometricMove 20s linear infinite;
}

@keyframes geometricMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, -100px 100px;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px), repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.03) 50px, rgba(255, 255, 255, 0.03) 51px);
    animation: gridRotate 30s linear infinite;
}

@keyframes gridRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(45, 212, 215, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: auto 0;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.word {
    display: inline-block;
    opacity: 0;
    animation: wordSlide 0.8s ease forwards;
    animation-delay: 0.2s;
    background: linear-gradient(90deg, #ffffff 0%, #2dd4d7 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100%;
}

@keyframes wordSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    animation: fadeIn 1s ease 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease 1s both;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 5px 20px #01e6ea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px #01e6ea;
    text-shadow: 0 0 10px #01e6ea;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px #01e6ea;
}

.btn-small {
    background-color: #01e6ea;
    padding: 10px 20px;
    font-size: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    animation: float 3s ease-in-out infinite;
}

.floating-card img {
    max-width: 100%;
    height: auto;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #fff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.skill-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #01e6ea;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #0091945d;
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgb(1, 230, 234);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
    text-shadow: 0 0 20px #01e6ea;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #01e6ea;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #01e6ea;
    border-color: var(--color-accent);
}

.profile-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.profile-icon img {
    max-width: 150px;
    height: auto;
}

.profile-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.profile-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgb(1, 230, 234);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(1, 230, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px #01e6ea;
    background: rgba(17, 252, 232, 0.05);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1) rotate(5deg);
}

.skill-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-accent);
    text-shadow: 0 0 10px #01e6ea;
    transition: text-shadow 0.4s ease;
}

.skill-card:hover h3 {
    text-shadow: 0 0 20px #01e6ea;
}

.skill-card ul {
    list-style: none;
}

.skill-card li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.skill-card li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.experience {
    color: #fff;
    padding: 3rem 0;
}

.exp-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 10px;
}

.exp-tab {
    background: transparent;
    border: 2px solid #01e6ea;
    color: #01e6ea;
    padding: .5rem 1.5rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: all .3s ease;
}

.exp-tab.active,
.exp-tab:hover {
    background: #01e6ea;
    color: #282d33;
}

.exp-content {
    position: relative;
    width: 100%;
    max-width: 70%;
    margin: 6rem auto;
}

.exp-timeline {
    display: none;
    position: relative;
    margin-left: 2rem;
    border-left: 2px solid #01e6ea;
    padding-left: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.exp-timeline.active {
    display: block;
}

.exp-item {
    margin-bottom: 5rem;
    position: relative;
}

.exp-item::before {
    content: "";
    position: absolute;
    left: -1.1rem;
    top: 0.3rem;
    width: .8rem;
    height: .8rem;
    background: #01e6ea;
    border-radius: 50%;
}

.exp-date {
    display: block;
    font-size: .9rem;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.exp-details h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.exp-details p {
    margin: .5rem 0 0;
    line-height: 1.5;
    color: #ccc;
}

.portfolio-filters {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    margin: 0 .5rem;
    padding: .6rem 1.2rem;
    border: 1px solid #01e6ea;
    background: transparent;
    color: #01e6ea;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all .3s ease;
}

.filter-btn:hover {
    background: #01e6ea;
    color: #fff;
    box-shadow: 0 4px 15px rgba(1, 230, 234, 0.5);
}

.filter-btn.active {
    background: #01e6ea;
    color: #fff;
    box-shadow: 0 4px 20px rgba(1, 230, 234, 0.6);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(1, 230, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(1, 230, 234, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-hover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: #01e6ea;
    box-shadow: 0 20px 50px rgba(1, 230, 234, 0.5);
}

.portfolio-hover h3 {
    margin-bottom: 5px;
}

.portfolio-image {
    flex: 0 0 250px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.see-more-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid #01e6ea;
    background: rgba(1, 230, 234, 0.1);
    color: #01e6ea;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 230, 234, 0.3);
}

.portfolio-item:hover .see-more-btn {
    opacity: 1;
    pointer-events: auto;
    background: #01e6ea;
    color: #fff;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 20px rgba(1, 230, 234, 0.6);
}

.portfolio-item:hover .placeholder-image {
    transform: scale(1.1);
}

.portfolio-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: #01e6ea;
    text-shadow: 0 0 10px rgba(1, 230, 234, 0.5);
    transition: text-shadow 0.4s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    text-shadow: 0 0 20px rgba(1, 230, 234, 0.7);
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-content {
    margin: auto;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--color-accent);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(17, 252, 252, 0.1);
    transform: translateX(10px);
}

.contact-label {
    font-size: 12px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 252, 17, 0.2);
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 252, 17, 0.4);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(102, 252, 17, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #01e6ea;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(102, 252, 17, 0.2);
    background: rgba(102, 252, 17, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer {
    background: #282d33;
    border-top: 1px solid rgb(1, 230, 234, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo p {
    color: var(--color-accent);
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 10px #01e6ea;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 252, 17, 0.2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 252, 17, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav {
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-title {
        font-size: 48px;
    }

    .container {
        grid-template-columns: none !important;
        padding: 0 15px;
    }

    .floating-card {
        display: none;
    }

    section {
        opacity: 1;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr !important;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .exp-content {
        max-width: 95%;
    }

    .exp-timeline {
        margin-left: 1rem;
        padding-left: 2rem;
    }

    .portfolio-filters {
        padding: 0 10px;
    }

    .filter-btn {
        margin: 0 .25rem;
        padding: .5rem 1rem;
        font-size: 13px;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        grid-template-columns: 1fr !important;
        padding: 0 15px;
    }

    section {
        opacity: 1;
    }

    .header {
        padding: 15px 0;
    }

    .nav {
        gap: 10px;
    }

    .nav-link {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr !important;
    }

    .about-text p,
    .skill-text p {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .profile-card h3 {
        font-size: 20px;
    }

    .skill-card {
        padding: 30px 20px;
    }

    .skill-card h3 {
        font-size: 20px;
    }

    .skill-icon {
        font-size: 40px;
    }

    .exp-tabs {
        gap: 8px;
    }

    .exp-tab {
        padding: .4rem 1rem;
        font-size: 13px;
    }

    .exp-content {
        margin: 4rem auto;
    }

    .exp-timeline {
        margin-left: 0.5rem;
        padding-left: 1.5rem;
    }

    .exp-item {
        margin-bottom: 3rem;
    }

    .exp-details h3 {
        font-size: 1rem;
    }

    .exp-details p {
        font-size: 14px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-item {
        height: auto;
        min-height: 350px;
    }

    .portfolio-content h3 {
        font-size: 20px;
    }

    .portfolio-content p {
        font-size: 14px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-links {
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero {
        min-height: 100vh;
    }
}