
        :root {
            --primary: #4361ee;
            --secondary: #3f37c9;
            --accent: #4cc9f0;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #4bb543;
        }
        a{
            text-decoration: none;
        }
        /* typing text */
        #typing-text {
            border-right: 3px solid #fff;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            margin-bottom: 20px;
            min-height: 1.2em;
            animation: blink-caret 0.75s step-end infinite;
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #fff }
        }
        /* end */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 { font-size: 3.5rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }
        
        .text-center { text-align: center; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: #4cc9f0;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background: transparent;
            color: #4cc9f0;
            border-color: #4cc9f0;
            transform: translateY(-3px);
        }
        
        .btn-outline {
            background: transparent;
            color: #4cc9f0;
            border-color: #4cc9f0;
        }
        
        .btn-outline:hover {
            background: #4cc9f0;
            color: white;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 0;
        }
        
        header.scrolled {
            background: #4361ee;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            /* color: var(--primary); */
            color:#fff;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4cc9f0;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: #4cc9f0;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }
        
        /* Hero Section */
        #typing-text {
            border-right: 3px solid #fff; /* Cursor effect */
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        /* Blinking cursor animation */
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #fff }
        }
        
        #typing-text {
            animation: blink-caret 0.75s step-end infinite;
        }
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.9), rgba(79, 55, 201, 0.8)), 
                        url('../images/bg2.png') no-repeat center center/cover;
            color: white;
            text-align: center;
            background-attachment: fixed;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-content h1 {
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeIn 1.5s ease;
        }
        
        /* About Section */
        /* #about {
            background: white;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .about-text h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-text h4 {
            margin: 25px 0 15px;
            color: var(--secondary);
        }
         */
         /* About Section Styles */
    #about {
        position: relative;
        padding: 100px 0;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: #fff;
    }
    
    .about-parallax {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
        
    }
    
    .parallax-layer {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        
    }
    
    .layer-1 {
        background: url('../images/bg2.png') center/cover;
        opacity: 0.1;
          
    }
    
    .layer-2 {
        background: radial-gradient(circle, rgba(138, 97, 250, 0.1) 0%, rgba(0,0,0,0) 70%);
        animation: pulse 8s infinite alternate;
    }
    
    .layer-3 {
        background: url('../images/bg1.png') center/cover;
        opacity: 0.05;
        
    }
    
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.3; }
        100% { transform: scale(1.1); opacity: 0.5; }
    }
    
    .section-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }
    
    .section-title span {
        color: #4cc9f0;
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 3px;
    }
    
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    
    .about-image {
        position: relative;
        perspective: 1000px;
    }
    
    .image-wrapper {
        position: relative;
        transform-style: preserve-3d;
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(5deg); }
        50% { transform: translateY(-20px) rotateX(-5deg) rotateY(-5deg); }
    }
    
    .profile-img {
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 2;
        border: 5px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.5s ease;
    }
    
    .image-border {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        border: 2px dashed #4cc9f0;
        border-radius: 30px;
        z-index: 1;
        animation: rotate 20s linear infinite;
    }
    
    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .tech-icons {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        background: rgba(26, 26, 46, 0.8);
        padding: 15px 30px;
        border-radius: 50px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 3;
    }
    
    .tech-icons i {
        font-size: 2rem;
        transition: transform 0.3s ease;
    }
    
    .tech-icons i:hover {
        transform: translateY(-5px) scale(1.2);
    }
    
    .about-text {
        position: relative;
    }
    
    .text-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.5s ease;
    }
    
    .text-card:hover {
        transform: translateY(-10px);
    }
    
    .text-card h3 {
        color: #4cc9f0;
        margin: 25px 0 15px;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .text-card h3:first-child {
        margin-top: 0;
    }
    
    .text-card p {
        line-height: 1.8;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .experience-highlights {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
    }
    
    .highlight-item {
        text-align: center;
    }
    
    .counter {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #4cc9f0;
        margin-bottom: 5px;
    }
    
    .highlight-text {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
        }
        
        .about-image {
            max-width: 500px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 2.5rem;
        }
        
        .text-card {
            padding: 30px;
        }
        
        .experience-highlights {
            flex-direction: column;
            gap: 20px;
        }
    }
        /* Experience Section */
        #experience {
            background: #f8f9fa;
        }
        
        .experience-item {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .experience-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .experience-item h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .experience-item p {
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        .experience-item ul {
            padding-left: 20px;
        }
        
        .experience-item li {
            margin-bottom: 10px;
        }
        
        /* Projects Section */
        #projects {
            background: white;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-img {
            height: 250px;
            overflow: hidden;
        }
        
        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-img img {
            transform: scale(1.1);
        }
        
        .project-info {
            padding: 20px;
            background: white;
        }
        
        .project-info h4 {
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .project-info p {
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        /* Skills Section */
        #skills {
            background: #f8f9fa;
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .skill-category {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .skill-category h4 {
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .skill-item {
            margin-bottom: 10px;
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        /* .skill-bar {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .skill-progress {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
        } */
         /* Add these styles to your existing CSS */
.skill-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.skill-progress {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
    width: 0; /* Start at 0 */
    opacity: 0; /* Start hidden */
    transition: width 0s ease-out, opacity 0.3s ease; /* Initial state has no width transition */
}

/* Update your existing skill items for better spacing */
.skill-item {
    margin-bottom: 20px;
}
        
        /* Contact Section */
        #contact {
            background: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .contact-text p, .contact-text a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .contact-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            opacity: 0.8;
            font-size: 0.9rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #4cc9f0;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #4361ee;
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.8rem; }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 10px;
                left: -100%;
                width: 100%;
                height: calc(60vh - 40px);
                background: #4361ee;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 20px;
                transition: left 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin-left: 0;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            
            .btn {
                padding: 10px 20px;
            }
        }

        /* Education Section Styles */
    #education {
        background: #f8f9fa;
        padding: 80px 0;
        position: relative;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #141313;
    }
    .section-title1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #ffff;
    }
    
    .section-title span {
        color: #4361ee;
        position: relative;
    }
    .section-title1 span {
        color: #4361ee;
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
    }
    .section-title1 span::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
    }
    
    /* Timeline Design */
    /* Modern Toggle System */
    .toggle-container {
        position: relative;
        display: flex;
        background: rgba(67, 97, 238, 0.1);
        border-radius: 50px;
        padding: 6px;
        max-width: 500px;
        margin: 0 auto 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .toggle-bg {
        position: absolute;
        top: 6px;
        left: 6px;
        width: calc(50% - 6px);
        height: calc(100% - 12px);
        background: white;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
        transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 0;
    }
    
    .toggle-option {
        position: relative;
        flex: 1;
        border: none;
        background: transparent;
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 600;
        color: #6c757d;
        cursor: pointer;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 1;
    }
    
    .toggle-option.active {
        color: #4361ee;
    }
    
    .toggle-option i {
        font-size: 1.1rem;
    }
    
    /* Education Cards */
    .education-wrapper {
        position: relative;
        min-height: 300px;
    }
    
    .education-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease, height 0.5s ease;
    }
    
    .education-cards.active {
        opacity: 1;
        height: auto;
        overflow: visible;
    }
    
    .education-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 25px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .education-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
    }
    
    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .year-badge {
        background: rgba(67, 97, 238, 0.1);
        color: #4361ee;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .card-header i {
        color: rgba(67, 97, 238, 0.3);
        font-size: 1.5rem;
    }
    
    .card-body h3 {
        color: #1a1a2e;
        margin-bottom: 8px;
        font-size: 1.3rem;
    }
    
    .card-body h4 {
        color: #4cc9f0;
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .card-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    
    .skills-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .pill {
        background: rgba(67, 97, 238, 0.1);
        color: #4361ee;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .card-footer {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 15px;
    }
    
    .credential-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #4361ee;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .credential-badge:hover {
        color: #3a0ca3;
    }
    
    .credential-badge i {
        font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .toggle-container {
            max-width: 100%;
        }
        
        .toggle-option {
            padding: 10px 15px;
            font-size: 0.9rem;
        }
        
        .education-cards {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 576px) {
        .toggle-option span {
            display: none;
        }
        
        .toggle-option i {
            font-size: 1.3rem;
        }
    }

    /* Social Sidebar Styles */
  .social-sidebar {
    position: fixed;
    left: 94%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #4361ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .social-icon:hover {
    background: #4361ee;
    color: white;
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 6px 16px rgba(67, 97, 238, 0.3);
  }

  /* Animation on page load */
  @keyframes slideIn {
    from { transform: translateY(-50%) translateX(-100px); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
  }

  .social-sidebar {
    animation: slideIn 0.8s ease-out 0.5s both;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .social-sidebar {
      left: 10px;
      gap: 10px;
    }
    .social-icon {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }
  }

  @media (max-width: 576px) {
    .social-sidebar {
      flex-direction: row;
      bottom: 20px;
      top: auto;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.9);
      padding: 10px 15px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
    }
    .social-icon {
      width: 32px;
      height: 32px;
      background: transparent;
      box-shadow: none;
    }
    .social-icon:hover {
      transform: translateY(-3px) scale(1.1);
    }
  }