 body {
            background-color: #1a1a1a;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
        }

        
        .aboutme-container {
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
            justify-content: space-evenly;
            text-align: center;
            align-items: center;
            
           
            background: linear-gradient(135deg, #ff6b35, #ff8e35, #ffb347);
            border: none;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 
                0 15px 35px rgba(255, 107, 53, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }


        .aboutme-container:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 25px 45px rgba(255, 107, 53, 0.4),
                0 15px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

       
        #photo-of-kia {
            border-radius: 50%;
            align-items: center;
            display: inline-block;
            width: 180px;
            height: 180px;
            object-fit: cover;
            
           
            border: 5px solid rgba(255, 255, 255, 0.8);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 10px rgba(255, 255, 255, 0.1),
                0 0 20px rgba(255, 107, 53, 0.6);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        #photo-of-kia:hover {
            transform: scale(1.05);
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 0 15px rgba(255, 255, 255, 0.15),
                0 0 30px rgba(255, 107, 53, 0.8);
        }

      
        .about-me {
            display: inline-block;
            color: #1a1a1a;
            font-size: 16px;
            text-align: left;
            max-width: 700px;
            margin: 20px auto 0;
            padding: 20px;
            
            
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            box-shadow: 
                0 8px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-weight: 500;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        /* Halloween themed decorations */
        .aboutme-container::after {
            content: '🎃👻🕷️🦇🎃👻🕷️🦇';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 20px;
            opacity: 0.7;
            animation: float 2s ease-in-out infinite alternate;
        }

        @keyframes float {
            0% { transform: translateX(-50%) translateY(0px); }
            100% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Pulsing glow effect */
        @keyframes glow {
            0%, 100% { 
                box-shadow: 
                    0 15px 35px rgba(255, 107, 53, 0.3),
                    0 5px 15px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
            50% { 
                box-shadow: 
                    0 20px 40px rgba(255, 107, 53, 0.5),
                    0 10px 20px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        .aboutme-container {
            animation: glow 2s ease-in-out infinite;
        }

        /* Social Buttons Container */
        .social-buttons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Individual Button Styling */
        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        /* LinkedIn Button */
        .linkedin-btn {
            background: linear-gradient(45deg, #0077b5, #00a0dc);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .linkedin-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
            background: linear-gradient(45deg, #005885, #0077b5);
        }

        /* Email Button */
        .email-btn {
            background: linear-gradient(45deg, #ff6b35, #ff8e35);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .email-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            background: linear-gradient(45deg, #e55a2b, #ff6b35);
        }

        /* Button Icons */
        .btn-icon {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .social-btn:hover .btn-icon {
            transform: scale(1.2) rotate(5deg);
        }

        /* Shimmer effect for buttons */
        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.5s ease;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        /* Button text styling */
        .btn-text {
            font-family: inherit;
            letter-spacing: 0.5px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .aboutme-container {
                margin: 30px 15px;
                padding: 30px 20px;
            }
            
            #photo-of-kia {
                width: 150px;
                height: 150px;
            }
            
            .about-me {
                font-size: 15px;
                padding: 15px;
            }

            .social-buttons {
                gap: 15px;
                margin-top: 20px;
            }

            .social-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
        }

            #aboutMeSection h1 {
            text-align: center;
            color: #ff6b35; /* Orange color like your site */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            font-weight: bold;
        }
#aboutMeSection .back-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

#aboutMeSection .back-button:hover {
    background: linear-gradient(135deg, #ff8c42, #ffaa66);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

#aboutMeSection .back-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}