:root {
    --bg-color: #0d0d0d;
    --card-bg: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --font-heading: 'Fira Code', monospace;
    --font-body: 'Inter', sans-serif;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Layout */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Desktop Layout */
@media (min-width: 1024px) {
    .container {
        flex-direction: row;
        align-items: flex-start;
        padding: 40px;
    }

    .column {
        flex: 1;
        min-width: 0;
        /* Prevent flex overflow */
    }
}

/* Typography & Base */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

em {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: var(--font-heading);
}

.btn-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    color: black;
    margin-left: 10px;
}

.btn-small {
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-circle-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    color: black;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-circle-small-white {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    color: black;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    margin-right: 10px;
}

.btn-circle-white {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-pill-small {
    background-color: white;
    color: black;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Header */
.section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hero {
    padding-top: 30px;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.menu-icon {
    cursor: pointer;
    font-size: 1.2rem;
}

.main-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-secondary);
    max-width: 90%;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    gap: 8px;
    border: 1px solid transparent;
}

.social-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Featured Article */
.card-image-placeholder {
    height: 180px;
    border-radius: var(--border-radius-sm);
    background-color: #222;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.gradient-1 {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-blob {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
}

.gradient-2 {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-2 .blur-blob {
    background: radial-gradient(circle, rgba(43, 138, 226, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
}

.gradient-3 {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-3 .blur-blob {
    background: radial-gradient(circle, rgba(226, 43, 138, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.article-slide {
    animation: fadeSlide 0.5s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    align-items: center;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0 5px;
}

.nav-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dots span.active {
    background-color: white;
}

/* About Section */
.section-label {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.about-text {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text em {
    color: white;
    font-style: normal;
    font-weight: 600;
}

.profile-image-container {
    height: 320px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background-color: #222;

    /* Placeholder */
    background-size: cover;
    background-position: center;
    /* filter: grayscale(100%); */
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

/* Skills */
.skill-group {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.skill-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.skill-group h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: white;
}

.skill-tags {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: var(--font-heading);
    font-size: 0.85rem;
}

.skill-tags span {
    color: var(--text-primary);
}

.skill-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.skill-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

/* Work History */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: right;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-item {
    display: flex;
    gap: 15px;
}

.work-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    min-width: 90px;
}

.duration {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.work-details {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
    flex: 1;
}

.company {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.work-summary {
    margin-top: 40px;
    text-align: right;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.work-summary strong {
    color: white;
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Projects */
.project-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-image-placeholder {
    padding: 24px;
    min-height: 250px;
    position: relative;
}

.go-stat-bg {
    background: radial-gradient(circle at top right, #333, #0a0a0a);
}

.restaurant-bg {
    background: radial-gradient(circle at top right, rgba(74, 44, 15, 0.4), rgba(26, 15, 5, 0.8)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1000&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.appointment-bg {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)), url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?q=80&w=1000&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    height: 180px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.appointment-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hotel-bg {
    background: linear-gradient(135deg, rgba(255, 183, 94, 0.4), rgba(237, 143, 3, 0.6)), url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?q=80&w=1000&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    height: 180px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hotel-icon {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.ott-bg {
    background: linear-gradient(to bottom, rgba(229, 9, 20, 0.4), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1616530940355-351fabd9524b?q=80&w=1000&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    height: 180px;
    position: relative;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ott-icon {
    font-size: 3.5rem;
    color: white;
}

.project-content-overlay {
    position: relative;
    z-index: 2;
}

.project-tags {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.small-text {
    font-size: 0.8rem !important;
}

.project-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.card-content {
    padding: 20px;
}

.feature-list {
    list-style: none;
    margin: 15px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
}

.feature-list li {
    margin-bottom: 6px;
}

.connect-msg {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.project-actions {
    display: flex;
    margin-top: 15px;
    justify-content: flex-end;
}

/* Articles List */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.page-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.page-num.active {
    background-color: white;
    color: black;
}

.next-page {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

/* Footer / Contact */
.contact {
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.site-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: right;
    line-height: 1.5;
}

.info-label {
    margin-bottom: 8px;
    color: white;
    font-family: var(--font-heading);
}

.footer-name {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-role {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.footer-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-social-btn {
    background-color: #222;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.footer-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: #2a2a2a;
}

/* Article Pages logic */
.article-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-panel {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-panel-left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.loader-panel-right {
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

#loading-screen.loaded .loader-panel-left {
    transform: translate(-100%, -100%);
}

#loading-screen.loaded .loader-panel-right {
    transform: translate(100%, 100%);
}

.loader-content {
    font-family: var(--font-heading);
    font-size: 10rem;
    font-weight: 900;
    color: #ff0000;
    letter-spacing: -5px;
    z-index: 10;
    position: relative;
    user-select: none;
    transition: all 0.5s ease;
}

.loader-content span {
    display: inline-block;
    transition: transform 0.2s ease;
}

#loading-screen.counting .loader-content {
    animation: glitch 0.2s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: 2px 2px #fff;
    }

    25% {
        transform: translate(-2px, 2px);
        text-shadow: -2px -2px #0ff;
    }

    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px -2px #f0f;
    }

    75% {
        transform: translate(-2px, -2px);
        text-shadow: -2px 2px #fff;
    }

    100% {
        transform: translate(0);
    }
}

#loading-screen.loaded .loader-content {
    opacity: 0;
    transform: scale(2) rotate(10deg);
    filter: blur(20px);
}

/* Custom Cursor Animation */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.1s ease-out;
}

/* Cursor effects on hover */
body:active .cursor-outline {
    transform: translate(-50%, -50%) scale(0.8);
}

.link-hover .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Mobile Menu & Hamburger Icon */
.menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 10002;
    /* Above overlay */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: left center;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 28px;
}

.menu-icon.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 28px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    clip-path: circle(0% at top right);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at top right);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-overlay.active .mobile-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-overlay.active .mobile-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-overlay.active .mobile-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-link:hover {
    color: #ff0000;
    letter-spacing: 5px;
}

/* Destruction Mode Styles */
.bullet {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: #ff0000;
    border-radius: 50%;
    z-index: 10005;
    pointer-events: none;
    box-shadow: 0 0 10px #ff0000;
}

.falling-element {
    transition: transform 1.5s cubic-bezier(0.47, 0, 0.745, 0.715);
    pointer-events: none !important;
}

.reassembling-element {
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.firing-active .cursor-outline {
    border-color: #ff0000 !important;
    animation: pulse-red 0.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Background Glow Hover Effect */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 123, 213, 0.15) 0%, rgba(58, 123, 213, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

body:hover .bg-glow {
    opacity: 1;
}

/* Card Spotlight Effect */
.section,
.project-card,
.article-item,
.work-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.section:hover,
.project-card:hover,
.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.section::before,
.project-card::before,
.article-item::before,
.work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section:hover::before,
.project-card:hover::before,
.article-item:hover::before,
.work-item:hover::before {
    opacity: 1;
}

/* Specific Hover Enhancements */
.social-btn {
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
    background-color: white !important;
    color: black !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.skill-tags span {
    display: inline-block;
    transition: all 0.2s ease;
}

.skill-tags span:hover {
    color: #ff0000;
    transform: scale(1.2);
    cursor: default;
}

.project-card {
    cursor: pointer;
}

.footer-social-btn {
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    transform: translateX(10px);
}