/* ===== ABOUT PAGE STYLES ===== */

/* About Page */
.about-hero {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Floating Water Elements for About Page */
.floating-water-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.water-drop {
    position: absolute;
    width: 15px;
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: waterDropFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.water-drop-1 { left: 5%; top: 10%; animation-delay: 0s; }
.water-drop-2 { left: 15%; top: 20%; animation-delay: 1s; }
.water-drop-3 { left: 25%; top: 15%; animation-delay: 2s; }
.water-drop-4 { left: 35%; top: 25%; animation-delay: 3s; }
.water-drop-5 { left: 45%; top: 10%; animation-delay: 4s; }
.water-drop-6 { left: 55%; top: 20%; animation-delay: 5s; }

@keyframes waterDropFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) rotate(-5deg);
        opacity: 0.7;
    }
}

/* About Background Icons */
.about-background-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: bgIconFloat 10s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.bg-icon:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(102, 204, 255, 0.6);
}

.bg-icon-1 { left: 10%; top: 30%; animation-delay: 0s; }
.bg-icon-2 { left: 20%; top: 40%; animation-delay: 1s; }
.bg-icon-3 { left: 30%; top: 35%; animation-delay: 2s; }
.bg-icon-4 { left: 40%; top: 45%; animation-delay: 3s; }
.bg-icon-5 { left: 50%; top: 30%; animation-delay: 4s; }
.bg-icon-6 { left: 60%; top: 40%; animation-delay: 5s; }

@keyframes bgIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(3deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-25px) rotate(-3deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
}

.about-description p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Skills Section */
.skills {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(102, 204, 255, 0.5);
}

.category-title i {
    color: var(--water-cyan);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    margin-bottom: 0.75rem;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(102, 204, 255, 0.3);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

/* Compact typography for skills */
.skills .section-title { font-size: 2rem; }
.skills .category-title { font-size: 1.1rem; }
.skills .skill-name { font-size: 0.95rem; }
.skills .skill-percentage { font-size: 0.9rem; }

.skill-name {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.skill-percentage {
    font-weight: 600;
    color: var(--water-cyan);
    font-size: 1rem;
    animation: percentageGlow 2s ease-in-out infinite alternate;
}

@keyframes percentageGlow {
    0% {
        text-shadow: 0 0 5px rgba(102, 204, 255, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(102, 204, 255, 0.8);
    }
}

.skill-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skillShimmer 2s infinite;
}

.skill-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.skill-item:hover .skill-glow {
    opacity: 0.5;
}

@keyframes skillShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fillBar {
    from { width: 0; }
}

/* Experience Timeline */
.experience {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.timeline-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(102, 204, 255, 0.3);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 20px rgba(102, 204, 255, 0.6);
    animation: markerPulse 2s ease-in-out infinite;
}

.marker-line {
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    margin: 0 auto;
    margin-top: 10px;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(102, 204, 255, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(102, 204, 255, 0.8);
    }
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.timeline-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 10px rgba(102, 204, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(102, 204, 255, 0.8);
    }
}

.timeline-company {
    font-weight: 500;
    color: var(--water-cyan);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-company i {
    color: var(--water-cyan);
    animation: iconFloat 3s ease-in-out infinite;
}

.timeline-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-period i {
    color: var(--water-cyan);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(102, 204, 255, 0.2);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 204, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(102, 204, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(102, 204, 255, 0.4);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

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

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        max-width: 600px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .about-hero-professional {
        padding: 3rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats-professional {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .about-description p {
        font-size: 1rem;
        text-align: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-card, .mission-card {
        padding: 1.5rem;
    }
    
    .company-overview {
        padding: 2rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-visual {
        order: -1;
    }
    
    .company-visual-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .visual-card {
        padding: 1.5rem 1rem;
    }
    
    .section-title-professional {
        font-size: 1.75rem;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .company-journey {
        padding: 2rem 0;
    }
    
    .journey-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .timeline-professional {
        padding: 0 1rem;
    }
    
    .timeline-item-professional {
        margin-bottom: 2rem;
    }
    
    .timeline-content-professional {
        padding: 1.5rem;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.25rem;
    }
    
    .timeline-period-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .timeline-company-professional {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .timeline-description-professional {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }
    
    .timeline-achievements {
        margin: 1.5rem 0;
        gap: 0.875rem;
    }
    
    .achievement-item {
        padding: 0.875rem;
        gap: 0.875rem;
    }
    
    .achievement-item i {
        font-size: 1.1rem;
    }
    
    .achievement-item span {
        font-size: 0.9rem;
    }
    
    .timeline-skills-professional {
        gap: 0.625rem;
        margin-top: 1.25rem;
    }
    
    .skill-tag-professional {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .company-values {
        padding: 2rem 0;
    }
    
    .values-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .values-subtitle {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .profile-container {
        height: 300px;
    }
    
    .profile-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .skills {
        padding: 2rem 0;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .skill-item {
        padding: 0.75rem;
    }
    
    .timeline {
        max-width: 100%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 0;
    }
    
    .timeline-content::before {
        left: -50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -50px;
        right: auto;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .about-hero-professional {
        padding: 2.5rem 0 1.5rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats-professional {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .hero-stat-card {
        padding: 1rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .section-title-professional {
        font-size: 1.5rem;
    }
    
    .mission-vision-grid {
        gap: 1rem;
    }
    
    .vision-card, .mission-card {
        padding: 1.25rem;
    }
    
    .about-hero-professional {
        padding: 2rem 0 1.25rem;
    }
    
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .company-overview {
        padding: 1.5rem 0;
    }
    
    .overview-content {
        gap: 1.25rem;
    }
    
    .section-title-professional {
        font-size: 1.35rem;
    }
    
    .company-visual-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .visual-card {
        padding: 1.25rem 0.75rem;
    }
    
    .visual-card h4 {
        font-size: 0.85rem;
    }
    
    .visual-card i {
        font-size: 1.5rem;
    }
    
    .company-highlights {
        gap: 0.625rem;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 0.625rem;
    }
    
    .company-journey {
        padding: 1.5rem 0;
    }
    
    .timeline-professional {
        padding: 0 0.5rem;
    }
    
    .timeline-content-professional {
        padding: 1.25rem;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.1rem;
    }
    
    .timeline-period-badge {
        font-size: 0.75rem;
    }
    
    .company-values {
        padding: 1.5rem 0;
    }
    
    .values-grid {
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
    
    .skills-grid {
        gap: 0.75rem;
    }
    
    .skill-item {
        padding: 0.75rem;
    }
    
    .skill-name {
        font-size: 0.95rem;
    }
}

/* Loading States */
.skills-loading-container {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.skills-loading-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ===== PROFESSIONAL COMPANY STYLES ===== */

/* Professional Hero Section */
.about-hero-professional {
    padding: 6rem 0;
    min-height: auto;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.03) 0%, rgba(0, 204, 255, 0.03) 100%);
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(102, 204, 255, 0.1);
    border: 1px solid rgba(102, 204, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--water-cyan);
    font-size: 1rem;
}

.badge-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-stats-professional {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.hero-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 204, 255, 0.5);
    box-shadow: 0 10px 40px rgba(102, 204, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--water-cyan);
    margin-bottom: 1rem;
}

.hero-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-card .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 204, 255, 0.4);
    box-shadow: 0 15px 50px rgba(102, 204, 255, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(102, 204, 255, 0.3);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.card-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Company Overview Section */
.company-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-professional {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.overview-description {
    margin-bottom: 2.5rem;
}

.overview-description .description-paragraph {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--water-cyan);
    font-size: 1.1rem;
}

.highlight-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-visual-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.visual-card:hover::before {
    opacity: 0.1;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 204, 255, 0.5);
    box-shadow: 0 15px 40px rgba(102, 204, 255, 0.2);
}

.visual-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.visual-card.card-primary i { color: #66ccff; }
.visual-card.card-secondary i { color: #4dd0e1; }
.visual-card.card-tertiary i { color: #26c6da; }
.visual-card.card-quaternary i { color: #00bcd4; }

.visual-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Company Journey Section */
.company-journey {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.timeline-professional {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-professional::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-blue), var(--water-cyan));
    transform: translateX(-50%);
}

.timeline-item-professional {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 120px;
}

.timeline-marker-professional {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 0 30px rgba(102, 204, 255, 0.6);
    position: relative;
    z-index: 2;
    border: 4px solid var(--dark-bg);
}

.marker-line-professional {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-blue), var(--water-cyan));
    margin-top: 10px;
    min-height: 50px;
}

.timeline-content-professional {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content-professional:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 204, 255, 0.4);
    box-shadow: 0 15px 50px rgba(102, 204, 255, 0.15);
}

.timeline-badge-professional {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.timeline-badge-professional .badge-text {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-header-professional {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-header-professional h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.timeline-period-badge {
    padding: 0.5rem 1.2rem;
    background: rgba(102, 204, 255, 0.2);
    border: 1px solid rgba(102, 204, 255, 0.4);
    border-radius: 25px;
    color: var(--water-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-company-professional {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--water-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.timeline-company-professional i {
    font-size: 1.1rem;
}

.timeline-description-professional {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-achievements {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 204, 255, 0.1);
    border-left: 3px solid var(--water-cyan);
    border-radius: 0.5rem;
}

.achievement-item i {
    color: var(--water-cyan);
    font-size: 1.2rem;
}

.achievement-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.timeline-skills-professional {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.skill-tag-professional {
    padding: 0.5rem 1rem;
    background: rgba(102, 204, 255, 0.15);
    border: 1px solid rgba(102, 204, 255, 0.3);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag-professional:hover {
    background: rgba(102, 204, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 204, 255, 0.3);
}

/* Company Values Section */
.company-values {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 204, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 204, 255, 0.5);
    box-shadow: 0 20px 60px rgba(102, 204, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(102, 204, 255, 0.3);
    position: relative;
    z-index: 1;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE STYLES FOR PROFESSIONAL SECTIONS ===== */

@media (max-width: 1024px) {
    .about-hero-professional {
        padding: 5rem 0;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-stats-professional {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .stat-icon {
        font-size: 1.75rem;
    }
    
    .hero-stat-card .stat-number {
        font-size: 2.25rem;
    }
    
    .mission-vision-section {
        padding: 5rem 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .company-overview {
        padding: 5rem 0;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .company-visual-container {
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .visual-card {
        padding: 1.75rem 1.5rem;
    }
    
    .visual-card i {
        font-size: 2.5rem;
    }
    
    .company-journey {
        padding: 5rem 0;
    }
    
    .timeline-item-professional {
        padding-left: 100px;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.6rem;
    }
    
    .company-values {
        padding: 5rem 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
    }
    
    .value-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .about-hero-professional {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-content {
        padding: 0 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats-professional {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-stat-card .stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-card .stat-label {
        font-size: 0.9rem;
    }
    
    .mission-vision-section {
        padding: 4rem 0;
    }
    
    .mission-vision-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
    
    .company-overview {
        padding: 4rem 0;
    }
    
    .overview-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title-professional {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .overview-description .description-paragraph {
        font-size: 1.05rem;
        margin-bottom: 1.25rem;
    }
    
    .company-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .highlight-item {
        padding: 0.875rem;
    }
    
    .highlight-item i {
        font-size: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .company-visual-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visual-card {
        padding: 1.5rem 1rem;
    }
    
    .visual-card i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .visual-card h4 {
        font-size: 1rem;
    }
    
    .company-journey {
        padding: 4rem 0;
    }
    
    .journey-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-professional {
        padding: 0 1rem;
    }
    
    .timeline-professional::before {
        left: 30px;
    }
    
    .timeline-item-professional {
        padding-left: 70px;
        margin-bottom: 3rem;
    }
    
    .timeline-marker-professional {
        width: 60px;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-width: 3px;
    }
    
    .marker-line-professional {
        width: 2px;
    }
    
    .timeline-content-professional {
        padding: 1.5rem;
    }
    
    .timeline-badge-professional {
        padding: 0.35rem 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .timeline-badge-professional .badge-text {
        font-size: 0.8rem;
    }
    
    .timeline-header-professional {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.4rem;
    }
    
    .timeline-period-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .timeline-company-professional {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .timeline-description-professional {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .timeline-achievements {
        margin: 1.5rem 0;
        gap: 0.875rem;
    }
    
    .achievement-item {
        padding: 0.875rem;
    }
    
    .achievement-item i {
        font-size: 1.1rem;
    }
    
    .achievement-item span {
        font-size: 0.9rem;
    }
    
    .timeline-skills-professional {
        gap: 0.625rem;
        margin-top: 1.25rem;
    }
    
    .skill-tag-professional {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .company-values {
        padding: 4rem 0;
    }
    
    .values-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .values-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .value-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero-professional {
        padding: 3rem 0 2.5rem;
    }
    
    .hero-badge {
        padding: 0.45rem 0.875rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-stats-professional {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
    
    .hero-stat-card {
        padding: 1.25rem 0.875rem;
    }
    
    .stat-icon {
        font-size: 1.35rem;
        margin-bottom: 0.625rem;
    }
    
    .hero-stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-card .stat-label {
        font-size: 0.85rem;
    }
    
    .mission-vision-section {
        padding: 3rem 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.75rem 1.25rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
    }
    
    .card-title {
        font-size: 1.35rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .company-overview {
        padding: 3rem 0;
    }
    
    .section-title-professional {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .overview-description .description-paragraph {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .highlight-item span {
        font-size: 0.85rem;
    }
    
    .company-visual-container {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        max-width: 280px;
    }
    
    .visual-card {
        padding: 1.25rem 0.875rem;
    }
    
    .visual-card i {
        font-size: 2rem;
    }
    
    .visual-card h4 {
        font-size: 0.95rem;
    }
    
    .company-journey {
        padding: 3rem 0;
    }
    
    .journey-header {
        margin-bottom: 2.5rem;
    }
    
    .timeline-professional::before {
        left: 25px;
    }
    
    .timeline-item-professional {
        padding-left: 60px;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker-professional {
        width: 50px;
    }
    
    .marker-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-width: 2px;
    }
    
    .timeline-content-professional {
        padding: 1.25rem;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.25rem;
    }
    
    .timeline-period-badge {
        padding: 0.35rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .timeline-description-professional {
        font-size: 0.95rem;
    }
    
    .achievement-item {
        padding: 0.75rem;
        gap: 0.875rem;
    }
    
    .achievement-item span {
        font-size: 0.85rem;
    }
    
    .skill-tag-professional {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .company-values {
        padding: 3rem 0;
    }
    
    .values-grid {
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 1.75rem 1.25rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .value-description {
        font-size: 0.875rem;
    }
}

/* ===== TEAM SECTION STYLES ===== */

.team-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(102, 204, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 204, 255, 0.5);
    box-shadow: 0 20px 60px rgba(102, 204, 255, 0.2);
}

.founder-card {
    border: 2px solid rgba(102, 204, 255, 0.3);
    background: rgba(102, 204, 255, 0.05);
}

.founder-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.team-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.team-card-badge i {
    font-size: 0.9rem;
}

.team-image-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 4px solid rgba(102, 204, 255, 0.3);
    box-shadow: 0 0 30px rgba(102, 204, 255, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    border-color: rgba(102, 204, 255, 0.6);
    box-shadow: 0 0 40px rgba(102, 204, 255, 0.5);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.team-image-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(20px);
    animation: teamGlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes teamGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    color: var(--water-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-bio {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-skill-tag {
    padding: 0.4rem 0.9rem;
    background: rgba(102, 204, 255, 0.15);
    border: 1px solid rgba(102, 204, 255, 0.3);
    border-radius: 15px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 204, 255, 0.4);
}

.team-cta {
    margin-top: 1.5rem;
}

.team-contact-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.team-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 204, 255, 0.4);
}

/* Team Section Responsive */
@media (max-width: 1024px) {
    .team-section {
        padding: 5rem 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-card {
        padding: 2.25rem 2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }
    
    .team-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .team-subtitle {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-card-badge {
        padding: 0.45rem 0.875rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }
    
    .team-image-glow {
        width: 170px;
        height: 170px;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .team-role {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .team-bio {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .team-skills {
        gap: 0.45rem;
        margin-bottom: 1.25rem;
    }
    
    .team-skill-tag {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .team-contact-btn {
        padding: 0.65rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-header {
        margin-bottom: 2.5rem;
    }
    
    .team-subtitle {
        font-size: 1rem;
    }
    
    .team-card {
        padding: 1.75rem 1.25rem;
    }
    
    .team-card-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }
    
    .team-image-glow {
        width: 140px;
        height: 140px;
    }
    
    .team-placeholder {
        font-size: 3rem;
    }
    
    .team-name {
        font-size: 1.35rem;
    }
    
    .team-role {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team-bio {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .team-skills {
        margin-bottom: 1rem;
    }
    
    .team-skill-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .team-social {
        gap: 0.875rem;
        margin-top: 1.25rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .team-cta {
        margin-top: 1.25rem;
    }
    
    .team-contact-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .about-hero-professional {
        padding: 2.5rem 0 2rem;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .hero-stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-icon {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat-card .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-card .stat-label {
        font-size: 0.8rem;
    }
    
    .mission-vision-section {
        padding: 2.5rem 0;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .company-overview {
        padding: 2.5rem 0;
    }
    
    .overview-content {
        gap: 2rem;
        padding: 0 0.75rem;
    }
    
    .section-title-professional {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .overview-description .description-paragraph {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .highlight-item {
        padding: 0.65rem;
    }
    
    .highlight-item i {
        font-size: 0.9rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .company-visual-container {
        max-width: 240px;
        gap: 0.75rem;
    }
    
    .visual-card {
        padding: 1rem 0.75rem;
    }
    
    .visual-card i {
        font-size: 1.75rem;
        margin-bottom: 0.625rem;
    }
    
    .visual-card h4 {
        font-size: 0.9rem;
    }
    
    .company-journey {
        padding: 2.5rem 0;
    }
    
    .journey-header {
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .journey-subtitle {
        font-size: 0.95rem;
    }
    
    .timeline-professional {
        padding: 0 0.75rem;
    }
    
    .timeline-professional::before {
        left: 20px;
    }
    
    .timeline-item-professional {
        padding-left: 55px;
        margin-bottom: 2rem;
    }
    
    .timeline-marker-professional {
        width: 45px;
    }
    
    .marker-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content-professional {
        padding: 1.125rem;
    }
    
    .timeline-header-professional h3 {
        font-size: 1.15rem;
    }
    
    .timeline-period-badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .timeline-company-professional {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .timeline-description-professional {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .timeline-achievements {
        gap: 0.75rem;
        margin: 1.25rem 0;
    }
    
    .achievement-item {
        padding: 0.65rem;
        gap: 0.75rem;
    }
    
    .achievement-item i {
        font-size: 1rem;
    }
    
    .achievement-item span {
        font-size: 0.8rem;
    }
    
    .skill-tag-professional {
        padding: 0.35rem 0.65rem;
        font-size: 0.7rem;
    }
    
    .company-values {
        padding: 2.5rem 0;
    }
    
    .values-header {
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .values-subtitle {
        font-size: 0.95rem;
    }
    
    .values-grid {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .value-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .value-description {
        font-size: 0.85rem;
    }
    
    .team-section {
        padding: 2.5rem 0;
    }
    
    .team-header {
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .team-subtitle {
        font-size: 0.95rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .team-card-badge {
        padding: 0.35rem 0.65rem;
        font-size: 0.7rem;
        margin-bottom: 0.875rem;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
    
    .team-image-glow {
        width: 115px;
        height: 115px;
    }
    
    .team-placeholder {
        font-size: 2.5rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .team-bio {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
    }
    
    .team-skill-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .team-contact-btn {
        padding: 0.55rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* ===== CRITICAL RESPONSIVE FIXES - Prevent Crashes ===== */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    .about-content,
    .about-hero-professional,
    .mission-vision-grid,
    .overview-content,
    .values-grid,
    .skills-grid,
    .timeline-professional {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Ensure all cards don't overflow */
    .mission-card,
    .vision-card,
    .value-card,
    .skill-item,
    .timeline-content-professional,
    .summary-card-professional {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    /* Fix grid layouts */
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }
    
    .overview-content {
        grid-template-columns: 1fr !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    
    .skills-grid {
        grid-template-columns: 1fr !important;
    }
    
    .summary-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    /* Additional mobile fixes */
    .about-hero,
    .about-hero-professional,
    .mission-vision-section,
    .company-overview,
    .company-values,
    .skills,
    .company-journey {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
}
