@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #0a0a0f;
    --second-bg-color: #131318;
    --text-color: #ffffff;
    --main-color: #00ffee;
    --secondary-color: #ff006e;
    --accent-color: #8338ec;
    --gradient-1: linear-gradient(135deg, #00ffee 0%, #8338ec 100%);
    --gradient-2: linear-gradient(135deg, #ff006e 0%, #00ffee 100%);
    --card-bg: rgba(19, 19, 24, 0.8);
    --shadow-glow: 0 0 30px rgba(0, 255, 238, 0.3);
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

/* ============= ANIMATED BACKGROUND ============= */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0f 0%, #131318 50%, #1a1a24 100%);
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--main-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 10px var(--main-color);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 30%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { top: 60%; left: 50%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 80%; animation-duration: 22s; animation-delay: 1.5s; }
.particle:nth-child(6) { top: 70%; left: 20%; animation-duration: 19s; animation-delay: 2.5s; }
.particle:nth-child(7) { top: 50%; left: 90%; animation-duration: 17s; animation-delay: 0.5s; }
.particle:nth-child(8) { top: 10%; left: 60%; animation-duration: 21s; animation-delay: 3.5s; }
.particle:nth-child(9) { top: 90%; left: 40%; animation-duration: 18s; animation-delay: 1s; }
.particle:nth-child(10) { top: 25%; left: 5%; animation-duration: 20s; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(100px, -100px) scale(1.5); opacity: 0.8; }
    50% { transform: translate(200px, 50px) scale(1); opacity: 0.6; }
    75% { transform: translate(-100px, 100px) scale(1.2); opacity: 0.7; }
}

/* ============= SCROLL PROGRESS BAR ============= */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px var(--main-color);
}

/* ============= HEADER ============= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 10%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 238, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1.5rem 10%;
    box-shadow: 0 5px 30px rgba(0, 255, 238, 0.2);
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.4);
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 25px rgba(0, 255, 238, 0.8);
}

.logo:hover {
    transform: scale(1.05);
}

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

.navbar {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.navbar a:hover::before,
.navbar a.active::before {
    width: 100%;
}

.navbar a:hover {
    color: var(--main-color);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
    cursor: pointer;
    transition: 0.3s ease;
}

#menu-icon:hover {
    transform: rotate(90deg);
}

/* ============= SECTIONS ============= */
section {
    min-height: 100vh;
    padding: 10rem 10% 8rem;
}

/* ============= HOME SECTION ============= */
.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    padding-top: 12rem;
}

.home-content {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

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

.greeting {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wave {
    font-size: 3rem;
    animation: wave 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}

.greeting h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.home-content h1 {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.role-container {
    margin-bottom: 2rem;
}

.text-animation {
    font-size: 3rem;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
    display: inline-block;
    min-height: 4rem;
}

.typing-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    margin-left: 3px;
    animation: blink 0.7s infinite;
    color: var(--main-color);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.intro-text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 650px;
}

.highlight-text {
    color: var(--main-color);
    font-weight: 600;
}

/* ============= STATS CONTAINER ============= */
.stats-container {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 238, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
    box-shadow: var(--shadow-glow);
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--main-color);
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-color);
}

.stat-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============= SOCIAL ICONS ============= */
.social-icons {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.5rem;
    border-radius: 50%;
    color: var(--main-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    transition: width 0.4s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
}

.social-icons a:hover {
    color: var(--bg-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-glow);
}

/* ============= BUTTONS ============= */
.btn-group {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3.5rem;
    background: var(--main-color);
    border-radius: 50px;
    font-size: 1.7rem;
    color: var(--bg-color);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.4);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 238, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--main-color);
}

.btn-secondary:hover {
    background: var(--main-color);
    color: var(--bg-color);
}

/* ============= HOME IMAGE ============= */
.home-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

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

.img-box {
    position: relative;
    width: 450px;
    height: 450px;
}

.img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

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

.img-box img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--main-color);
    box-shadow: 0 0 50px rgba(0, 255, 238, 0.5);
    object-fit: cover;
    transition: all 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(0, 255, 238, 0.8);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icons i {
    position: absolute;
    font-size: 3rem;
    color: var(--main-color);
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.4);
    animation: orbit 10s linear infinite;
}

.floating-icons i:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 2.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 5s;
}

.floating-icons i:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 7.5s;
}

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

/* ============= ABOUT SECTION ============= */
.about {
    background: var(--second-bg-color);
}

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

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--main-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--main-color);
}

.highlight-item span {
    font-size: 1.5rem;
    color: var(--text-color);
}

/* ============= HEADING ============= */
.heading {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

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

/* ============= EDUCATION SECTION ============= */
.education {
    background: var(--bg-color);
}

.timeline-items {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.timeline-items::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background: var(--gradient-1);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    width: 100%;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    height: 24px;
    width: 24px;
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    top: 10px;
    border: 4px solid var(--bg-color);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 25px var(--main-color); }
    50% { box-shadow: 0 0 40px var(--main-color), 0 0 60px var(--main-color); }
}

.timeline-date {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.timeline-content {
    background: var(--card-bg);
    border: 2px solid rgba(0, 255, 238, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: scale(1.03);
    border-color: var(--main-color);
    box-shadow: var(--shadow-glow);
}

.timeline-icon {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.timeline-content h3 {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-content strong {
    color: var(--main-color);
}

/* ============= SKILLS SECTION ============= */
.skills {
    background: var(--second-bg-color);
}

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

.skill-category {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(0, 255, 238, 0.1);
    transition: all 0.4s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
    border-color: var(--main-color);
    box-shadow: var(--shadow-glow);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.category-header i {
    font-size: 3.5rem;
    color: var(--main-color);
}

.category-header h3 {
    font-size: 2.2rem;
    color: var(--text-color);
}

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

.skill-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(0, 255, 238, 0.1);
    border: 2px solid rgba(0, 255, 238, 0.3);
    border-radius: 30px;
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.skill-badge:hover {
    background: var(--main-color);
    color: var(--bg-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.6);
}

.skill-badge i {
    font-size: 2rem;
}

/* ============= PROJECTS SECTION ============= */
.my-projects {
    background: var(--bg-color);
}

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

.project-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 238, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--main-color);
    box-shadow: var(--shadow-glow);
}

.project-card.featured {
    border: 2px solid var(--main-color);
    box-shadow: 0 0 30px rgba(0, 255, 238, 0.3);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: var(--bg-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

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

.project-image {
    height: 200px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--bg-color);
}

.project-content {
    padding: 3rem;
}

.project-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.6rem 1.5rem;
    background: rgba(0, 255, 238, 0.1);
    border: 1px solid rgba(0, 255, 238, 0.3);
    border-radius: 20px;
    font-size: 1.3rem;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--main-color);
    color: var(--bg-color);
    transform: scale(1.05);
}

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

.project-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.6);
}

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

.project-btn.secondary:hover {
    background: var(--main-color);
    color: var(--bg-color);
}

/* ============= CERTIFICATIONS SECTION ============= */
.certifications {
    background: var(--second-bg-color);
}

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

.cert-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(0, 255, 238, 0.1);
    transition: all 0.4s ease;
    display: flex;
    gap: 2rem;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--main-color);
    box-shadow: var(--shadow-glow);
}

.cert-icon {
    font-size: 6rem;
    color: var(--main-color);
    background: rgba(0, 255, 238, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.cert-content {
    flex: 1;
}

.cert-year {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 238, 0.2);
    border-radius: 20px;
    font-size: 1.3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cert-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cert-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cert-skills span {
    padding: 0.6rem 1.5rem;
    background: rgba(0, 255, 238, 0.1);
    border: 1px solid rgba(0, 255, 238, 0.3);
    border-radius: 20px;
    font-size: 1.3rem;
    color: var(--main-color);
}

/* ============= BACK TO TOP BUTTON ============= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 255, 238, 0.6);
}

/* ============= FOOTER ============= */
.footer {
    background: var(--bg-color);
    border-top: 2px solid rgba(0, 255, 238, 0.1);
    padding: 5rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--main-color);
}

.footer-section p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

.footer .social {
    display: flex;
    gap: 1.5rem;
}

.footer .social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.2rem;
    border-radius: 50%;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.footer .social a:hover {
    background: var(--main-color);
    color: var(--bg-color);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 238, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 238, 0.1);
}

.copyright {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.made-with {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.5);
}

.heart {
    color: var(--secondary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
    
    .home {
        gap: 3rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 5%;
    }
    
    section {
        padding: 10rem 5% 5rem;
    }
    
    .home {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 10rem;
    }
    
    .home-content {
        align-items: center;
    }
    
    .greeting {
        justify-content: center;
    }
    
    .intro-text {
        max-width: 100%;
    }
    
    .stats-container {
        justify-content: center;
    }
    
    .img-box {
        width: 350px;
        height: 350px;
    }
    
    .timeline-items::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .projects-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .navbar {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem 5%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-top: 2px solid var(--main-color);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .navbar.show {
        display: flex;
        top: 100%;
    }
    
    .navbar a {
        font-size: 2rem;
        display: block;
        margin: 0;
    }
    
    .home-content h1 {
        font-size: 5rem;
    }
    
    .text-animation {
        font-size: 2.5rem;
    }
    
    .heading {
        font-size: 5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .img-box {
        width: 300px;
        height: 300px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-card {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer .social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo {
        font-size: 2.2rem;
    }
    
    .home-content h1 {
        font-size: 4rem;
    }
    
    .heading {
        font-size: 4rem;
    }
    
    .img-box {
        width: 250px;
        height: 250px;
    }
    
    .floating-icons i {
        font-size: 2rem;
        padding: 0.8rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ============= CERTIFICATE LINK STYLING ============= */
.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-1);
    color: var(--bg-color);
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 238, 0.2);
}

.cert-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 238, 0.4);
    background: var(--gradient-2);
}

.cert-link i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.cert-link:hover i {
    transform: translateX(3px);
}

/* Mobile responsive for cert links */
@media (max-width: 768px) {
    .cert-link {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
    }
}
