/* ====== ABOUT HERO SECTION ====== */
.about-hero {
    padding: 26rem 0 16rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-dark) 0%, #1a1a1a 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 15%);
    z-index: 0;
    animation: pulse-bg 8s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: var(--spacing-xl);
}

.about-hero-text {
    flex: 1;
    max-width: 60%;
}

.about-hero-title {
    font-size: 8rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    color: var(--color-white);
    position: relative;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-title span {
    position: relative;
    display: inline-block;
}

.about-hero-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.08em;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.about-hero-title:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-hero-subtitle {
    font-size: 2.2rem;
    line-height: 1.5;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 95%;
}

.about-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.about-hero-image {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.about-hero-image img {
    width: 100%;
    max-width: 430px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.15);
    filter: brightness(1.05) contrast(1.1);
    animation: morphing 15s infinite, float 6s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

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

.section-label-hero {
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    border: #868686 solid 1px;
    color: white;   
}

.btn-accent-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1.5rem 3rem;
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--border-radius-full);
    border: 2px solid white;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all var(--transition-medium);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.btn-accent-hero:hover {
    background-color: var(--color-surface);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* ====== PROFILE SECTION ====== */
.profile-section {
    padding: 10rem 0;
    background-color: var(--color-surface);
    position: relative;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.profile-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.profile-card {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(142, 244, 103, 0.1),
        rgba(108, 99, 255, 0.1),
        rgba(142, 244, 103, 0.1)
    );
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.profile-card-content {
    position: relative;
    z-index: 1;
}

.profile-card-content h3 {
    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.profile-card-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-medium);
}

.profile-card:hover h3::after {
    width: 100%;
}

.profile-card-content p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ====== RESUME SECTION ====== */
.resume-section {
    padding: 15rem 0;
    position: relative;
}

.resume-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.05) 0%, transparent 80%),
                radial-gradient(circle at 80% 80%, rgba(142, 244, 103, 0.05) 0%, transparent 80%);
    z-index: 0;
}

.section-description {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--spacing-sm);
}

.resume-section-title {
    font-size: 3.2rem;
    color: var(--color-white);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    display: inline-block;
    padding-left: var(--spacing-md);
    border-left: 4px solid var(--color-accent);
}

/* ====== SKILLS OVERVIEW ====== */
.skills-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.skills-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
}

.skills-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.1);
}

.skills-category h3 {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.skills-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-medium);
}

.skills-category:hover h3::after {
    width: 100%;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-medium);
}

.skill-item:hover {
    transform: translateX(5px);
}

.skill-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 150px;
}

.skill-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.4rem;
    transition: all var(--transition-medium);
}

.skill-item:hover .skill-icon {
    background-color: rgba(142, 244, 103, 0.2);
    transform: scale(1.1);
}

.skill-name {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-white);
}

.skill-bar {
    flex: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    margin-left: var(--spacing-md);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), rgba(108, 99, 255, 0.8));
    border-radius: var(--border-radius-full);
    transition: width 1s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ====== EMPLOYMENT HISTORY ====== */
.employment-history {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(to bottom, 
        var(--color-accent), 
        rgba(108, 99, 255, 0.8), 
        var(--color-accent)
    );
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-accent);
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(142, 244, 103, 0.1);
    z-index: 2;
    transition: all var(--transition-medium);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
    background-color: rgba(108, 99, 255, 0.8);
}

.timeline-content {
    padding-bottom: var(--spacing-sm);
}

.job-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-card:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(142, 244, 103, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.job-header h4 {
    font-size: 2.2rem;
    color: var(--color-white);
    margin: 0;
}

.job-duration {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(142, 244, 103, 0.1);
    border-radius: var(--border-radius-full);
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 500;
}

.job-company {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.company-logo {
    width: 48px;
    height: 48px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.4rem;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: rgba(17, 17, 17, 0.8) solid 1px;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    filter: saturate(0.95) brightness(1.02);
}

.company-logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    filter: saturate(1.1) brightness(1.05);
}

.job-company strong {
    font-size: 1.6rem;
    color: var(--color-accent);
}

.job-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.job-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.highlight-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-full);
    font-size: 1.4rem;
    color: var(--color-white);
    transition: all var(--transition-medium);
}

.highlight-tag:hover {
    background-color: rgba(142, 244, 103, 0.1);
    transform: translateY(-2px);
}

/* ====== EDUCATION SECTION ====== */
.education-section {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.education-timeline {
    position: relative;
}

.timeline-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.timeline-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.timeline-title {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(142, 244, 103, 0.2);
}

.education-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
    border-left: 3px solid transparent;
}

.education-card:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--color-accent);
}

.education-period {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(142, 244, 103, 0.1);
    border-radius: var(--border-radius-full);
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.education-content h5 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.education-specialization {
    font-size: 1.6rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.education-school {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.school-logo {
    width: 46px;
    height: 46px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.4rem;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    border: rgba(17, 17, 17, 0.6) solid 1px;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.202);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    filter: saturate(0.9) contrast(1.05);
}

.school-logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    filter: saturate(1.05) contrast(1.1);
}

.education-school span {
    font-size: 1.6rem;
    color: var(--color-gray);
}

.education-exchange {
    display: flex;
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    align-items: center;
    gap: 1rem;
}

.education-details {
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-top: var(--spacing-sm);
}

/* ====== CERTIFICATIONS SECTION ====== */
.certifications-section {
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-xl);
}

.certification-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.filter-btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.certification-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-medium);
    overflow: hidden;
}

.certification-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certification-content {
    display: flex;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
    align-items: flex-start;
}

.certification-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(142, 244, 103, 0.15), rgba(108, 99, 255, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.6rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.certification-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.certification-card:hover .certification-logo {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(142, 244, 103, 0.25), rgba(108, 99, 255, 0.25));
}

.certification-card:hover .certification-logo::before {
    left: 100%;
}

.certification-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.certification-card:hover .certification-logo img {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.certification-details {
    flex: 1;
}

.certification-details h5 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.issuer {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
}

.issue-date {
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* ====== COMMUNITIES SECTION ====== */
.communities-section {
    padding: 15rem 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.communities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-xl);
}

.community-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease forwards;
}

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(142, 244, 103, 0.3);
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delay staggered */
.community-card:nth-child(1) { animation-delay: 0.1s; }
.community-card:nth-child(2) { animation-delay: 0.2s; }
.community-card:nth-child(3) { animation-delay: 0.3s; }
.community-card:nth-child(4) { animation-delay: 0.4s; }
.community-card:nth-child(5) { animation-delay: 0.5s; }
.community-card:nth-child(6) { animation-delay: 0.6s; }
.community-card:nth-child(7) { animation-delay: 0.7s; }
.community-card:nth-child(8) { animation-delay: 0.8s; }
.community-card:nth-child(9) { animation-delay: 0.9s; }
.community-card:nth-child(10) { animation-delay: 1s; }
.community-card:nth-child(11) { animation-delay: 1.1s; }
.community-card:nth-child(12) { animation-delay: 1.2s; }

.community-banner {
    height: 8px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    width: 100%;
}

.community-card-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.community-name {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.community-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.community-card:hover .community-name::after {
    width: 100%;
}

.community-role {
    font-size: 1.6rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.community-role-icon {
    color: var(--color-accent);
}

.community-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    flex: 1;
}

.community-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.community-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.community-tag {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background-color: rgba(142, 244, 103, 0.1);
    color: var(--color-dark);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.community-tag:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

/* ====== DOCUMENT GENERATION SECTION - PDF INTEGRATION ====== */
.document-generation-section {
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
    background: linear-gradient(135deg, #111111, #1a1a1a);
}

.document-generation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(142, 244, 103, 0.08) 0%, transparent 40%);
    opacity: 0.7;
    z-index: 0;
    animation: about-pulse-bg 10s ease-in-out infinite alternate;
}

@keyframes about-pulse-bg {
    0% { opacity: 0.6; }
    100% { opacity: 0.8; }
}

.about-doc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.about-doc-panel {
    padding: 3.5rem;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-doc-panel:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(255, 255, 255, 0.1);
}

.about-doc-content h3 {
    font-size: 2.8rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-doc-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transition: width 0.3s ease;
}

.about-doc-panel:hover .about-doc-content h3::after {
    width: 100%;
}

.about-doc-content p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.about-job-selector,
.about-lang-selector {
    margin-bottom: 2.5rem;
}

.about-job-selector label,
.about-lang-selector label {
    display: block;
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-job-buttons,
.about-lang-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-job-btn,
.about-lang-btn {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
}

.about-job-btn::after,
.about-lang-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0));
    transition: left 0.6s ease;
}

.about-job-btn:hover,
.about-lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-job-btn:hover::after,
.about-lang-btn:hover::after {
    left: 100%;
}

.about-job-btn.active,
.about-lang-btn.active {
    background: linear-gradient(135deg, var(--color-accent), rgba(142, 244, 103, 0.8));
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(142, 244, 103, 0.3);
}

.about-doc-features {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-doc-features h4 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(5px);
}

.about-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), rgba(142, 244, 103, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    color: var(--color-dark);
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(142, 244, 103, 0.3);
    transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-text {
    font-size: 1.6rem;
    color: var(--color-gray);
}

.about-doc-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-doc-card {
    padding: 3.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(255, 255, 255, 0.05);
    height: calc(50% - 1.25rem);
    position: relative;
}

.about-doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 1px 5px rgba(255, 255, 255, 0.1);
    border-color: rgba(142, 244, 103, 0.2);
}

.about-doc-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.about-doc-card:hover .about-doc-preview {
    transform: translateY(-5px) scale(1.05);
}

.about-preview-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-preview-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(142, 244, 103, 0),
        rgba(142, 244, 103, 0.1),
        rgba(142, 244, 103, 0)
    );
    animation: about-rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-doc-card:hover .about-preview-icon::after {
    opacity: 1;
}

@keyframes about-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-doc-card:hover .about-preview-icon {
    color: var(--color-white);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(142, 244, 103, 0.15);
    background: linear-gradient(135deg, rgba(142, 244, 103, 0.1), rgba(108, 99, 255, 0.1));
}

.about-doc-info {
    text-align: center;
}

.about-doc-info h3 {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-doc-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transition: width 0.3s ease;
}

.about-doc-card:hover .about-doc-info h3::after {
    width: 100%;
}

.about-doc-info p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}



























































/* ====== STARTUP INVESTMENTS SECTION - ENHANCED ====== */

/* Variables */
:root {
  --color-dark: #121212;
  --color-white: #ffffff;
  --color-gray: #a0aec0;
  --color-accent: #8ef467;
  --transition-standard: all 0.3s ease;
  --border-radius-standard: 2rem;
  --border-radius-small: 1.2rem;
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
  --box-shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.2);
  --box-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Main Section Styles */
.startup-investments-section {
  background-color: var(--color-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.startup-investments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(142, 244, 103, 0.08) 0%, transparent 40%);
  opacity: 0.7;
  z-index: 0;
  animation: pulse-bg 10s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
  0% { opacity: 0.6; }
  100% { opacity: 0.8; }
}

/* Section Text Colors and Common Styles */
.startup-investments-section .section-label,
.startup-investments-section .section-title,
.startup-investments-section .section-description {
  color: white;
  position: relative;
  z-index: 1;
}

.section-description {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ====== PORTFOLIO CONTROLS ====== */

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  flex-direction: column;
}

/* Search Container */
.search-container {
  position: relative;
  flex: 1;
  max-width: 300px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  padding-right: 3.5rem;
  border-radius: var(--border-radius-standard);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 1.4rem;
  transition: var(--transition-standard);
}

.search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(142, 244, 103, 0.15);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-button {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray);
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.search-button:hover {
  color: var(--color-white);
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.9rem 1.5rem;
  border-radius: var(--border-radius-standard);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-standard);
}

.filter-btn:hover, 
.filter-btn.active {
  background-color: var(--color-accent);
  color: var(--color-dark);
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(142, 244, 103, 0.25);
}

/* Industry Filter */
.industry-filter {
  position: relative;
  width: 200px;
}

.industry-select {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: var(--border-radius-standard);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 1.4rem;
  appearance: none;
  cursor: pointer;
  transition: var(--transition-standard);
}

.industry-select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(142, 244, 103, 0.15);
}

.industry-filter::after {
  content: '';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-gray);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.industry-filter:hover::after {
  border-top-color: var(--color-white);
}

/* ====== INVESTMENTS PANEL ====== */

.investments-panel {
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: var(--border-radius-standard);
  padding: 3rem;
  margin: 0 auto 2rem;
  box-shadow: var(--box-shadow-medium);
  position: relative;
  z-index: 1;
  max-width: 60rem;
  transition: box-shadow 0.3s ease;
}

.investments-panel:hover {
  box-shadow: var(--box-shadow-hover);
}

.investments-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.5rem;
}

.investments-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.investments-subtitle {
  font-size: 1.6rem;
  color: #666;
}

/* Startups Container */
.startups-container {
  min-height: 200px;
  position: relative;
}

/* ====== STARTUPS LIST ====== */

.startups-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.startup-entry {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius-small);
  transition: var(--transition-standard);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.startup-entry:last-child {
  margin-bottom: 0;
}

.startup-entry:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

/* Logo Styling */
.startup-logo-container {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.startup-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.startup-entry:hover .startup-logo {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
}

.startup-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background-color: white;
}

.startup-entry:hover .startup-logo img {
  transform: scale(1.1);
}

.startup-initial {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Startup Info Section */
.startup-info {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0;
}

.startup-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: color 0.3s ease;
}

.startup-entry:hover .startup-name {
  color: #4a5568;
}

/* ====== META TAGS (STAGE, STATUS, INDUSTRY) ====== */

/* Common styles for all meta tags */
.startup-stage,
.startup-status,
.startup-industry {
  font-size: 1.2rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-right: 0.8rem;
}

.startup-stage::before,
.startup-status::before,
.startup-industry::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.startup-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Investment Stages Colors */
.stage-seed {
  background-color: rgba(72, 187, 120, 0.1);
  color: #48bb78;
}

.stage-seed::before {
  background-color: #48bb78;
}

.stage-series-a {
  background-color: rgba(66, 153, 225, 0.1);
  color: #4299e1;
}

.stage-series-a::before {
  background-color: #4299e1;
}

.stage-series-b,
.stage-series-c {
  background-color: rgba(159, 122, 234, 0.1);
  color: #9f7aea;
}

.stage-series-b::before,
.stage-series-c::before {
  background-color: #9f7aea;
}

/* Additional Series Rounds */
.stage-series-d,
.stage-series-e {
  background-color: rgba(129, 102, 204, 0.1);
  color: #8166cc;
}

.stage-series-d::before,
.stage-series-e::before {
  background-color: #8166cc;
}

.stage-series-f,
.stage-series-g {
  background-color: rgba(99, 82, 184, 0.1);
  color: #6352b8;
}

.stage-series-f::before,
.stage-series-g::before {
  background-color: #6352b8;
}

/* Special stages */
.stage-convertible,
.stage-convertible-round {
  background-color: rgba(237, 137, 54, 0.1);
  color: #ed8936;
}

.stage-convertible::before,
.stage-convertible-round::before {
  background-color: #ed8936;
}

.stage-growth {
  background-color: rgba(225, 86, 86, 0.1);
  color: #e15656;
}

.stage-growth::before {
  background-color: #e15656;
}

.stage-ipo {
  background-color: rgba(56, 178, 172, 0.1);
  color: #38b2ac;
}

.stage-ipo::before {
  background-color: #38b2ac;
}

.stage-early,
.stage-early-stage {
  background-color: rgba(154, 230, 180, 0.1);
  color: #9ae6b4;
}

.stage-early::before,
.stage-early-stage::before {
  background-color: #9ae6b4;
}

.stage-late,
.stage-late-stage {
  background-color: rgba(180, 83, 189, 0.1);
  color: #b453bd;
}

.stage-late::before,
.stage-late-stage::before {
  background-color: #b453bd;
}

/* Status Indicator Colors */
.status-active {
  background-color: rgba(72, 187, 120, 0.1);
  color: #48bb78;
}

.status-active::before {
  background-color: #48bb78;
}

.status-exit {
  background-color: rgba(246, 173, 85, 0.1);
  color: #f6ad55;
}

.status-exit::before {
  background-color: #f6ad55;
}

.status-inactive {
  background-color: rgba(229, 62, 62, 0.1);
  color: #e53e3e;
}

.status-inactive::before {
  background-color: #e53e3e;
}

.status-unknown {
  background-color: rgba(160, 174, 192, 0.1);
  color: #a0aec0;
}

.status-unknown::before {
  background-color: #a0aec0;
}

/* Industry styles */
.startup-industry {
  background-color: rgba(136, 151, 164, 0.1);
  color: #8897a4;
}

.startup-industry::before {
  background-color: #8897a4;
}

/* Different industry colors */
.industry-ai,
.industry-aiml,
.industry-artificial-intelligence {
  background-color: rgba(114, 137, 218, 0.1);
  color: #7289da;
}

.industry-ai::before,
.industry-aiml::before,
.industry-artificial-intelligence::before {
  background-color: #7289da;
}

.industry-fintech,
.industry-finance {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}

.industry-fintech::before,
.industry-finance::before {
  background-color: #007bff;
}

.industry-health,
.industry-healthtech,
.industry-healthcare {
  background-color: rgba(255, 0, 122, 0.1);
  color: #ff007a;
}

.industry-health::before,
.industry-healthtech::before,
.industry-healthcare::before {
  background-color: #ff007a;
}

.industry-climate,
.industry-cleantech,
.industry-greentech {
  background-color: rgba(56, 161, 105, 0.1);
  color: #38a169;
}

.industry-climate::before,
.industry-cleantech::before,
.industry-greentech::before {
  background-color: #38a169;
}

.industry-saas,
.industry-software {
  background-color: rgba(237, 100, 166, 0.1);
  color: #ed64a6;
}

.industry-saas::before,
.industry-software::before {
  background-color: #ed64a6;
}

.industry-biotech,
.industry-life-sciences {
  background-color: rgba(121, 195, 80, 0.1);
  color: #79c350;
}

.industry-biotech::before,
.industry-life-sciences::before {
  background-color: #79c350;
}

.industry-crypto,
.industry-blockchain {
  background-color: rgba(255, 153, 0, 0.1);
  color: #ff9900;
}

.industry-crypto::before,
.industry-blockchain::before {
  background-color: #ff9900;
}

.industry-ecommerce,
.industry-retail {
  background-color: rgba(247, 103, 7, 0.1);
  color: #f76707;
}

.industry-ecommerce::before,
.industry-retail::before {
  background-color: #f76707;
}

.industry-edtech,
.industry-education {
  background-color: rgba(77, 77, 255, 0.1);
  color: #4d4dff;
}

.industry-edtech::before,
.industry-education::before {
  background-color: #4d4dff;
}

/* Visit Button */
.visit-button {
  background-color: rgba(0, 0, 0, 0.04);
  color: #2d3748;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.visit-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.visit-button:hover {
  background-color: #5e60ce;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(94, 96, 206, 0.3);
}

.visit-button:hover::after {
  transform: rotate(45deg) translate(50%, 50%);
  opacity: 0.3;
}

.visit-button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(94, 96, 206, 0.2);
}

/* ====== UI ELEMENTS ====== */

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.load-more-btn {
  background: linear-gradient(135deg, #5e60ce, #4ea8de);
  color: white;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: var(--border-radius-standard);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-standard);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #4e54c8, #38a2dc);
}

.load-more-btn svg {
  transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
  transform: translateY(3px);
}

/* Showing Count */
.showing-count {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ====== STATES ====== */

/* Loading and Error States */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  min-height: 200px;
}

.loader-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(94, 96, 206, 0.2);
  border-radius: 50%;
  border-top-color: #5e60ce;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-message {
  text-align: center;
  padding: 2rem;
  color: #e74c3c;
  font-size: 1.4rem;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 1rem;
  margin: 1rem 0;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #666;
  font-size: 1.6rem;
  font-style: italic;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 992px) {
  .startup-investments-section {
    padding: 6rem 0;
  }
  
  .investments-panel {
    padding: 2.5rem;
    max-width: 90%;
  }
  
  .portfolio-controls {
    align-items: stretch;
  }
  
  .search-container,
  .industry-filter {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .filter-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .filter-btn {
    flex: 1;
    padding: 0.8rem 0.5rem;
    font-size: 1.3rem;
    text-align: center;
  }
  
  .startup-entry {
    padding: 1.5rem 1rem;
  }
  
  .startup-info {
    flex: 1;
  }
  
  .startup-logo-container {
    margin-right: 1.2rem;
  }
  
  .startup-logo {
    width: 46px;
    height: 46px;
  }
  
  .investments-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .investments-panel {
    padding: 1.8rem;
  }
  
  .investments-title {
    font-size: 2rem;
  }
  
  .investments-subtitle {
    font-size: 1.4rem;
  }
  
  .startup-entry {
    flex-wrap: wrap;
  }
  
  .startup-logo-container {
    order: 1;
  }
  
  .startup-info {
    order: 2;
    flex: 0 0 calc(100% - 60px);
    margin-left: 0;
  }
  
  .visit-button {
    order: 3;
    margin-top: 1rem;
    margin-left: calc(52px + 1.5rem);
  }
  
  .startup-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .startup-stage,
  .startup-status,
  .startup-industry {
    margin-bottom: 0.3rem;
  }
}










































/**
 * PDF and Modal Styles for About Page
 * Organized by component and functionality
 */

/* ====== PDF NOTIFICATION ====== */
.pdf-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: sans-serif;
    font-size: 14px;
    animation: fadeInOut 5s forwards;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* ====== ADMIN ACCESS BUTTON ====== */
.admin-access-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.admin-access-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

/* ====== AUTHENTICATION MODAL ====== */
.auth-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.auth-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    border-radius: 16px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.auth-modal-close:hover {
    color: white;
}

#auth-modal-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.auth-message {
    margin-bottom: 15px;
    color: #ddd;
}

.auth-doc-info {
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
}

.auth-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
}

.auth-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(142, 244, 103, 0.25);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-btn-accent {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8EF467, #7AD559);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.auth-btn-accent:hover {
    background: linear-gradient(135deg, #7AD559, #8EF467);
    transform: translateY(-2px);
}

.auth-btn-cancel {
    flex: 1;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-btn-cancel:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.auth-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.auth-status.error {
    background-color: rgba(255, 67, 67, 0.2);
    color: #ff5252;
    opacity: 1;
}

.auth-status.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: #66bb6a;
    opacity: 1;
}

/* ====== REQUEST MODAL ====== */
.about-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.about-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #111111);
    border-radius: 16px;
    padding: 4rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.about-modal-title {
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.8rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.about-close-modal:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.about-request-form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-request-input, 
.about-request-textarea {
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-request-input:focus,
.about-request-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(142, 244, 103, 0.1);
}

.about-request-textarea {
    min-height: 200px;
    resize: vertical;
}

.about-request-status {
    margin-top: 2rem;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-status-success {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.about-status-error {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.about-status-loading {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== DOCUMENT PREVIEW AREA ====== */
.about-doc-preview {
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}

.about-doc-preview:hover {
    transform: scale(1.02);
}

.about-doc-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.about-doc-preview:hover::before {
    opacity: 1;
}

/* ====== BUTTON STYLES FOR PDF SECTION ====== */
.about-btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1.5rem 3rem;
    max-width: 35rem;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #222222, #111111);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.about-btn-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: -1;
    transition: left 0.7s ease;
}

.about-btn-accent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-btn-accent:hover {
    background: linear-gradient(135deg, #333333, #222222);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.about-btn-accent:hover::after {
    left: 100%;
}

.about-btn-accent:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    background: #111111;
}

.about-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====== STATUS & ANIMATIONS ====== */
.status-loading {
    color: #0D6EFD;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-loading::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(13, 110, 253, 0.25);
    border-top-color: rgba(13, 110, 253, 1);
    border-radius: 50%;
    animation: spinner 1s linear infinite;
}

.status-success {
    color: #198754;
}

.status-error {
    color: #DC3545;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* ====== REQUEST BOTH BUTTON ====== */
.request-both-container {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.request-both-btn {
    background-color: #40E0D0;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
}

.request-both-btn:hover {
    background-color: #36c0b0;
}

/* ====== RESPONSIVE MODAL STYLES ====== */
@media (max-width: 768px) {
    .about-modal-content {
        padding: 3rem;
        width: 95%;
    }
    
    .auth-modal-content {
        padding: 20px;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .about-doc-preview .about-preview-icon {
        width: 70px;
        height: 70px;
    }
    
    .auth-buttons {
        flex-direction: column;
    }
}

/* ====== CONTACT CTA SECTION ====== */
.contact-cta {
    padding: 10rem 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-color: var(--color-accent);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4.8rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 2rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.about-cta-btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 1.4rem 3.6rem;
    border-radius: var(--border-radius-full);
    background-color: #111111; /* Fond noir */
    color: var(--color-white); /* Texte blanc */
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Effet de brillance subtil */
.about-cta-btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
    transition: transform 0.8s ease;
    transform: skewX(-15deg);
}

.about-cta-btn-accent:hover {    
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: #000000; /* Noir plus profond au survol */
}

.about-cta-btn-accent:hover::before {
    transform: translateX(200%) skewX(-15deg);
    transition: transform 1.2s ease;
}

/* Effet de texte au survol */
.about-cta-btn-accent span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.about-cta-btn-accent:hover span {
    transform: translateX(5px);
}

/* Flèche ou icône à droite */
.about-cta-btn-accent .icon {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.about-cta-btn-accent:hover .icon {
    transform: translateX(4px);
}