
       
        /* Hero About Section */
        .about-hero {
            padding: 150px 0 100px;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
        }
        
        .about-hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
            width: 90%;
            max-width: 1200px;
        }
        
        .about-hero-content {
            flex: 1;
            max-width: 600px;
        }
        
        .about-hero-content h1 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
        }
        
        .about-hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #7b3dff;
            border-radius: 2px;
        }
        
        .about-hero-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #7b3dff;
        }
        
        .about-hero-content p {
            font-size: 0.9rem;
            margin-bottom: 30px;
            color: var(--gray-color);
        }
        
        .about-hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .about-hero-image img {
            max-width: 100%;
            border-radius: 10px;
            position: relative;
            z-index: 2;
        }
        
        
        /* Journey Timeline */
        .journey {
            position: relative;
        }
        
            .journey::before {
                content: '';
                position: absolute;
                top: 205px;
                left: 50%;
                transform: translateX(-50%);
                width: 4px;
                height: 80%;
                background: #7b3dff;
            }
        
        .journey-container {
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #7b3dff;
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--white-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .timeline {
            position: relative;
        }
        
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 30px;
            position: relative;
            margin: 40px 0;
            width: 50%;
        }
        
        .timeline-item:nth-child(even) {
            align-self: flex-end;
            justify-content: flex-start;
            padding-left: 30px;
            padding-right: 0;
            margin-left: 50%;
        }
        
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 400px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -10px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
            box-shadow: 3px -3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            top: 30px;
            left: -10px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
            box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-year {
            position: absolute;
            top: 20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            right: -100px;
            background: #7b3dff;
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: -100px;
            background: #511cc5;
        }
        
        .timeline-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #7b3dff;
        }
        
        .timeline-content p {
            color: var(--gray-color);
            margin-bottom: 15px;
        }
        
        /* Skills Section */
        .skills-section {
            padding: 5rem 0;
            background: #7b3dff;
            position: relative;
            overflow: hidden;
        }

        .skills-section h2 {
            text-align: center;
            color:white;
            
        }

        .skills-section p {
            text-align: center;
            color:white;
            
        }

        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem 1rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }

        .skill-item:nth-child(2) { animation-delay: 1s; }
        .skill-item:nth-child(3) { animation-delay: 2s; }
        .skill-item:nth-child(4) { animation-delay: 3s; }
        .skill-item:nth-child(5) { animation-delay: 4s; }
        .skill-item:nth-child(6) { animation-delay: 5s; }

        .skill-item:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        .skill-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .skill-name {
            color: white;
            font-weight: 600;
            margin: 0;
            font-size: 1rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

                /* Philosophy Section */
        .philosophy {
            background: #ffffff;
            color: var(--dark-color);
            position: relative;
            overflow: hidden;
        }
        
        .philosophy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%23ffffff" points="0,0 1000,1000 0,1000"/></svg>');
            background-size: cover;
        }
        
        .philosophy-container {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .philosophy-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .philosophy-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .philosophy-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .philosophy-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .philosophy-card {
            background: var(--light-color);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        

        .philosophy-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: rgb(123 61 255);
        }
        
        .philosophy-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .philosophy-card p {
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        /* Fun Facts */
        
        
        .facts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }
        
        .fact-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .fact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .fact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #7b3dff;
        }
        
        .fact-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .fact-text {
            color: var(--gray-color);
            font-weight: 500;
        }
        
                /* Responsive Styles */
        @media (max-width: 992px) {
            .about-hero-container {
                flex-direction: column;
            }
            
            .about-hero-content {
                text-align: center;
                margin-bottom: 50px;
            }
            
            .about-hero-content h1::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .journey::before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-right: 0;
                padding-left: 70px;
            }
            
            .timeline-item:nth-child(even) {
                margin-left: 0;
                padding-left: 70px;
            }
            
            .timeline-item:nth-child(odd) .timeline-year {
                right: auto;
                left: 0px;
            }
            
            .timeline-item:nth-child(even) .timeline-year {
                left: 0px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after {
                display: none;
            }
            
            .timeline-item:nth-child(even) .timeline-content::after {
                display: none;
            }

.about-hero-content h2 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    color: #7b3dff;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #7b3dff;
}

.timeline-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.philosophy-content p {
    font-size: 0.9rem;
    margin-bottom: 40px;
    line-height: 1.8;
    
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}
        }
        
        @media (max-width: 768px) {
           
            
            .about-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .about-hero {
                padding: 120px 0 60px;
            }
            
            .about-hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .skills-radar {
                width: 250px;
                height: 250px;
            }
        }
    