/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #2196f3 rgba(255, 255, 255, 0.1);
}

:root {
    --primary-color: #007bff;
    --text-color: #333;
    --bg-color: #fff;
    --sidebar-bg: #f8f9fa;
}

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

body.loading .floating-nav {
    display: none;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar styles */
.sidebar {
    width: 250px;
    background-color: var(--sidebar-bg);
    padding: 2rem;
    position: fixed;
    height: 100vh;
    border-right: 1px solid #eee;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    font-family: 'Android', sans-serif !important;
}

.logo-quote {
    font-family: 'Amerika', sans-serif !important;
}

.nav-links {
    list-style: none;
    margin: 2rem 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #ffd700;
    margin-top: 2rem;
}

/* Main content area */
.main-content {
    margin-left: 250px;
    padding: 2rem;
    width: calc(100% - 250px);
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1rem;
    }
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    width: 100%;
}

/* .section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
} */

@media (max-width: 768px) {
    .section {
        margin-bottom: 2rem;
    }

    .section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

.clients-section .section-title {
    margin-bottom: 0.3rem;
}

/* Section Transitions */
section {
    opacity: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

section.active {
    display: block;
    opacity: 1;
}

/* Portfolio grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item::before {
    content: 'Click to Preview';
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.portfolio-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-link {
    text-decoration: none;
    color: inherit;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Modern Image Viewer */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.viewer-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.95), rgba(17, 17, 17, 0.98));
    position: relative;
}

.viewer-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.viewer-header.hidden {
    transform: translateY(-100%);
}

.viewer-header h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.viewer-body {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 0 80px;  
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.2);
}

.viewer-body::-webkit-scrollbar {
    width: 6px;
}

.viewer-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.viewer-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.viewer-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

#expandedImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1400px;
    margin: 20px auto;  
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.viewer-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.viewer-footer.hidden {
    transform: translateY(100%);
}

.btn-back,
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    min-width: 140px;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-download {
    background: linear-gradient(135deg, #000dc8, #1735dd);
    box-shadow: 0 4px 12px rgba(0, 153, 200, 0.2);
}

.btn-download:hover {
    background: linear-gradient(135deg, #0020d4, #1a27e3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 170, 200, 0.3);
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .viewer-body {
        padding: 3.5rem 0.5rem;
    }

    .viewer-header,
    .viewer-footer {
        padding: 0.75rem 1rem;
    }

    .btn-back,
    .btn-download {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .viewer-header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .viewer-body {
        padding: 3rem 0.3rem;
    }

    .viewer-header,
    .viewer-footer {
        padding: 0.6rem 0.8rem;
    }

    .btn-back,
    .btn-download {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-width: 100px;
    }

    .close-btn {
        width: 32px;
        height: 32px;
    }
}

/* Resume Section Styles */
.resume-section {
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 1rem;
}

.resume-block {
    width: 100%;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid rgba(33, 150, 243, 0.08);
    margin-bottom: 1rem;
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1rem;
    width: 100%;
}

.project-item,
.experience-item {
    width: 100%;
    background: rgba(33, 150, 243, 0.02);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@keyframes borderAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowAnimation {
    0% { box-shadow: 0 0 5px rgba(33, 150, 243, 0.2); }
    50% { box-shadow: 0 0 10px rgba(33, 150, 243, 0.4); }
    100% { box-shadow: 0 0 5px rgba(33, 150, 243, 0.2); }
}

@keyframes backgroundPulse {
    0% { background-color: rgba(33, 150, 243, 0.02); }
    50% { background-color: rgba(33, 150, 243, 0.06); }
    100% { background-color: rgba(33, 150, 243, 0.02); }
}

.section-title {
    position: relative;
    font-size: 0.65rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
    display: inline-block;
    border-radius: 4px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #007bff;
    border: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
        letter-spacing: 1.2px;
        border-radius: 3px;
    }
    
    .section-title {
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 0.55rem;
        padding: 0.12rem 0.4rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
        border-radius: 3px;
    }
    
    .section-title {
        letter-spacing: 1.2px;
    }
}

.resume-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resume-block {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    border: 1px solid rgba(33, 150, 243, 0.08);
    margin: 0 0.2rem;
}

.resume-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(33, 150, 243, 0.06);
    border-color: rgba(33, 150, 243, 0.15);
}

.resume-heading {
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.2px;
}

.resume-heading::before {
    content: '';
    width: 16px;
    height: 2px;
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    border-radius: 2px;
}

.resume-text {
    color: #546e7a;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    font-weight: 400;
}

.info-grid {
    display: grid;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(33, 150, 243, 0.02);
    transition: all 0.2s ease;
}

.info-item:hover {
    background: rgba(33, 150, 243, 0.04);
}

.info-label {
    color: #1976d2;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.info-value {
    color: #546e7a;
    font-size: 0.92rem;
    line-height: 1.4;
}

.skills-list, 
.project-list, 
.experience-list, 
.social-list {
    display: grid;
    gap: 0.6rem;
}

.skills-list li, 
.project-list li, 
.social-list li {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(33, 150, 243, 0.02);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
}

.skills-list li:hover, 
.project-list li:hover, 
.social-list li:hover {
    background: rgba(33, 150, 243, 0.04);
    transform: translateX(2px);
}

.skills-list li strong, 
.project-list li strong, 
.social-list li strong {
    color: #1976d2;
    min-width: 110px;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.experience-item,
.education-item {
    width: 100%;
    background: rgba(33, 150, 243, 0.02);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.8rem;
}

.experience-item:hover,
.education-item:hover {
    background: rgba(33, 150, 243, 0.04);
}

.job-title {
    color: #1976d2;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.company {
    color: #546e7a;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.experience-list li {
    color: #546e7a;
    margin-bottom: 0.4rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
    font-size: 0.92rem;
}

.experience-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1976d2;
    font-size: 0.9rem;
}

.education-item p {
    color: #546e7a;
    font-size: 0.92rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.project-content,
.experience-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.project-item,
.experience-item {
    background: rgba(33, 150, 243, 0.02);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.project-item:hover,
.experience-item:hover {
    background: rgba(33, 150, 243, 0.04);
    transform: translateX(2px);
}

.project-title,
.job-title {
    color: #1976d2;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
}

.project-description,
.experience-details p {
    color: #546e7a;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.company-date {
    color: #546e7a;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .resume-section {
        padding: 0.5rem;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.2rem;
        letter-spacing: 2px;
    }

    .resume-block {
        padding: 1rem;
        margin: 0 0 1rem 0;
        border-radius: 8px;
    }

    .resume-heading {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .resume-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
        white-space: pre-line;
    }

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

    .info-grid {
        gap: 0.6rem;
    }

    .info-item {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .info-label {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .info-value {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .skills-list,
    .project-list,
    .experience-list,
    .social-list {
        gap: 0.5rem;
    }

    .skills-list li,
    .project-list li,
    .experience-list li,
    .social-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .skills-list li strong,
    .project-list li strong,
    .social-list li strong {
        min-width: 100%;
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }

    .experience-item,
    .education-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .job-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .company-date {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .experience-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
        padding-left: 0.8rem;
    }

    .experience-list li::before {
        font-size: 0.8rem;
        top: 0.3rem;
    }

    .education-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .resume-section {
        padding: 0.3rem;
    }

    .section-title {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        letter-spacing: 1.5px;
    }

    .resume-block {
        padding: 0.8rem;
        margin: 0 0 0.8rem 0;
    }

    .resume-heading {
        font-size: 1rem;
    }

    .resume-text {
        font-size: 0.85rem;
    }

    .info-item,
    .skills-list li,
    .project-list li,
    .experience-list li,
    .social-list li {
        padding: 0.6rem;
    }

    .experience-item,
    .education-item {
        padding: 0.6rem;
    }

    .company-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .resume-section {
        padding: 0.6rem 0.2rem;
        margin: 0.2rem;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .resume-block {
        padding: 0.7rem;
        margin: 0 0.1rem;
    }

    .resume-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
}

@media (max-width: 480px) {
    .resume-section {
        padding: 0.4rem 0.15rem;
        margin: 0.15rem;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .resume-block {
        padding: 0.6rem;
        margin: 0;
    }

    .info-item, 
    .skills-list li, 
    .project-list li, 
    .social-list li,
    .experience-item,
    .education-item {
        padding: 0.5rem 0.6rem;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links li {
        margin: 0;
    }
    
    .container {
        flex-direction: column;
    }

    .viewer-content {
        width: 95%;
        margin: 1rem;
    }

    .viewer-header h2 {
        font-size: 1.2rem;
    }

    .viewer-body {
        padding: 1rem;
    }

    .viewer-footer {
        flex-direction: column;
    }

    .btn-back,
    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

/* Resume Section Mobile Optimizations */
@media (max-width: 768px) {
    .resume-section {
        padding: 0.5rem;
        margin: 0 auto;
    }

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

    .resume-block {
        padding: 1rem;
        margin: 0 0 1rem 0;
        border-radius: 8px;
    }

    .resume-heading {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .resume-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
        white-space: pre-line;
    }

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

    .info-grid {
        gap: 0.6rem;
    }

    .info-item {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .info-label {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .info-value {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .skills-list,
    .project-list,
    .experience-list,
    .social-list {
        gap: 0.5rem;
    }

    .skills-list li,
    .project-list li,
    .experience-list li,
    .social-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .skills-list li strong,
    .project-list li strong,
    .social-list li strong {
        min-width: 100%;
        margin-bottom: 0.3rem;
        font-size: 0.85rem;
    }

    .experience-item,
    .education-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .job-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }

    .company-date {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .experience-list li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.3rem;
        padding-left: 0.8rem;
    }

    .experience-list li::before {
        font-size: 0.8rem;
        top: 0.3rem;
    }

    .education-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
}

/* About Section Styles */
.about-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-header {
    text-align: center;
    margin-bottom: 1rem;
}

.about-name {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2196f3, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.about-role {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
}

.about-text {
    max-width: 1300px;
    margin: 0 auto;
}

.intro-text, .journey-text {
    text-align: justify;
    hyphens: auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.journey-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,123,255,0.1);
    border-color: rgba(33,150,243,0.2);
}

.stat-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2196f3;
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    color: #2196f3;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skills-section, .social-connect {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.skills-title, .connect-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-tag {
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 25px;
    color: #2196f3;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 150, 243, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.skill-tag:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
}

@media (max-width: 992px) {
    .about-content {
        padding: 1.8rem 1.2rem;
        gap: 1.8rem;
    }

    .about-name {
        font-size: 2.2rem;
    }

    .about-role {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .journey-text {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1.2rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .about-name {
        font-size: 2rem;
    }

    .about-role {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .skill-tag {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 1.2rem 0.8rem;
        gap: 1.2rem;
    }

    .about-name {
        font-size: 1.8rem;
    }

    .about-role {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .journey-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

    .stat-item {
        padding: 0.8rem;
    }

    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .skills-title, .connect-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .skill-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .about-skills {
        gap: 0.8rem;
    }
}

/* About Section Social Connect Styles */
.social-connect {
    margin-top: 3rem;
    text-align: center;
}

.connect-text {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    border: 1px solid rgba(0,123,255,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #007bff;
    color: white;
    box-shadow: 0 5px 15px rgba(0,123,255,0.2);
}

.social-icon.email-icon { color: #EA4335; }
.social-icon.linkedin-icon { color: #0A66C2; }
.social-icon.behance-icon { color: #1769FF; }
.social-icon.youtube-icon { color: #FF0000; }
.social-icon.instagram-icon { color: #E4405F; }

.social-icon.email-icon:hover { background: #EA4335; color: white; box-shadow: 0 5px 15px rgba(234,67,53,0.2); }
.social-icon.linkedin-icon:hover { background: #0A66C2; color: white; box-shadow: 0 5px 15px rgba(10,102,194,0.2); }
.social-icon.behance-icon:hover { background: #1769FF; color: white; box-shadow: 0 5px 15px rgba(23,105,255,0.2); }
.social-icon.youtube-icon:hover { background: #FF0000; color: white; box-shadow: 0 5px 15px rgba(255,0,0,0.2); }
.social-icon.instagram-icon:hover { background: #E4405F; color: white; box-shadow: 0 5px 15px rgba(228,64,95,0.2); }

@media (max-width: 768px) {
    .social-connect {
        margin-top: 2rem;
    }

    .connect-text {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .social-icons {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-connect {
        margin-top: 1.5rem;
    }

    .connect-text {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .social-icons {
        gap: 1rem;
    }
}

/* Floating Menu Styles - Optimized for Performance */
.floating-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    /* right: 20px; */
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
}

.menu-icon {
    background: var(--primary-color);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.menu-icon span {
    width: 24px;
    height: 2px;
    background-color: white;
    margin: 2px 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.menu-icon.active {
    transform: rotate(45deg);
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(90deg) translateX(4px);
}

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

.menu-icon.active span:nth-child(3) {
    transform: translateY(-8px);
}

.floating-nav {
    position: fixed;
    bottom: 90px;
    /* right: 20px; */
    background: var(--primary-color);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.floating-nav.active {
    transform: scale(1);
}

.floating-nav .nav-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    margin: 4px 0;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    will-change: background-color;
}

.floating-nav .nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.floating-nav .nav-item:hover,
.floating-nav .nav-item:active {
    background: rgba(255, 255, 255, 0.15);
}

/* Show floating menu only on smaller screens */
@media (max-width: 768px) {
    .floating-menu {
        display: block;
    }
    
    .sidebar {
        display: none;
    }

    /* Optimize mobile layout */
    .container {
        padding: 16px;
        width: 100%;
    }

    section {
        padding: 16px;
        margin-bottom: 70px; /* Space for floating menu */
    }
}

/* Prevent text selection during navigation */
.floating-nav,
.menu-icon {
    user-select: none;
    -webkit-user-select: none;
}

/* Modern Close Button */
.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-btn:active {
    transform: rotate(90deg) scale(0.9);
}

.close-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Firefox scrollbar */
.viewer-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.2);
}

/* Loading Page Styles */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

#loading-animation {
    width: auto;
    height: auto;
    max-width: 550px;
    max-height: 550px;
    object-fit: contain;
}

@media (max-width: 768px) {
    #loading-animation {
        max-width: 400px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    #loading-animation {
        max-width: 350px;
        max-height: 350px;
    }
}

.card {
    --bg-color: #212121;
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 1.25rem;
}

.loader {
    color: rgb(124, 124, 124);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 25px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 40px;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 8px;
}

.words {
    overflow: hidden;
    position: relative;
}

.words::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        var(--bg-color) 10%,
        transparent 30%,
        transparent 70%,
        var(--bg-color) 90%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Lazy Loading Placeholder */
.image-placeholder {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Loading Spinner Styles */
.spinner {
    position: absolute;
    width: 128px;
    height: 128px;
    top: calc(50% - 64px);
    left: calc(50% - 64px);
    transform: perspective(206px) rotateX(45deg);
}

.outer {
    box-sizing: border-box;
    animation: spin 2s linear infinite;
    height: 100%;
}

.inner {
    position: absolute;
    border-radius: 50%;
    width: 64px;
    height: 64px;
}

.tl {
    top: 0;
    left: 0;
    border-top: 8px solid #2196f3;
    border-left: 10px solid #2196f3;
    animation: spin 0.8s ease-in-out infinite;
}

.tr {
    top: 0;
    right: 0;
    border-top: 8px solid #00bcd4;
    border-right: 10px solid #00bcd4;
    animation: spin 0.8s ease-in-out infinite;
}

.br {
    bottom: 0;
    right: 0;
    border-bottom: 8px solid #4caf50;
    border-right: 10px solid #4caf50;
    animation: spin 0.8s ease-in-out infinite;
}

.bl {
    bottom: 0;
    left: 0;
    border-bottom: 8px solid #03a9f4;
    border-left: 10px solid #03a9f4;
    animation: spin 0.8s ease-in-out infinite;
}

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

/* Performance Optimizations */
#main-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#loading-page {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-icon,
.skill-tag,
.detail-item {
    will-change: transform;
    transform: translateZ(0);
}

.floating-menu,
.about-container,
.portfolio-grid {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-animation {
    animation: loading-spin 1s linear infinite;
    will-change: transform;
}

/* Custom Fonts */
@font-face {
    font-family: 'Android';
    src: url('./Image Assets/fonts/Android.ttf') format('truetype');
}

@font-face {
    font-family: 'Amerika';
    src: url('./Image Assets/fonts/AMERIKA.ttf') format('truetype');
}

/* Contact Section Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box {
    background: white;
    border: 1px solid rgba(0,123,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.1);
}

.contact-box::before {
    display: none;
}

.box-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.box-value {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.box-value .text {
    display: block;
    color: #333;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.box-value .hover-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #007bff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.box-value:hover .text {
    transform: translateY(-100%);
}

.box-value:hover .hover-text {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
}

.social-link.youtube {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0,123,255,0.1);
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

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

.social-link .hover-text {
    position: absolute;
    background: #007bff;
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-bottom: 5px;
}

.social-link .hover-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #007bff;
}

.social-link:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link:hover .hover-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.box-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-footer {
    text-align: center;
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #007bff;
    font-weight: 500;
}

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

    .inquiries-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 1rem;
    }

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

    .contact-box {
        padding: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }

    .box-label {
        font-size: 0.85rem;
    }

    .box-value .text,
    .box-value .hover-text {
        font-size: 0.9rem;
    }

    .box-text {
        font-size: 0.85rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0,123,255,0.1);
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 1rem;
    }

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

    .contact-box {
        padding: 1.2rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link i {
        font-size: 1.1rem;
    }
}

/* Clients Section Styles */
.clients-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,123,255,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.1);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid #007bff;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.client-role {
    font-size: 0.9rem;
    color: #666;
    margin: 0.2rem 0 0 0;
}

.rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.rating i {
    margin-right: 0.2rem;
}

.testimonial-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 992px) {
    .testimonials-grid {
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .clients-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .clients-content {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .client-image {
        width: 50px;
        height: 50px;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-role {
        font-size: 0.85rem;
    }

    .rating {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li {
    margin-bottom: 0.8rem;
}

.social-list li:last-child {
    margin-bottom: 0;
}

.social-list a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-list a:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    color: #2196f3;
}

.social-list strong {
    color: #2196f3;
    margin-right: 0.5rem;
}

/* Visual Designs Section */
.design-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(33, 150, 243, 0.1);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.filter-btn:hover i, .filter-btn.active i {
    color: white;
}

.item-count {
    font-size: 0.85rem;
    opacity: 0.8;
    /* margin-left: 0.3rem; */
}

.filter-btn:hover .item-count,
.filter-btn.active .item-count {
    color: rgba(255, 255, 255, 0.9);
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.design-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-item.show {
    opacity: 1;
    transform: translateY(0);
}

.design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-item:hover img {
    transform: scale(1.1);
}

.design-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.design-overlay h4 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.design-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.view-project {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.design-item:hover .view-project {
    gap: 1rem;
}

@media (max-width: 768px) {
    .design-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .designs-grid {
        gap: 1.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .design-filters {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .filter-btn {
        justify-content: center;
    }

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