    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #504c4c;
            color: #333;
            line-height: 1.6;
        }

        #experience {
            padding: 20px;
            max-width: 100%;
            margin: 0 auto;
        }

        #experience h2 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }

        #experience h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }

        .slideshow-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 300px;
        }

        .slide {
            display: none;
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            border-radius: 12px;
        }

        .active-slide {
            display: block;
        }

        .slide h3 {
            position: absolute;
            bottom: 50px;
            left: 0;
            width: 100%;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 15px;
            margin: 0;
            font-size: 20px;
        }

        .slide p {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px;
            margin: 0;
            font-size: 16px;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.5);
            color: white;
            font-size: 20px;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            z-index: 100;
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }

        .dots {
            text-align: center;
            margin-top: 20px;
        }

        .dot {
            cursor: pointer;
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .active, .dot:hover {
            background-color: #3498db;
        }

        /* Touch improvements for mobile */
        @media (max-width: 768px) {
            .slideshow-container {
                height: 250px;
            }

            .prev, .next {
                padding: 12px;
                width: 40px;
                height: 40px;
            }

            .slide h3 {
                font-size: 18px;
                padding: 12px;
                bottom: 45px;
            }

            .slide p {
                font-size: 14px;
                padding: 6px;
                bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .slideshow-container {
                height: 200px;
            }

            .prev, .next {
                padding: 10px;
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .slide h3 {
                font-size: 16px;
                padding: 10px;
                bottom: 40px;
            }

            .slide p {
                font-size: 13px;
                padding: 5px;
            }

            #experience h2 {
                font-size: 24px;
            }
        }

        /* For very small devices */
        @media (max-width: 320px) {
            .slideshow-container {
                height: 180px;
            }

            .slide h3 {
                font-size: 14px;
            }
        }
    


/*===========================================================================*/
/* Add to your existing CSS or create new home section styles */

/* Home Section */
#home {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #ffffff 0%, #575757 100%); */
    color: #432d2d;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

.hero-text {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 2px 10px rgb(0 0 0 / 72%);
}

.hero-text .highlight {
    color: #ffd700;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-btn.secondary {
    background: rgb(220 222 228);
    color: #311818;
    backdrop-filter: blur(10px);
    border: 2px solid rgb(217 131 131 / 75%);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
    background: linear-gradient(45deg, #ff8e53, #ff6b6b);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-image .profile-3d {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.hero-image .profile-3d img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Quick Access Section */
.quick-access {
    margin-top: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-access h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #3a2424;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-card {
    background: rgb(233 233 233);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.quick-card:hover::before {
    left: 100%;
}

.quick-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quick-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
    display: inline-block;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quick-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.quick-card p {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-link:hover {
    gap: 15px;
    color: #ffed4e;
}

/* Stats Section */
.home-stats {
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgb(243 230 230 / 15%);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-image .profile-3d {
        width: 300px;
        height: 300px;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    #home {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-image .profile-3d {
        width: 250px;
        height: 250px;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-access h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        justify-content: center;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}