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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title-left {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
}


/* Header Styles */
.header {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top left, #1a1a1a 0%, #000000 40%, #0a0a0a 70%, #000000 100%),
                linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.8) 50%, rgba(0,0,0,0.95) 100%);
    background-attachment: fixed;
    z-index: -2;
    opacity: 0;
    animation: headerBackgroundFadeIn 2.5s ease-in-out forwards;
}

@keyframes headerBackgroundFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Parallax Motion Effects */
.header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.01) 0%, transparent 60%),
                radial-gradient(circle at 90% 70%, rgba(255,255,255,0.025) 0%, transparent 45%);
    z-index: -1;
    animation: parallaxFloat 20s ease-in-out infinite;
}

.header .parallax-shape-1,
.header .parallax-shape-2,
.header .parallax-shape-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.56;
    --parallax-y: 0px;
    will-change: transform;
}

.header .parallax-shape-1 {
    width: 720px;
    height: 720px;
    top: -15%;
    right: 0%;
    background: radial-gradient(circle, rgba(15, 129, 155, 0.8) 0%, transparent 70%);
    animation: floatShape1 25s ease-in-out infinite, pulseOpacity1 20s ease-in-out infinite;
}

.header .parallax-shape-2 {
    width: 600px;
    height: 600px;
    bottom: 5%;
    left: -10%;
    background: radial-gradient(circle, rgba(120, 120, 130, 0.7) 0%, transparent 70%);
    animation: floatShape2 30s ease-in-out infinite, pulseOpacity2 25s ease-in-out infinite;
}

.header .parallax-shape-3 {
    width: 540px;
    height: 540px;
    top: 35%;
    right: 20%;
    background: radial-gradient(circle, rgba(60, 100, 150, 0.7) 0%, transparent 70%);
    animation: floatShape3 22s ease-in-out infinite, pulseOpacity3 18s ease-in-out infinite;
}

.header .mouse-follow-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 120, 200, 0.6) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    will-change: transform;
}

.header .mouse-trail {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 120, 200, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.header .mouse-trail:nth-child(1) {
    width: 350px;
    height: 350px;
    transition: left 3s ease-out, top 3s ease-out, opacity 0.3s ease;
}

.header .mouse-trail:nth-child(2) {
    width: 300px;
    height: 300px;
    transition: left 4.4s ease-out, top 4.4s ease-out, opacity 0.3s ease;
}

.header .mouse-trail:nth-child(3) {
    width: 250px;
    height: 250px;
    transition: left 6s ease-out, top 6s ease-out, opacity 0.3s ease;
}

.header .mouse-trail:nth-child(4) {
    width: 200px;
    height: 200px;
    transition: left 7.6s ease-out, top 7.6s ease-out, opacity 0.3s ease;
}

.header .mouse-trail:nth-child(5) {
    width: 150px;
    height: 150px;
    transition: left 9s ease-out, top 9s ease-out, opacity 0.3s ease;
}

@keyframes pulseOpacity1 {
    0% { opacity: 0.56; top: -15%; right: 0%; }
    20% { opacity: 0.56; }
    35% { opacity: 0.08; }
    36% { top: 15%; right: 25%; }
    50% { opacity: 0.08; }
    65% { opacity: 0.56; }
    85% { opacity: 0.56; }
    95% { opacity: 0.08; }
    96% { top: -15%; right: 0%; }
    100% { opacity: 0.56; }
}

@keyframes pulseOpacity2 {
    0% { opacity: 0.56; bottom: 5%; left: -10%; }
    20% { opacity: 0.56; }
    35% { opacity: 0.08; }
    36% { bottom: 25%; left: 15%; }
    50% { opacity: 0.08; }
    65% { opacity: 0.56; }
    85% { opacity: 0.56; }
    95% { opacity: 0.08; }
    96% { bottom: 5%; left: -10%; }
    100% { opacity: 0.56; }
}

@keyframes pulseOpacity3 {
    0% { opacity: 0.56; top: 35%; right: 20%; }
    20% { opacity: 0.56; }
    35% { opacity: 0.08; }
    36% { top: 10%; right: 45%; }
    50% { opacity: 0.08; }
    65% { opacity: 0.56; }
    85% { opacity: 0.56; }
    95% { opacity: 0.08; }
    96% { top: 35%; right: 20%; }
    100% { opacity: 0.56; }
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, var(--parallax-y, 0)) scale(1);
    }
    25% {
        transform: translate(20px, calc(15px + var(--parallax-y, 0))) scale(1.03);
    }
    50% {
        transform: translate(-10px, calc(25px + var(--parallax-y, 0))) scale(0.98);
    }
    75% {
        transform: translate(-15px, calc(10px + var(--parallax-y, 0))) scale(1.02);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, var(--parallax-y, 0)) scale(1);
    }
    25% {
        transform: translate(-18px, calc(-12px + var(--parallax-y, 0))) scale(1.04);
    }
    50% {
        transform: translate(8px, calc(-20px + var(--parallax-y, 0))) scale(0.96);
    }
    75% {
        transform: translate(12px, calc(-8px + var(--parallax-y, 0))) scale(1.02);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translate(0, var(--parallax-y, 0)) scale(1);
    }
    33% {
        transform: translate(15px, calc(-12px + var(--parallax-y, 0))) scale(1.05);
    }
    66% {
        transform: translate(-12px, calc(10px + var(--parallax-y, 0))) scale(0.97);
    }
}

@keyframes parallaxFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        transform: rotate(270deg) scale(1.05);
    }
}

@keyframes parallaxMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -30px) rotate(270deg);
    }
}

@keyframes parallaxMove2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(80px, 40px) scale(1.2);
    }
    66% {
        transform: translate(-40px, -80px) scale(0.8);
    }
}

@keyframes parallaxMove3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-100px, 50px) rotate(180deg) scale(1.3);
    }
}

.abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,20,30,0.7) 50%, rgba(0,0,0,0.8) 100%);
    overflow: hidden;
}


/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    height: 32px;
    width: auto;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.logo h1 .thin {
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Source Sans Pro', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0f819b;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(10px);
    }
    60% {
        transform: rotate(45deg) translateY(5px);
    }
}

.header-projects {
    width: 100%;
    z-index: 10;
    padding: 0 20px;
    padding-bottom: 80px;
}

.header-projects .container {
    max-width: 1200px;
    margin: 0 auto;
}

.header-projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.header-projects .project-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.header-projects .project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-projects .project-card:nth-child(1) { transition-delay: 0s; }
.header-projects .project-card:nth-child(2) { transition-delay: 0.1s; }
.header-projects .project-card:nth-child(3) { transition-delay: 0.2s; }
.header-projects .project-card:nth-child(4) { transition-delay: 0.3s; }
.header-projects .project-card:nth-child(5) { transition-delay: 0.4s; }
.header-projects .project-card:nth-child(6) { transition-delay: 0.5s; }
.header-projects .project-card:nth-child(7) { transition-delay: 0.6s; }
.header-projects .project-card:nth-child(8) { transition-delay: 0.7s; }
.header-projects .project-card:nth-child(9) { transition-delay: 0.8s; }

/* Hero fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #888888;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.cta-button {
    font-family: 'Source Sans Pro', sans-serif;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #0f819b;
    color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards, bounce 2s infinite;
    animation-delay: 1.1s, 1.9s;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Parallax Sections */
.parallax-section {
    padding: 100px 0;
    position: relative;
}

/* Services Section */
.skills {
    background: #000000;
    padding: 100px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #0f819b;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: #0f819b;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #888888;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    background: #000000;
    padding: 100px 0;
}

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

.project-card {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56px 58px;
    transform: scale(1.44);
    transition: all 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image img.scaled-img {
    transform: scale(1.5);
}

.project-card:hover .project-image img.scaled-img {
    transform: scale(1.6);
}

.project-card:hover .project-background-video {
    transform: scale(1.5);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    color: #888888;
    font-size: 0.9rem;
}

/* Brands Section */
.brands {
    padding: 60px 0;
    background: #0a0a0a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.brands .container {
    max-width: 100%;
    padding: 0 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    max-height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
}

.brand-logo svg {
    max-height: 80px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        gap: 2rem 1rem;
    }
    
    .brands .container {
        padding: 0 20px;
    }
    
    .brand-logo svg {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0.75rem;
    }
    
    .brand-logo svg {
        max-height: 50px;
    }
}

/* About Section */
.about {
    background: #111111;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

/* Achievements section removed */

.about-image {
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    background-image: url('https://iandriskill.com/images/ian-conomara.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    background: #000000;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item span:first-child {
    font-weight: 600;
    color: #ffffff;
    min-width: 80px;
}

.contact-item a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0f819b;
}

.contact-divider {
    border: none;
    border-top: 1px solid #333333;
    margin: 1.5rem 0;
}

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

.contact-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    border-color: #0f819b;
    background: #0f819b;
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 420px;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Source Sans Pro', sans-serif;
    background: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #666666;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888888;
}

.submit-btn {
    font-family: 'Source Sans Pro', sans-serif;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #0f819b;
    color: #ffffff;
}

.message-sent {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message-container {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(76, 175, 80, 0.05);
    border: 2px solid #4CAF50;
    border-radius: 10px;
    animation: scaleIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
}

.success-message-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-message-container p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.footer-brand h3 .thin {
    font-weight: 300;
}

.footer-brand p {
    color: #888888;
    margin-bottom: 0;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #333333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #0f819b;
    background: #0f819b;
    color: #ffffff;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #888888;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #0f819b;
}

/* Project Cards Navigation */

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        transform: scale(0.8);
    }
    
    .hero-logo {
        width: 200px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header::before {
        background-attachment: scroll;
    }
    
    .header::after,
    .header .parallax-shape-1,
    .header .parallax-shape-2,
    .header .parallax-shape-3,
    .header .mouse-follow-shape,
    .header .mouse-trail {
        display: none;
    }
    
    .hero-content {
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
    }
    
    .hero-scroll-arrow {
        width: 24px;
        height: 24px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .header-projects .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .header-projects .project-card:nth-child(n) {
        transition-delay: 0.1s;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo-icon {
        height: 36px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .nav-container {
        justify-content: center;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .footer-logo {
        height: 48px;
    }
    
    .footer-brand-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    .parallax-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        gap: 0.5rem;
    }
    
    
    .project-card {
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f819b;
}
