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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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;
    height: 70px;
}

.nav-logo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Live Wallpaper Background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(87, 96, 111, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 159, 67, 0.05) 0%, transparent 60%);
    animation: liveWallpaper 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Spider Web Container */
.spider-web-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spider-web {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 700px;
}

/* Web Elements */
.web-center {
    animation: pulse 3s ease-in-out infinite;
}

.web-line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.web-spiral-line {
    transition: all 0.5s ease;
    transform-origin: center;
}

.web-circle {
    transition: all 0.3s ease;
    animation: twinkle 4s ease-in-out infinite;
}

.web-circle:nth-child(odd) {
    animation-delay: -2s;
}

.web-circle:nth-child(even) {
    animation-delay: -1s;
}

/* Spider Animation */
.spider {
    transition: all 0.1s ease;
    animation: spiderMove 8s ease-in-out infinite;
}

/* Spider Image */
.spider-image {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 100px;
    color: lightgrey;
    z-index: 1;
    animation: spiderFloat 10s ease-in-out infinite;
    pointer-events: none;
}

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

.spider-body {
    animation: spiderPulse 2s ease-in-out infinite;
}

.spider-head {
    animation: spiderPulse 2s ease-in-out infinite 0.5s;
}

.spider-leg {
    animation: spiderLegMove 3s ease-in-out infinite;
}

.spider-leg:nth-child(odd) {
    animation-delay: -1s;
}

.spider-leg:nth-child(even) {
    animation-delay: -0.5s;
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes spiderMove {
    0%, 100% {
        transform: translate(380px, 280px) rotate(0deg);
    }
    25% {
        transform: translate(420px, 260px) rotate(90deg);
    }
    50% {
        transform: translate(380px, 240px) rotate(180deg);
    }
    75% {
        transform: translate(340px, 260px) rotate(270deg);
    }
}

@keyframes spiderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes spiderLegMove {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes liveWallpaper {
    0%, 100% {
        background:
            radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.06) 0%, transparent 70%),
            radial-gradient(circle at 20% 80%, rgba(87, 96, 111, 0.04) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 159, 67, 0.05) 0%, transparent 60%);
        transform: scale(1) rotate(0deg);
    }
    20% {
        background:
            radial-gradient(circle at 75% 25%, rgba(118, 75, 162, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, rgba(255, 107, 107, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.07) 0%, transparent 70%),
            radial-gradient(circle at 70% 30%, rgba(255, 159, 67, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 50% 90%, rgba(87, 96, 111, 0.05) 0%, transparent 60%);
        transform: scale(1.03) rotate(72deg);
    }
    40% {
        background:
            radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 25% 25%, rgba(255, 159, 67, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.08) 0%, transparent 70%),
            radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.07) 0%, transparent 60%),
            radial-gradient(circle at 90% 50%, rgba(87, 96, 111, 0.06) 0%, transparent 60%);
        transform: scale(1.06) rotate(144deg);
    }
    60% {
        background:
            radial-gradient(circle at 25% 75%, rgba(255, 159, 67, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 75% 25%, rgba(102, 126, 234, 0.09) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(255, 107, 107, 0.07) 0%, transparent 70%),
            radial-gradient(circle at 10% 50%, rgba(118, 75, 162, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 90% 10%, rgba(87, 96, 111, 0.05) 0%, transparent 60%);
        transform: scale(1.03) rotate(216deg);
    }
    80% {
        background:
            radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 10% 90%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 90% 10%, rgba(255, 159, 67, 0.07) 0%, transparent 70%),
            radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 60% 40%, rgba(87, 96, 111, 0.05) 0%, transparent 60%);
        transform: scale(1.05) rotate(288deg);
    }
}

/* Floating Particles */
.hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .particle {
    position: absolute;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-radius: 50%;
    animation: float 15s linear infinite;
}

.hero .particle:nth-child(odd) {
    animation-duration: 20s;
    animation-delay: -5s;
}

.hero .particle:nth-child(even) {
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) translateX(10px) rotate(36deg);
    }
    20% {
        transform: translateY(70vh) translateX(-10px) rotate(72deg);
    }
    30% {
        opacity: 1;
        transform: translateY(50vh) translateX(20px) rotate(108deg);
    }
    40% {
        transform: translateY(30vh) translateX(-20px) rotate(144deg);
    }
    50% {
        transform: translateY(10vh) translateX(10px) rotate(180deg);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10vh) translateX(-10px) rotate(216deg);
    }
    70% {
        transform: translateY(-30vh) translateX(20px) rotate(252deg);
    }
    80% {
        opacity: 0.6;
        transform: translateY(-50vh) translateX(-20px) rotate(288deg);
    }
    90% {
        transform: translateY(-70vh) translateX(10px) rotate(324deg);
    }
    100% {
        transform: translateY(-100vh) translateX(0) rotate(360deg);
        opacity: 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Core Values Section */
.core-values-container {
    margin-top: 40px;
}

.values-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.core-value-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.core-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #fff;
}

.core-value-item h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.core-value-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Vision and Mission Cards */
.vision-mission-container {
    margin-top: 20px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vision-card,
.mission-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.vision-card .card-header h3,
.mission-card .card-header h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.card-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Image Section */
.about-image {
    margin-bottom: 30px;
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.image-placeholder h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.image-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.info-item i {
    color: #667eea;
    width: 20px;
}

/* Skills Section */
.skills {
    background: #0a0a0a;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-title i {
    color: #667eea;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-item {
    background: rgba(102, 126, 234, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #667eea;
    transform: scale(1.05);
}

/* Projects Section */
.projects {
    background: #111;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.project-links {
    display: flex;
    gap: 10px;
}

.project-link {
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #667eea;
    color: #fff;
    transform: scale(1.1);
}

.deployed-link {
    background: rgba(76, 175, 80, 0.1) !important;
    color: #4caf50 !important;
    border: 1px solid rgba(76, 175, 80, 0.3) !important;
}

.deployed-link:hover {
    background: #4caf50 !important;
    color: #fff !important;
    transform: scale(1.1);
}

.project-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    text-decoration: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #667eea;
    color: #fff;
    transform: translateX(10px);
}

.contact-link i {
    font-size: 1.2rem;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

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

/* Footer */
.footer {
    background: #000;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-info h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-left {
        gap: 30px;
    }

    .about-right {
        gap: 20px;
    }

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

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

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

    .profile-stats {
        justify-content: center;
    }
}

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

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

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

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

    .project-card,
    .skill-category,
    .info-card {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

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

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

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

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
