   /* About Party Page Styles */
        .page-hero {
            padding: 120px 0 80px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--white-8);
            border-radius: 50%;
            top: -300px;
            right: -300px;
            animation: rotate 25s linear infinite;
        }

        .page-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-size: 50px;
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .page-subtitle {
            font-size: 20px;
            color: var(--white-92);
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* History Section */
        .history-section {
            padding: 100px 0;
            background: var(--gradient-light);
        }

        .history-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .history-text h3 {
            font-size: 38px;
            font-weight: 900;
            color: var(--slate-800);
            margin-bottom: 22px;
            letter-spacing: -0.5px;
        }

        .history-text p {
            font-size: 17px;
            line-height: 1.9;
            color: var(--slate-600);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .history-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
        }

        .history-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background: white;
        }

        .timeline-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
        }

        .timeline-item {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: var(--gradient-light);
            padding: 32px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            position: relative;
            border: 2px solid var(--primary-10);
        }

        .timeline-year {
            font-size: 30px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .timeline-title {
            font-size: 22px;
            font-weight: 800;
            color:black;
            /* color: var(--slate-800); */
            margin-bottom: 12px;
        }

        .timeline-description {
            font-size: 16px;
            color: var(--slate-600);
            line-height: 1.7;
            font-weight: 500;
        }

        .timeline-dot {
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            width: 22px;
            height: 22px;
            background: var(--gradient-primary);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--primary-10);
            z-index: 10;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 100px 0;
            background: var(--gradient-slate);
        }

        .achievements-section .section-title {
            color: rgb(15, 11, 11);
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .achievement-card {
            background: linear-gradient(135deg, var(--primary-8), var(--purple-8));
            backdrop-filter: blur(12px);
            border: 2px solid var(--white-12);
            border-radius: var(--radius-lg);
            padding: 38px 24px;
            text-align: center;
            transition: all var(--transition-smooth);
        }

        .achievement-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-40);
            box-shadow: var(--shadow-action);
        }

        .achievement-icon {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .achievement-number {
            font-size: 32px;
            font-weight: 900;
            color: white;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .achievement-label {
            font-size: 14px;
            color: var(--white-92);
            font-weight: 700;
        }

        /* Members Section */
        .members-section {
            padding: 80px 0;
            background: var(--gradient-light);
        }

        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .member-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-smooth);
            border: 2px solid var(--primary-8);
        }

        .member-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .member-image {
            position: relative;
            height: 350px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .member-card:hover .member-image img {
            transform: scale(1.08);
        }

        .member-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--dark-75) 0%, transparent 60%);
        }

        .member-content {
            padding: 28px;
        }

        .member-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--slate-800);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .member-position {
            font-size: 14px;
            color: var(--primary-indigo);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .member-bio {
            font-size: 14px;
            color: var(--slate-600);
            line-height: 1.7;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 38px;
            }

            .history-content {
                grid-template-columns: 1fr;
            }

            .timeline-line {
                right: 20px;
                transform: none;
            }

            .timeline-item {
                padding-right: 50px;
            }

            .timeline-item:nth-child(even) {
                flex-direction: row;
            }

            .timeline-dot {
                right: 12px;
                transform: none;
            }
        }

/*More*/
.cv-section {
            padding: 60px 0;
            background: #fff;
        }
        
        .cv-section:nth-child(even) {
            background: #f8f9fa;
        }
        
        .section-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Profile Introduction Section */
        .profile-intro {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .profile-image-container {
            position: sticky;
            top: 100px;
        }
        
        .profile-image-wrapper {
            position: relative;
            margin-bottom: 25px;
        }
        
        .profile-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(44, 95, 45, 0.3);
            border: 5px solid #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .profile-image:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 60px rgba(44, 95, 45, 0.4);
        }
        
        .profile-badge {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #2c5f2d 0%, #3d7a3f 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.95rem;
            box-shadow: 0 5px 20px rgba(44, 95, 45, 0.4);
            white-space: nowrap;
        }
        
        .profile-name-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .profile-name-card h2 {
            color: #2c5f2d;
            font-size: 1.6rem;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .section-title {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 16px;
    color: rgb(22, 7, 7);
    letter-spacing: -0.5px;
}
        .profile-title {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .profile-education {
            color: #777;
            font-size: 0.9rem;
            font-style: italic;
        }
        
        .profile-text h3 {
            color: #2c5f2d;
            font-size: 2rem;
            margin-bottom: 25px;
            border-bottom: 3px solid #97c680;
            padding-bottom: 15px;
        }
        
        .profile-text p {
            color: #555;
            line-height: 2;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .profile-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            border-right: 4px solid #97c680;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .highlight-item:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .highlight-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .highlight-text {
            display: flex;
            flex-direction: column;
        }
        
        .highlight-text strong {
            color: #2c5f2d;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .highlight-text span {
            color: #777;
            font-size: 0.85rem;
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .profile-intro {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .profile-image-container {
                position: relative;
                top: 0;
            }
            
            .profile-image {
                height: 350px;
            }
        }
        
        @media (max-width: 600px) {
            .profile-highlights {
                grid-template-columns: 1fr;
            }
            
            .profile-image {
                height: 300px;
            }
            
            .profile-badge {
                font-size: 0.85rem;
                padding: 10px 20px;
            }
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .info-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .info-card h4 {
            color: #2c5f2d;
            font-size: 1.3rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #97c680;
            padding-bottom: 10px;
        }
        
        .info-card ul {
            list-style: none;
            padding: 0;
        }
        
        .info-card li {
            padding: 8px 0;
            color: #555;
            line-height: 1.8;
            position: relative;
            padding-right: 25px;
        }
        
        .info-card li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #97c680;
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .gallery-caption {
            padding: 20px;
            text-align: center;
        }
        
        .gallery-caption h4 {
            color: #2c5f2d;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .gallery-caption p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .vision-box {
            background: linear-gradient(135deg, #2c5f2d 0%, #3d7a3f 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
        }
        
        .vision-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .vision-box p {
            line-height: 2;
            font-size: 1.1rem;
            text-align: justify;
        }