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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.47;
    color: #1d1d1f;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #050505 50%, #0a0a0a 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.nav-dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #007AFF;
    border-color: #007AFF;
    transform: scale(1.3);
}

.nav-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-dot:hover::after {
    opacity: 1;
}










/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #050505 50%, #0a0a0a 75%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

/* Glass Card Container */
.glass-card {
    --bg-color: rgba(255, 255, 255, 0.1);
    --highlight: rgba(255, 255, 255, 0.3);
    --text: #ffffff;
    
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    margin-right: auto;
    margin-left: 0;
}

.glass-filter,
.glass-overlay,
.glass-specular {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.glass-filter {
    z-index: 1;
    backdrop-filter: blur(4px);
    filter: url(#glass-distortion) saturate(120%) brightness(1.15);
}

.glass-distortion-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 80%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 80%);
    background-size: 300% 300%;
    animation: floatDistort 10s infinite ease-in-out;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
}

@keyframes floatDistort {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.glass-overlay {
    z-index: 2;
    background: var(--bg-color);
}

.glass-specular {
    z-index: 3;
    box-shadow: inset 1px 1px 1px var(--highlight);
}

.glass-content {
    position: relative;
    z-index: 4;
    padding: 40px;
    color: var(--text);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 60% 30%, rgba(250, 250, 250, 0.04) 0%, transparent 70%),
                radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    filter: blur(80px);
    opacity: 0.9;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.02) 0%, transparent 50%);
    animation: rotate 35s linear infinite reverse;
    filter: blur(100px);
    opacity: 0.7;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInTitle 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.highlight {
    background: linear-gradient(135deg,rgb(78, 149, 225) 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInSubtitle 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    font-weight: 400;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInDescription 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInButtons 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

/* Glass Button Container */
.glass-button {
    --bg-color: rgba(255, 255, 255, 0.15);
    --highlight: rgba(255, 255, 255, 0.4);
    --text: #ffffff;
    
    position: relative;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
    transition: transform 0.2s ease;
    outline: none;
}

.glass-button:hover {
    transform: scale(1.05);
}

.glass-button:active {
    transform: scale(0.95);
}

.glass-button .glass-filter,
.glass-button .glass-overlay,
.glass-button .glass-specular {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.glass-button .glass-filter {
    z-index: 1;
    backdrop-filter: blur(4px);
    filter: url(#glass-distortion) saturate(120%) brightness(1.15);
}

.glass-button .glass-overlay {
    z-index: 2;
    background: var(--bg-color);
}

.glass-button .glass-specular {
    z-index: 3;
    box-shadow: inset 1px 1px 1px var(--highlight);
}

.glass-button .glass-content {
    position: relative;
    z-index: 4;
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 980px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary {
    background: #007AFF;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}




.profile-photo {
    position: absolute;
    top: 35%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    transition: all 0.1s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    filter: contrast(1.2) brightness(1.1) saturate(1.25) sharpness(1.1);
    animation: fadeInRight 1.2s ease-out 0.3s both;
}

.profile-photo:hover {
    transform: translateY(-50%) scale(1.25);
    filter: contrast(1.15) brightness(1.1) saturate(1.15);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    animation: rotate 5s linear infinite;
    z-index: -1;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    background: #000000;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #000000 0%, #020202 25%, #000000 50%, #020202 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgb(2, 2, 2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(2, 2, 2, 0.05) 0%, transparent 50%);
    animation: rotate 25s linear infinite reverse;
    filter: blur(60px);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    letter-spacing: -0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, #000000 0%, #020202 25%, #000000 50%, #020202 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgb(2, 2, 2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(2, 2, 2, 0.05) 0%, transparent 50%);
    animation: rotate 25s linear infinite reverse;
    filter: blur(60px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.skill-category:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007AFF, #5856D6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin: 0.3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.skill-item:hover {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

/* Company Logo Styles */
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.company-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.company-logo i {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Custom logo styling */
.company-logo svg,
.company-logo img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.company-logo:hover svg,
.company-logo:hover img {
    transform: scale(1.1);
}

/* Venmo logo specific styling */
.venmo-logo svg {
    filter: brightness(0.9);
}

.venmo-logo:hover svg {
    filter: brightness(1.1);
}

/* Cash App logo specific styling */
.cashapp-logo svg {
    filter: brightness(0.9);
}

.cashapp-logo:hover svg {
    filter: brightness(1.1);
}

/* Exodus logo specific styling */
.exodus-logo img {
    filter: brightness(0.9);
    border-radius: 15px;
    object-fit: contain;
    width: 80px;
    height: 80px;
}

.exodus-logo:hover img {
    filter: brightness(1.1);
}

/* Chime logo specific styling */
.chime-logo img {
    filter: brightness(0.9);
    border-radius: 15px;
    object-fit: contain;
    width: 80px;
    height: 80px;
}

.chime-logo:hover img {
    filter: brightness(1.1);
}

/* Apple Wallet logo specific styling */
.wallet-logo img {
    filter: brightness(0.9);
    border-radius: 15px;
    object-fit: contain;
    width: 100px;
    height: 100px;
}

.wallet-logo:hover img {
    filter: brightness(1.1);
}

/* Chase Bank logo specific styling */
.chase-logo img {
    filter: brightness(0.9);
    border-radius: 15px;
    object-fit: contain;
    width: 80px;
    height: 80px;
}

.chase-logo:hover img {
    filter: brightness(1.1);
}


/* Projects Section */
.projects {
    background: linear-gradient(135deg, #000000 0%, #020202 25%, #000000 50%, #020202 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.projects-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.projects::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgb(2, 2, 2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(2, 2, 2, 0.05) 0%, transparent 50%);
    animation: rotate 25s linear infinite reverse;
    filter: blur(60px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}


.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.project-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(88, 86, 214, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.project-placeholder {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.8;
    z-index: 1;
    transition: all 0.3s ease;
}

.project-card:hover .project-placeholder {
    opacity: 1;
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.project-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin: 0.2rem;
}

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

.project-link {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.project-link:hover {
    color: #5856D6;
    transform: translateX(2px);
}

.project-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #007AFF;
    transition: width 0.3s ease;
}

.project-link:hover::after {
    width: 100%;
}

.project-link i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #000000 0%, #020202 25%, #000000 50%, #020202 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgb(2, 2, 2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(2, 2, 2, 0.05) 0%, transparent 50%);
    animation: rotate 25s linear infinite reverse;
    filter: blur(60px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-method i {
    width: 20px;
    margin-right: 1rem;
    color: #007AFF;
    opacity: 0.9;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.4);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007AFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #020202 25%, #000000 50%, #020202 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideInTitle {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTitleMobile {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInSubtitle {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDescription {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInButtons {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smoothSpringScale {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    20% {
        transform: scale(1.15);
        opacity: 0.8;
    }
    40% {
        transform: scale(0.95);
        opacity: 1;
    }
    60% {
        transform: scale(1.05);
        opacity: 1;
    }
    80% {
        transform: scale(0.98);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes smoothSpringScaleMobile {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    20% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    40% {
        transform: scale(0.95);
        opacity: 1;
    }
    60% {
        transform: scale(1.02);
        opacity: 1;
    }
    80% {
        transform: scale(0.99);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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



@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes magnifyingGlass {
    0%, 100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(16px);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    }
    25% {
        transform: scale(1.05);
        background: rgba(0, 122, 255, 0.12);
        border-color: rgba(0, 122, 255, 0.25);
        backdrop-filter: blur(20px);
        box-shadow: 
            0 12px 40px rgba(0, 122, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 122, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        background: rgba(88, 86, 214, 0.15);
        border-color: rgba(88, 86, 214, 0.3);
        backdrop-filter: blur(24px);
        box-shadow: 
            0 16px 48px rgba(88, 86, 214, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(88, 86, 214, 0.25);
    }
    75% {
        transform: scale(1.05);
        background: rgba(0, 122, 255, 0.12);
        border-color: rgba(0, 122, 255, 0.25);
        backdrop-filter: blur(20px);
        box-shadow: 
            0 12px 40px rgba(0, 122, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 122, 255, 0.2);
    }
}

@keyframes magnifyingGlassIcon {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    30% {
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
    40% {
        opacity: 1;
        transform: scale(1) rotate(-5deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    60% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    80% {
        opacity: 0.8;
        transform: scale(0.8) rotate(0deg);
    }
}


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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInTitleMobile {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes jiggleOnLoadMobile {
    0% {
        transform: scale(0) rotate(-8deg);
        opacity: 0;
    }
    20% {
        transform: scale(1.05) rotate(4deg);
        opacity: 0.8;
    }
    40% {
        transform: scale(0.95) rotate(-2deg);
        opacity: 1;
    }
    60% {
        transform: scale(1.02) rotate(1deg);
        opacity: 1;
    }
    80% {
        transform: scale(0.99) rotate(-0.5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-photo {
        display: none;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        right: 20px;
        opacity: 0.8;
    }
    
    .nav-dots {
        gap: 15px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 5%;
    }

    .profile-photo {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
        animation: slideInTitleMobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-card {
        transition: none;
    }

    .project-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .project-card:hover .project-placeholder {
        opacity: 0.8;
        transform: none;
    }

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

    .profile-image {
        width: 250px;
        height: 250px;
        animation: fadeIn 0.3s ease-out 0.1s both;
    }
    
    .profile-photo {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 2.4rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
