/* 
   Cruze-Tech About & Team Section Styles
*/

/* ========== About Section ========== */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ========== Core Values ========== */
.core-values {
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.value-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* ========== CEO Section ========== */
.about-image {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
}

.ceo-info {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 5px;
    margin-top: -80px;
    position: relative;
    border: 1px solid rgba(0, 191, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.ceo-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.ceo-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.ceo-quote {
    font-style: italic;
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.ceo-social {
    display: flex;
    gap: 12px;
}

.ceo-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.ceo-social a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* ========== Team Section ========== */
.team-section {
    margin-top: 80px;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background-color: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.team-info {
    padding: 20px;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.team-bio {
    font-size: 0.9rem;
    margin-bottom: 0;
}