/* ===============================
   EXECUTIVE TEAM SECTION STYLES
   =============================== */

.executive-team-section {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(239, 246, 255, 0.8) 50%, 
        rgba(219, 234, 254, 0.7) 100%
    );
}

.executive-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(13, 27, 42, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(217, 159, 89, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 199, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header Styles */
.executive-team-section .welcome-flag {
    color: #D19F59;
    font-weight: 600;
}

.strip-bg{
    background-color: #9A652D;
    width: 10vw;
    height: 0.25vw;
    margin-inline: auto;
    margin-top: 0.9vw;
}

.executive-team-section .gradient-text {
    background: linear-gradient(135deg, 
        #1f2937 0%,   /* Dark gray */
        #374151 25%,  /* Medium gray */
        #111827 50%,  /* Very dark gray */
        #000000 75%,  /* Black */
        #1f2937 100%  /* Dark gray */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* CEO Profile Styles */
.ceo-profile-container {
    position: relative;
    z-index: 2;
}

.ceo-image-wrapper {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ceo-image-wrapper:hover {
    transform: scale(1.02);
}

.profile-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-container > div {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 320px;
    max-height: 320px;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.profile-image-container > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%); */
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.profile-image-container:hover > div::before {
    transform: translateX(100%);
}

/* Achievement Badges */
.achievement-badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-badge:first-of-type {
    animation-delay: 0s;
}

.achievement-badge:last-of-type {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* CEO Bio Content */
.ceo-bio-content {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.bio-content {
    display: block;
    width: 100%;
}

.ceo-header h3 {
    background: linear-gradient(135deg, #5b441a, #ffb62f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-highlight {
    background: linear-gradient(135deg, #ffffff78 0%, #f8fafc 100%);
    border: 1px solid rgba(230, 229, 228, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    margin-bottom: 2rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bio-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.maritime-color{
    color: #D19F59;
}

/* Career Journey Styles */
.career-journey {
    position: relative;
}

.journey-item {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.3) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-item:hover::before {
    opacity: 1;
}

.journey-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.journey-icon {
    transition: all 0.3s ease;
}

.journey-item:hover .journey-icon {
    transform: scale(1.2);
}

.journey-item h4 {
    color: #2e291b;
    position: relative;
    z-index: 2;
}

.journey-item p {
    color: #25282d;
    position: relative;
    z-index: 2;
}

/* Leadership Philosophy */
.leadership-philosophy {
    background: linear-gradient(135deg, #fff9efcc 0%, rgba(254, 243, 199, 0.6) 100%);
    border: 1px solid rgba(246, 187, 59, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leadership-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.leadership-philosophy:hover::before {
    transform: translateX(100%);
}

.leadership-philosophy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Animation classes for scroll reveal */
.ceo-profile-container {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out forwards;
    animation-delay: 0.3s;
}

.ceo-image-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 1s ease-out forwards;
    animation-delay: 0.5s;
}

.ceo-bio-content {
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.7s;
}

.journey-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
}

.journey-item:nth-child(1) { animation-delay: 1s; }
.journey-item:nth-child(2) { animation-delay: 1.2s; }
.journey-item:nth-child(3) { animation-delay: 1.4s; }

.leadership-philosophy {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
    animation-delay: 1.6s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ceo-profile-container .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ceo-image-wrapper {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .ceo-bio-content {
        order: 2;
    }
    
    .profile-image-container > div {
        width: 16rem;
        height: 16rem;
    }
    
    .achievement-badge {
        position: static;
        display: inline-block;
        margin: 1rem 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .executive-team-section {
        padding: 3rem 0;
    }
    
    .profile-image-container > div {
        width: 14rem;
        height: 14rem;
    }
    
    .ceo-header h3 {
        font-size: 2rem;
    }
    
    .journey-item {
        padding: 1rem;
    }
    
    .journey-item .flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .journey-icon {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .profile-image-container > div {
        width: 12rem;
        height: 12rem;
    }
    
    .bio-content .space-y-6 {
        gap: 1rem;
    }
    
    .achievement-badge {
        margin: 0.5rem 0.25rem;
        padding: 0.5rem;
    }
    
    .achievement-badge div:first-child {
        font-size: 1rem;
    }
    
    .achievement-badge div:last-child {
        font-size: 0.625rem;
    }
}
