/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #00f5ff;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --tertiary: #00ff88;
    --bg-dark: #0a0a0f;
    --bg-light: #f0f4f8;
    --text-dark: #ffffff;
    --text-light: #1a1a2e;
    --card-dark: rgba(20, 20, 35, 0.9);
    --card-light: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--tertiary));
    --shadow-neon: 0 0 30px rgba(0, 245, 255, 0.3);
    --shadow-neon-strong: 0 0 50px rgba(0, 245, 255, 0.5);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
    transition: background 0.5s ease, color 0.5s ease;
    line-height: 1.6;
}

body.light-mode {
    background: var(--bg-light);
    color: var(--text-light);
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body.light-mode::-webkit-scrollbar-track {
    background: var(--bg-light);
}

/* ==================== SELECTION ==================== */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, border-color 0.3s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.08s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    border-color: var(--secondary);
    background: rgba(0, 245, 255, 0.1);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* ==================== LOADING SCREEN ==================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 245, 255, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: loading 2s ease-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    20% {
        width: 50%;
    }

    50% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ==================== 3D CANVAS ==================== */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.85);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 0.7rem 3%;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-neon);
}

body.light-mode .nav {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 0.85rem;
    opacity: 0.7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Theme Toggle */
.theme-toggle {
    width: 55px;
    height: 28px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

body.light-mode .theme-toggle {
    background: linear-gradient(135deg, #87CEEB, #FFD700);
    border-color: rgba(0, 0, 0, 0.2);
}

.theme-toggle::after {
    content: '🌙';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: left 0.3s ease;
}

body.light-mode .theme-toggle::after {
    content: '☀️';
    left: 30px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== SECTIONS ==================== */
section {
    min-height: 100vh;
    padding: 100px 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ==================== HERO SECTION ==================== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    z-index: 10;
    max-width: 900px;
}

.hero-greeting {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 10vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--tertiary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: gradientShift 5s ease infinite;
    text-shadow: 0 0 60px rgba(0, 245, 255, 0.5);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    min-height: 3rem;
}

.typing-text {
    color: var(--primary);
    position: relative;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: var(--primary);
    margin-left: 5px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
}

/* Buttons */
.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

body.light-mode .btn-tertiary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-8px) rotate(360deg);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 2.5s;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-mouse::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }

    60% {
        transform: translateY(-6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ==================== ABOUT SECTION ==================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    perspective: 1000px;
}

.avatar-container {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-25px) rotateY(10deg);
    }
}

.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: var(--shadow-neon-strong);
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    animation: spin linear infinite;
}

.avatar-ring-1 {
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border-color: var(--primary);
    animation-duration: 20s;
}

.avatar-ring-2 {
    top: -45px;
    left: -45px;
    right: -45px;
    bottom: -45px;
    border-color: var(--secondary);
    animation-duration: 25s;
    animation-direction: reverse;
}

.avatar-ring-3 {
    top: -65px;
    left: -65px;
    right: -65px;
    bottom: -65px;
    border-color: var(--tertiary);
    animation-duration: 30s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(30px);
    z-index: 1;
}

.about-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.05rem;
}

.fun-facts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.fun-fact {
    padding: 8px 16px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.fun-fact:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-dark);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

body.light-mode .highlight-item {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary);
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.highlight-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

/* ==================== SKILLS SECTION ==================== */
.skills-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.skill-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.skill-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-dark);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.light-mode .skill-item {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary);
}

.skill-item:hover::before {
    transform: scaleX(1);
}

.skill-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    position: relative;
}

.skill-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.skill-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.skill-circle .bg {
    stroke: rgba(255, 255, 255, 0.1);
}

body.light-mode .skill-circle .bg {
    stroke: rgba(0, 0, 0, 0.1);
}

.skill-circle .progress {
    stroke: url(#skillGradient);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.skill-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.skill-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: none;
}

.skill-item:hover .skill-icon-center {
    display: none;
}

.skill-item:hover .skill-percentage {
    display: block;
}

.skill-name {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ==================== SERVICES SECTION ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: var(--card-dark);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.light-mode .service-card {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-desc {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ==================== PROJECTS SECTION ==================== */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 25px;
    color: inherit;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.project-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

body.light-mode .project-card {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-neon-strong);
}

.project-card.featured {
    border-color: var(--primary);
}

.project-card.featured::before {
    content: '⭐ Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.project-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-link.live {
    background: var(--gradient-primary);
    color: #000;
}

.project-link.code {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-link:hover {
    transform: scale(1.05);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.project-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary);
    color: #000;
}

/* ==================== VLOGS SECTION ==================== */
.vlogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vlogs-filter {
    display: flex;
    gap: 0.5rem;
}

.youtube-btn {
    background: #ff0000;
    color: #fff;
}

.youtube-btn:hover {
    background: #cc0000;
}

.vlogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vlog-card {
    background: var(--card-dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

body.light-mode .vlog-card {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.vlog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.vlog-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vlog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vlog-card:hover .vlog-thumbnail img {
    transform: scale(1.1);
}

.vlog-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vlog-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

.vlog-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.vlog-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-primary);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vlog-content {
    padding: 1.5rem;
}

.vlog-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    line-height: 1.4;
}

.vlog-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.vlog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Blog Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.blog-card {
    background: var(--card-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

body.light-mode .blog-card {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
}

.blog-image {
    height: 150px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.2rem;
}

.blog-category {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.blog-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ==================== TIMELINE SECTION ==================== */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-content {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 15px;
    max-width: 420px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

body.light-mode .timeline-content {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--card-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: var(--shadow-neon);
    z-index: 10;
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-org {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.timeline-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ==================== ACHIEVEMENTS SECTION ==================== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.achievement-card {
    padding: 2rem;
    background: var(--card-dark);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

body.light-mode .achievement-card {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    margin: 0 auto 1rem;
}

.achievement-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.achievement-org {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.achievement-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-content {
    background: var(--card-dark);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    position: relative;
}

body.light-mode .testimonial-content {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.9;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-neon);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--primary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: var(--shadow-neon);
}

.testimonial-nav button:hover {
    background: var(--primary);
}

/* ==================== CONTACT SECTION ==================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info>p {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--card-dark);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

body.light-mode .contact-item {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    flex-shrink: 0;
}

.contact-details span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--tertiary);
    border-radius: 25px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: var(--tertiary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.contact-form {
    background: var(--card-dark);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

body.light-mode .contact-form {
    background: var(--card-light);
    border-color: rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    color: inherit;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 4rem 5% 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-text span {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .avatar-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        z-index: 999;
    }

    body.light-mode .nav-links {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 25px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 25px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .projects-container,
    .vlogs-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    body {
        cursor: auto;
    }

    section {
        padding: 80px 4%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .avatar-container {
        width: 200px;
        height: 200px;
    }

    .avatar-ring-2,
    .avatar-ring-3 {
        display: none;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .skill-item {
        padding: 1.5rem 1rem;
    }

    .skill-circle {
        width: 80px;
        height: 80px;
    }
}