* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #00d4ff;
    --secondary-blue: #0099cc;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(15, 15, 20, 0.8);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glow-blue: rgba(0, 212, 255, 0.5);
    --glow-green: rgba(0, 255, 150, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker-bg);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-green));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, var(--secondary-blue), var(--primary-blue));
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--glow-green), var(--primary-blue));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, -30px) scale(0.9);
    }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container {
    position: relative;
}

.logo-3d {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: var(--text-white);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: logoGlow 3s infinite ease-in-out;
}

.logo-3d:hover {
    transform: rotateY(15deg) rotateX(5deg) translateZ(10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3),
                    inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5),
                    inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

.logo-text h2 {
    font-size: 24px;
    margin-bottom: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--text-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-gray);
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

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

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    animation: fadeInUp 1s ease-out;
}

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

/* Profile Picture */
.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.profile-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    animation: profileFloat 6s infinite ease-in-out;
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--glow-blue), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s infinite ease-in-out;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.profile-image {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3),
                inset 0 0 40px rgba(0, 212, 255, 0.1);
}

.profile-image:hover {
    transform: rotateY(10deg) scale(1.05);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    height: 310px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.greeting {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.greeting-text {
    font-size: 24px;
    color: var(--text-gray);
    animation: fadeIn 1s ease-out 0.3s both;
}

.name-3d {
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    animation: nameGlow 3s infinite ease-in-out, fadeIn 1s ease-out 0.5s both;
    cursor: default;
}

.name-3d:hover {
    transform: translateZ(20px) scale(1.05);
}

@keyframes nameGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.roles {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--text-white);
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s both;
}

.separator {
    color: var(--text-gray);
    font-weight: bold;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.tag {
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

.tag-3d {
    transform-style: preserve-3d;
}

.tag-3d:hover {
    transform: translateY(-5px) translateZ(10px);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 1.1s both;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.info-card:hover::before {
    transform: translateX(100%);
}

.card-3d {
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    font-size: 24px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.card-3d:hover .card-icon {
    transform: translateZ(10px) scale(1.1);
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.card-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card-content h3 {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-content p {
    font-size: 16px;
    color: var(--text-white);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0;
}

.card-icon i.fa-map-marker-alt {
    color: #ff4444;
}

/* Connect Section */
.connect-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 50px;
    animation: fadeIn 1s ease-out 1.3s both;
}

.connect-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.icon-3d {
    transform-style: preserve-3d;
}

.icon-3d:hover {
    transform: translateY(-10px) translateZ(15px) scale(1.1);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--primary-blue);
}

.social-icon.active {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.icon-3d:hover i {
    transform: scale(1.2) rotateY(360deg);
}

/* Projects Page Styles */
.projects-main {
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.projects-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.rocket-icon {
    font-size: 36px;
    color: #ff4444;
    animation: rocketFloat 3s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.projects-title {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: nameGlow 3s infinite ease-in-out;
}

.projects-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out both;
}

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

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.project-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-blue);
    margin: 0;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.project-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-white);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.project-card:hover .tech-tag {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.project-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.project-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.code-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.code-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.live-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.live-btn:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.project-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.project-btn:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .profile-container {
        justify-self: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .main-content {
        padding: 200px 20px 50px;
    }

    .name-3d {
        font-size: 48px;
    }

    .roles {
        font-size: 14px;
    }

    .profile-image-wrapper {
        width: 250px;
        height: 250px;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .profile-ring {
        width: 260px;
        height: 260px;
    }

    .profile-glow {
        width: 270px;
        height: 270px;
    }

    .projects-main {
        padding: 200px 20px 50px;
    }

    .projects-title {
        font-size: 42px;
    }

    .projects-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

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

    .project-image {
        height: 200px;
    }

    .rocket-icon {
        font-size: 28px;
    }
}

/* Skills Page Styles */
.skills-main {
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.skills-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.skills-title {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, #00ff96, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 150, 0.5);
    margin-bottom: 20px;
    animation: nameGlow 3s infinite ease-in-out;
}

.skills-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.skills-container {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 40px rgba(0, 212, 255, 0.05);
    min-height: 600px;
    width: 100%;
}

.skills-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    animation: containerGlow 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes containerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.skills-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 0 50px rgba(0, 212, 255, 0.1);
}

.skill-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: opacity 0.8s ease-out, transform 0.3s ease; /* Only transition opacity and transform, not position */
    cursor: pointer;
    position: absolute;
    opacity: 0;
    animation: skillFadeIn 0.8s ease-out forwards;
    will-change: left, top; /* Optimize for position changes */
}

@keyframes skillFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.skill-icon-item:hover {
    transform: translateY(-15px) scale(1.15) !important;
    z-index: 10;
    animation-play-state: paused;
}

.skill-icon-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    font-size: 48px;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2),
                inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.skill-icon-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--glow-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.skill-icon-item:hover .skill-icon-circle {
    transform: scale(1.15) rotateY(360deg);
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4),
                inset 0 0 30px rgba(0, 212, 255, 0.2);
    color: var(--text-white);
}

.skill-icon-item:hover .skill-icon-circle::before {
    opacity: 0.6;
}

.skill-label {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.skill-icon-item:hover .skill-label {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* Skills Categories Section */
.skills-categories-section {
    margin-top: 100px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.skills-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.skill-category-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.skill-category-card:nth-child(1) { animation-delay: 0.6s; }
.skill-category-card:nth-child(2) { animation-delay: 0.7s; }
.skill-category-card:nth-child(3) { animation-delay: 0.8s; }
.skill-category-card:nth-child(4) { animation-delay: 0.9s; }
.skill-category-card:nth-child(5) { animation-delay: 1.0s; }
.skill-category-card:nth-child(6) { animation-delay: 1.1s; }

.skill-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.skill-category-card:hover::before {
    transform: translateX(100%);
}

.skill-category-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.category-icon {
    font-size: 28px;
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.category-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.skill-category-card:hover .category-icon {
    transform: translateZ(10px) scale(1.1) rotateY(360deg);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.category-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-white);
    margin: 0;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-list li {
    color: var(--text-white);
    font-size: 16px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
    transition: all 0.3s ease;
}

.skill-category-card:hover .skill-list li {
    color: var(--text-white);
    transform: translateX(5px);
}

.skill-category-card:hover .skill-list li::before {
    color: var(--primary-blue);
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Skills Footer */
.skills-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 50px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeIn 1s ease-out 1.3s both;
}

.footer-text {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design for Skills */
@media (max-width: 1200px) {
    .skills-container {
        padding: 50px 30px;
        min-height: 550px;
    }

    .skill-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }

    .skills-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .skills-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-main {
        padding: 200px 20px 50px;
    }

    .skills-title {
        font-size: 42px;
    }

    .skills-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .skills-container {
        padding: 40px 20px;
        border-radius: 20px;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        position: relative;
    }

    .skill-icon-item {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        animation: skillFadeIn 0.8s ease-out forwards !important;
    }

    .skill-icon-item[data-skill] {
        animation: skillFadeIn 0.8s ease-out forwards !important;
    }

    .skill-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 36px;
        border-width: 2px;
    }

    .skill-label {
        font-size: 14px;
    }

    .skills-categories-section {
        margin-top: 60px;
    }

    .skills-categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .skill-category-card {
        padding: 25px;
    }

    .category-title {
        font-size: 20px;
    }

    .skill-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .skills-container {
        padding: 30px 15px;
        min-height: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .skill-icon-item {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        animation: skillFadeIn 0.8s ease-out forwards !important;
    }

    .skill-icon-item[data-skill] {
        animation: skillFadeIn 0.8s ease-out forwards !important;
    }

    .skill-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .skill-label {
        font-size: 12px;
    }

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

    .category-title {
        font-size: 18px;
    }

    .skill-list li {
        font-size: 14px;
    }
}

/* Videos Page Styles */
.videos-main {
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.videos-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.videos-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.videos-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #ff6b35, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 3s infinite ease-in-out;
}

.videos-title {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: nameGlow 3s infinite ease-in-out;
}

.videos-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    grid-auto-rows: min-content;
    grid-auto-flow: dense;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out both;
}

/* YouTube videos - larger, span 2 columns */
.video-card[data-type="youtube"] {
    grid-column: span 2;
}

/* Instagram reels - smaller, span 1 column */
.video-card[data-type="instagram"] {
    grid-column: span 1;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }
.video-card:nth-child(6) { animation-delay: 0.6s; }

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.video-card:hover::before {
    transform: translateX(100%);
}

.video-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px 20px 0 0;
}

.video-card[data-type="youtube"] .video-embed {
    padding-bottom: 56.25%; /* 16:9 for YouTube */
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* YouTube video overlay button */
.youtube-watch-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    transform: translateY(10px);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.youtube-watch-btn i {
    font-size: 16px;
}

.video-embed[data-youtube-url]:hover .youtube-watch-btn {
    opacity: 1;
    transform: translateY(0);
}

.youtube-watch-btn:hover {
    background: rgba(255, 0, 0, 1);
    transform: translateY(0) scale(1.05);
}

.video-embed[data-youtube-url] {
    transition: opacity 0.3s ease;
}

.instagram-embed {
    padding-bottom: 125%; /* Instagram reels are typically 9:16 (vertical) */
    background: #000;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
}

.instagram-embed:hover {
    opacity: 0.9;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border-radius: 20px 20px 0 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay:hover {
    opacity: 0.9;
}

.video-card[data-type="instagram"] .video-embed {
    padding-bottom: 125%; /* 9:16 for Instagram reels */
}

.instagram-embed blockquote {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    border-radius: 20px 20px 0 0;
}

.video-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-white);
    margin: 0;
    padding: 20px 25px 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.video-reactions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding: 15px 25px 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reaction-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.reaction-btn:hover::before {
    left: 100%;
}

.reaction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.reaction-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.reaction-btn:hover i {
    transform: scale(1.2);
}

.like-btn {
    color: var(--text-gray);
}

.like-btn i {
    color: #ff3040;
}

.like-btn.active {
    background: rgba(255, 48, 64, 0.2);
    border-color: #ff3040;
    color: #ff3040;
}

.like-btn.active i {
    color: #ff3040;
}

.comment-btn {
    color: var(--text-gray);
}

.comment-btn.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
}

.comment-btn.active i {
    color: #00d4ff;
}

.reaction-count {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Instagram Stats */
.instagram-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.instagram-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.instagram-stat i {
    font-size: 16px;
    color: #833ab4;
    transition: transform 0.3s ease;
}

.instagram-stat i.fa-heart {
    color: #ff3040;
}

.instagram-stat:hover i {
    transform: scale(1.2);
}

.instagram-stat .stat-count {
    font-weight: 600;
    min-width: 30px;
}

/* Responsive Design for Videos */
@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-card[data-type="youtube"] {
        grid-column: span 2;
    }
    
    .video-card[data-type="instagram"] {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-card[data-type="youtube"] {
        grid-column: span 2;
    }
    
    .video-card[data-type="instagram"] {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .videos-main {
        padding: 200px 20px 50px;
    }

    .videos-title {
        font-size: 42px;
    }

    .videos-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .videos-icon {
        font-size: 36px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-title {
        font-size: 18px;
        padding: 15px 20px 10px;
    }

    .video-reactions {
        padding: 12px 20px 20px;
    }
}

/* About Me Page Styles */
.about-main {
    position: relative;
    z-index: 1;
    padding: 150px 50px 100px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.about-container {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 40px rgba(0, 212, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    animation: containerGlow 8s infinite ease-in-out;
    pointer-events: none;
}

.about-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 0 50px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px) rotateX(2deg);
}

.about-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: titleGlow 3s infinite ease-in-out;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.about-title:hover {
    transform: translateZ(10px) scale(1.02);
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.8),
                     0 0 40px rgba(0, 212, 255, 0.4);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.about-intro,
.about-experience {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-white);
    text-align: justify;
    animation: fadeIn 1s ease-out both;
}

.about-intro:nth-child(1) {
    animation-delay: 0.2s;
}

.about-intro:nth-child(2) {
    animation-delay: 0.4s;
}

.about-experience {
    animation-delay: 0.6s;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--primary-blue);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.about-experience:hover {
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--glow-green);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.about-intro strong,
.about-experience strong {
    color: var(--primary-blue);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.about-intro strong:hover,
.about-experience strong:hover {
    color: var(--glow-green);
    text-shadow: 0 0 15px rgba(0, 255, 150, 0.5);
    transform: scale(1.05);
}

.education-section {
    margin-top: 50px;
    animation: fadeIn 1s ease-out 0.8s both;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.education-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.education-title:hover {
    transform: translateZ(10px) scale(1.02);
}

.education-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 35px 40px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.education-card:nth-child(2) {
    animation-delay: 0.9s;
}

.education-card:nth-child(3) {
    animation-delay: 1.0s;
}

.education-card:nth-child(4) {
    animation-delay: 1.1s;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.education-card:hover::before {
    transform: translateX(100%);
}

.education-card:hover {
    transform: translateY(-10px) rotateX(5deg) translateZ(10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-degree {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 20px 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.education-card:hover .education-degree {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transform: translateX(5px);
}

.education-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.education-institution {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.education-institution i {
    color: var(--primary-blue);
    font-size: 20px;
    min-width: 24px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.education-institution span {
    line-height: 1.5;
}

.education-status {
    margin: 5px 0;
}

.status-text {
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.education-year {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.education-year i {
    color: var(--primary-blue);
    font-size: 18px;
    min-width: 24px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.education-card:hover .education-institution i,
.education-card:hover .education-year i {
    color: var(--glow-green);
    transform: scale(1.2) rotateY(360deg);
    text-shadow: 0 0 10px rgba(0, 255, 150, 0.5);
}

.education-card:hover .education-institution,
.education-card:hover .education-year,
.education-card:hover .status-text {
    color: var(--text-white);
    transform: translateX(5px);
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-main {
        padding: 150px 30px 100px;
    }

    .about-container {
        padding: 50px 40px;
        border-radius: 25px;
    }

    .about-title {
        font-size: 48px;
    }

    .education-title {
        font-size: 36px;
    }

    .education-degree {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding: 200px 20px 50px;
    }

    .about-container {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about-intro,
    .about-experience {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-experience {
        padding: 20px;
    }

    .education-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .education-card {
        padding: 25px 30px;
    }

    .education-degree {
        font-size: 20px;
    }

    .education-info {
        gap: 12px;
    }

    .education-institution,
    .education-year,
    .status-text {
        font-size: 14px;
    }

    .education-institution i,
    .education-year i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-intro,
    .about-experience {
        font-size: 15px;
    }

    .education-title {
        font-size: 24px;
    }

    .education-card {
        padding: 20px 25px;
    }

    .education-degree {
        font-size: 18px;
    }

    .education-info {
        gap: 10px;
    }

    .education-institution,
    .education-year,
    .status-text {
        font-size: 13px;
    }

    .education-institution i,
    .education-year i {
        font-size: 14px;
    }
}

/* Contact Page Styles */
.contact-main {
    position: relative;
    z-index: 1;
    padding: 150px 50px 100px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.contact-container {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 40px rgba(0, 212, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    animation: containerGlow 8s infinite ease-in-out;
    pointer-events: none;
}

.contact-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 0 50px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px) rotateX(2deg);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.contact-title {
    font-size: 56px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: titleGlow 3s infinite ease-in-out;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-heart {
    color: var(--primary-blue);
    font-size: 48px;
    animation: heartBeat 2s infinite ease-in-out;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

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

.contact-title:hover {
    transform: translateZ(10px) scale(1.02);
}

.contact-title:hover .contact-heart {
    transform: scale(1.2) rotateZ(15deg);
    color: #ff4444;
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.4s both;
}

/* Contact Social Icons */
.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.contact-social-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 28px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.contact-social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.contact-social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.contact-social-icon:hover {
    transform: translateY(-10px) translateZ(15px) scale(1.1);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--primary-blue);
    background: rgba(0, 212, 255, 0.1);
}

.contact-social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-social-icon:hover i {
    transform: scale(1.2) rotateY(360deg);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-input::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(15, 15, 20, 0.9);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
                inset 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.submit-btn {
    padding: 18px 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.submit-btn:active {
    transform: translateY(-2px) translateZ(5px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(15deg);
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-main {
        padding: 150px 30px 100px;
    }

    .contact-container {
        padding: 50px 40px;
        border-radius: 25px;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-heart {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 200px 20px 50px;
    }

    .contact-container {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .contact-title {
        font-size: 32px;
        gap: 10px;
    }

    .contact-heart {
        font-size: 28px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-social-icons {
        gap: 20px;
    }

    .contact-social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-input {
        padding: 15px 18px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 28px;
        flex-direction: column;
    }

    .contact-heart {
        font-size: 24px;
    }

    .contact-social-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .form-row {
        gap: 15px;
    }

    .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Gallery Page Styles */
.gallery-main {
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.gallery-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-icon {
    font-size: 48px;
    background: linear-gradient(135deg, #ff6b35, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 3s infinite ease-in-out;
    transform-style: preserve-3d;
}

.gallery-title {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: nameGlow 3s infinite ease-in-out;
}

.gallery-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    transform: translateX(100%);
}

.gallery-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--primary-blue);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3),
                inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-white);
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item-description {
    font-size: 14px;
    color: var(--primary-blue);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-main {
        padding: 200px 20px 50px;
    }

    .gallery-title {
        font-size: 42px;
    }

    .gallery-icon {
        font-size: 36px;
    }

    .gallery-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 36px;
    }

    .gallery-icon {
        font-size: 28px;
    }

    .gallery-item-title {
        font-size: 18px;
    }

    .gallery-item-description {
        font-size: 12px;
    }
}

/* Resume Page Styles */
.resume-main {
    position: relative;
    z-index: 1;
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.resume-container {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 0 40px rgba(0, 212, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.resume-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    animation: containerGlow 8s infinite ease-in-out;
    pointer-events: none;
}

.resume-container:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3),
                inset 0 0 50px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px) rotateX(2deg);
}

.resume-header-title {
    font-size: 24px;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.2s both;
}

.resume-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.resume-left-column,
.resume-right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.resume-section {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.resume-section:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.resume-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resume-section-title i {
    font-size: 18px;
}

/* Personal Info */
.resume-personal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.resume-name {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.resume-name i {
    color: var(--primary-blue);
    font-size: 24px;
}

.resume-title {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.resume-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin: 15px 0;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--primary-blue);
    border-radius: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.resume-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white);
    font-size: 14px;
    margin-top: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.resume-contact-item span {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.resume-contact-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

/* Education */
.resume-education-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resume-degree {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.resume-institution {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.resume-specialization {
    font-size: 14px;
    color: var(--primary-blue);
    margin: 0;
    font-style: italic;
}

/* Achievements */
.resume-achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resume-achievement-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.resume-achievement-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.resume-achievement-item:last-child {
    margin-bottom: 0;
}

/* Projects */
.resume-project-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.resume-project-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resume-project-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.resume-project-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Skills */
.resume-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.resume-skill-tag {
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-white);
    transition: all 0.3s ease;
    cursor: default;
}

.resume-skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* PDF Viewer Section */
.resume-pdf-section {
    margin-top: 50px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.resume-pdf-container {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.resume-pdf-viewer {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.resume-pdf-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.resume-download-btn:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.resume-download-btn i {
    transition: transform 0.3s ease;
}

.resume-download-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive Design for Resume Page */
@media (max-width: 968px) {
    .resume-main {
        padding: 150px 30px 100px;
    }

    .resume-container {
        padding: 50px 40px;
        border-radius: 25px;
    }

    .resume-summary-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .resume-pdf-viewer {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .resume-main {
        padding: 200px 20px 50px;
    }

    .resume-container {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .resume-header-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .resume-name {
        font-size: 24px;
    }

    .resume-title {
        font-size: 16px;
    }

    .resume-section {
        padding: 20px;
    }

    .resume-section-title {
        font-size: 18px;
    }

    .resume-pdf-viewer {
        height: 500px;
    }

    .resume-download-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .resume-container {
        padding: 30px 20px;
    }

    .resume-header-title {
        font-size: 18px;
    }

    .resume-name {
        font-size: 20px;
    }

    .resume-pdf-viewer {
        height: 400px;
    }
}

/* Subscribe Modal */
.subscribe-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.subscribe-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.subscribe-modal {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2),
                0 0 40px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.subscribe-modal-overlay.active .subscribe-modal {
    transform: scale(1) translateY(0);
}

.subscribe-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.subscribe-modal-close:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.subscribe-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.subscribe-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6);
    }
}

.subscribe-modal-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--text-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.subscribe-modal-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2), 0 0 5px rgba(255, 255, 255, 0.1);
}

.subscribe-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.subscribe-btn-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.subscribe-btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.3);
}

.subscribe-btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.subscribe-btn i {
    font-size: 20px;
}

.subscribe-modal-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.subscribe-modal-footer-text {
    color: var(--text-gray);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.2), 0 0 4px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .subscribe-modal {
        padding: 30px 25px;
        max-width: 90%;
    }

    .subscribe-modal-title {
        font-size: 24px;
    }

    .subscribe-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .subscribe-modal {
        padding: 25px 20px;
    }

    .subscribe-modal-title {
        font-size: 20px;
    }

    .subscribe-modal-subtitle {
        font-size: 14px;
    }

    .subscribe-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Workshop Modal */
.workshop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.workshop-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.workshop-modal {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2),
                0 0 40px rgba(0, 212, 255, 0.1),
                inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.workshop-modal-overlay.active .workshop-modal {
    transform: scale(1) translateY(0);
}

.workshop-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.workshop-modal-close:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-blue);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.workshop-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.workshop-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--glow-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 255, 150, 0.4);
    animation: pulse 2s infinite;
}

.workshop-modal-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--glow-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 150, 0.5)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    text-shadow: 0 0 20px rgba(0, 255, 150, 0.4);
}

.workshop-modal-subtitle {
    color: var(--text-white);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 150, 0.3), 0 0 5px rgba(0, 212, 255, 0.2);
}

.workshop-modal-highlight {
    color: var(--primary-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-size: 18px;
}

.workshop-modal-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.workshop-icon-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.workshop-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.workshop-icon-link:hover::before {
    left: 100%;
}

.workshop-icon-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.workshop-icon-link i {
    position: relative;
    z-index: 1;
}

.workshop-modal-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.workshop-modal-footer-text {
    color: var(--text-gray);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0, 255, 150, 0.2), 0 0 4px rgba(0, 212, 255, 0.1);
}

@media (max-width: 768px) {
    .workshop-modal {
        padding: 30px 25px;
        max-width: 90%;
    }

    .workshop-modal-title {
        font-size: 28px;
    }
    
    .workshop-modal-icons {
        gap: 20px;
    }
    
    .workshop-icon-link {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .workshop-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .workshop-modal {
        padding: 25px 20px;
    }

    .workshop-modal-title {
        font-size: 24px;
    }

    .workshop-modal-subtitle {
        font-size: 14px;
    }
    
    .workshop-modal-icons {
        gap: 15px;
    }
    
    .workshop-icon-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

