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

:root {
    --primary-color: #00d9ff;
    --secondary-color: #7b2cbf;
    --accent-color: #ff006e;
    --bg-dark: #0a0a0a;
    --bg-light: #1a1a1a;
    --card-bg: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, #00d9ff 0%, #7b2cbf 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fixed Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        var(--bg-dark);
    z-index: -1;
    pointer-events: none;
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

/* Profile Photo Circle */
.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    overflow: visible;
    border: 2px solid transparent;
    background: var(--gradient);
    padding: 2px;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    animation: fadeInUp 1s ease, glow 3s ease-in-out infinite alternate;
    position: relative;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.profile-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    opacity: 0.5;
    animation: pulse-ring 2s ease-in-out infinite;
}

.profile-photo::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 217, 255, 0.3);
    animation: rotate 8s linear infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 217, 255, 0.5),
        0 0 60px rgba(123, 44, 191, 0.4);
}

.profile-photo:hover::before {
    animation: pulse-ring 1s ease-in-out infinite;
    border-color: var(--primary-color);
    opacity: 1;
}

.profile-photo:hover::after {
    animation: rotate 3s linear infinite;
    border-color: rgba(0, 217, 255, 0.6);
}

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

.profile-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.profile-photo:hover img {
    transform: scale(1);
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    }
    to {
        box-shadow: 0 0 40px rgba(123, 44, 191, 0.5);
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.wave {
    display: inline-block;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

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

.floating-box {
    position: absolute;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
}

.box-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.box-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.box-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.resume-icon {
    transition: transform 0.3s ease;
    fill: var(--primary-color);
}

.resume-btn:hover .resume-icon {
    fill: var(--bg-dark);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Circle Skill Cards */
.skill-card-circle {
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.skill-card-circle:hover {
    transform: translateY(-8px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.skill-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-card-circle:hover .skill-icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

.skill-card-circle h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    padding: 5px 12px;
    background: transparent;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.skill-card-circle:hover .skill-tag {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.skill-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.skill-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.skill-card.animate .skill-progress {
    width: var(--progress);
}

/* Projects Section */
.projects {
    position: relative;
}

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

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, transparent 50%, rgba(123, 44, 191, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

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

.project-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    padding-top: 55px;
    opacity: 1;
}

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.project-overlay p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-links {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    z-index: 10;
}

.project-btn-live {
    padding: 5px 14px;
    background: rgba(0, 217, 255, 0.2);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.project-btn-live:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 3px 10px rgba(0, 217, 255, 0.4);
}

.project-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 217, 255, 0.2);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.project-btn-icon svg {
    width: 14px;
    height: 14px;
}

.project-btn-icon:hover {
    background: rgba(0, 217, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 15px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-item .icon {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    background: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    border: 1px solid var(--primary-color);
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.2);
}

.social-link:hover .social-icon {
    fill: var(--text-primary);
    transform: scale(1.2);
}

/* Contact Queue Cards */
.contact-queue {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    border: 1px solid var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-card-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card-icon.linkedin {
    background: #0077b5;
}

.contact-card-icon.gmail {
    background: linear-gradient(135deg, #ea4335, #fbbc05, #34a853, #4285f4);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-card-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

/* Certifications Section */
.certifications {
    position: relative;
}



.cert-card {
    background: var(--card-bg);
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    max-width: 280px;
    margin: 0 auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cert-card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.2);
}

.cert-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.cert-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cert-card p {
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.cert-date {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
}

.cert-view-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 24px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cert-view-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}


/* Education Section */
.education {
    position: relative;
}

.education-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.education-card:hover::before {
    transform: scaleY(1);
}

.education-card:hover {
    transform: translateX(10px);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.edu-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.education-card:hover .edu-icon {
    transform: scale(1.1) rotate(10deg);
}

.edu-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edu-institution {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.edu-field {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.edu-year {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
    }

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

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

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

    .hero-description {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 25px;
    }

    .resume-btn {
        justify-content: center;
        width: auto;
        max-width: none;
    }

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

    .about-text p {
        font-size: 1rem;
    }

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

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .skills-grid,
    .projects-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-card-circle {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .skill-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .skill-card-circle h3 {
        font-size: 1rem;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .profile-photo {
        width: 140px;
        height: 140px;
    }

    .project-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .project-card:hover {
        transform: translateY(-5px);
    }

    .project-image {
        height: 200px;
    }

    .project-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }

    .project-overlay h3 {
        font-size: 1.2rem;
    }

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

    .cert-card {
        padding: 1rem;
        max-width: 240px;
    }

    .cert-icon {
        font-size: 1.8rem;
    }

    .cert-card h3 {
        font-size: 1rem;
    }

    .education-timeline {
        grid-template-columns: 1fr;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }

    .education-card:hover {
        transform: translateY(-10px);
    }

    .edu-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
    }

    .edu-content h3 {
        font-size: 1.1rem;
    }

    .contact-queue {
        padding: 0 10px;
    }

    .contact-card {
        padding: 1.2rem 1rem;
        gap: 1rem;
    }

    .contact-card:hover {
        transform: translateX(5px);
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card-content h3 {
        font-size: 1rem;
    }

    .contact-card-content p {
        font-size: 0.8rem;
    }

    .contact-card-arrow {
        opacity: 1;
        font-size: 1.2rem;
    }

    .social-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.8rem;
        justify-content: center;
    }

    .social-link {
        width: 50px;
        height: 50px;
        padding: 0;
    }

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

    .footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

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

    .nav-container {
        padding: 1rem;
    }

    section {
        padding: 50px 10px;
    }

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

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .skill-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .project-image {
        height: 180px;
    }

    .contact-card {
        padding: 1rem 0.8rem;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-card-icon svg {
        width: 18px;
        height: 18px;
    }
}
