/* About Page Specific Styles */

/* 1. CEO Greeting Section */
.ceo-greeting-section {
    padding: 100px 0;
    background: #fff;
}

.greeting-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ceo-image-box {
    flex: 0 0 400px;
    height: 500px;
    background: #e0e0e0;
    /* Placeholder gray */
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.ceo-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    font-weight: 700;
}

.ceo-text-box {
    flex: 1;
}

.greeting-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.3;
}

.greeting-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.ceo-sign {
    margin-top: 30px;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
}

.ceo-role {
    font-size: 1rem;
    color: #888;
}


/* 2. Partners Team Section */
.partners-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.p-image-area {
    height: 300px;
    background: #ddd;
    position: relative;
}

.p-photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    /* Different shades can be applied inline */
}

.p-info-area {
    padding: 30px;
}

.p-name-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.p-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
}

.p-position {
    font-size: 0.9rem;
    color: #0044cc;
    font-weight: 600;
    margin-left: 5px;
}

.p-specs {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
}

.p-specs strong {
    color: #222;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.p-specs p {
    margin-bottom: 10px;
}


/* 3. Core Values (Bottom) */
.values-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: left;
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #0044cc;
}

.v-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: #0044cc;
}

.v-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.v-desc {
    font-size: 1rem;
    color: #111;
    /* Changed to Black */
    line-height: 1.6;
}

/* Responsive */

/* Tablet (768-1024px) */
@media (max-width: 1024px) {

    .ceo-greeting-section,
    .partners-section,
    .values-section {
        padding: 80px 0;
    }

    .greeting-layout {
        gap: 40px;
    }

    .ceo-image-box {
        flex: 0 0 350px;
        height: 450px;
    }

    .greeting-title {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    .ceo-greeting-section,
    .partners-section,
    .values-section {
        padding: 60px 0;
    }

    .greeting-layout {
        flex-direction: column;
        gap: 30px;
    }

    .ceo-image-box {
        flex: none;
        width: 100%;
        height: 400px;
    }

    .greeting-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .greeting-body {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ceo-name {
        font-size: 1.3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .p-image-area {
        height: 250px;
    }

    .p-info-area {
        padding: 25px;
    }

    .p-name {
        font-size: 1.2rem;
    }

    .p-specs {
        font-size: 0.85rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .value-card {
        padding: 30px;
    }

    .v-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .v-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .v-desc {
        font-size: 0.95rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    .ceo-greeting-section,
    .partners-section,
    .values-section {
        padding: 50px 0;
    }

    .ceo-image-box {
        height: 300px;
    }

    .greeting-title {
        font-size: 1.75rem;
    }

    .p-image-area {
        height: 220px;
    }

    .p-info-area {
        padding: 20px;
    }

    .value-card {
        padding: 25px;
    }
}