/* Premium About Us - Minimalist Editorial Style */

/* --- Timeline Section (Refined to Minimalist List) --- */
.timeline-section {
    position: relative;
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Clear standard timeline lines/dots */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    display: none;
    /* No vertical line */
}

.timeline-container {
    width: 100%;
    padding: 0;
    margin-bottom: 60px;
    position: relative;
    left: auto !important;
    right: auto !important;
    background: transparent;
}

.timeline-container::after {
    display: none;
    /* No dots */
}

.timeline-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none !important;
    /* Override any borders */
}

.timeline-content:hover {
    transform: none;
    /* No hover movement */
}

/* Date Styling - Small & Upper */
.timeline-date {
    display: block;
    position: static;
    background: transparent;
    color: #777;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 1rem;
    box-shadow: none;
    text-align: right;
    font-family: 'Arial', sans-serif;
    /* Clean sans */
}

/* Title Styling - Big & Bold */
.timeline-content h3 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.2;
}

/* Text Styling */
.timeline-content p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
    margin: 0;
    max-width: 100%;
}

/* Remove side accents */
.timeline-content::before {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-container {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .timeline-content h3 {
        font-size: 1.8rem;
    }
}


/* --- Leaders / Symbols Grid --- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.leader-card:hover .leader-img-wrapper img {
    transform: scale(1.08);
}

.leader-info {
    padding: 25px 20px;
    position: relative;
}

.leader-info h4 {
    color: #222;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.leader-info span {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-primary);
    font-weight: 600;
}

/* --- Values Grid --- */
.values-container {
    padding: 40px 0;
}

.values-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.value-card-pro {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card-pro:hover::before {
    transform: scaleX(1);
}

.value-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-icon-box {
    width: 60px;
    height: 60px;
    background: #fbf8f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--brand-accent);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.value-card-pro:hover .value-icon-box {
    background: var(--brand-accent);
    color: #fff;
}

.value-card-pro h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
}

.value-card-pro p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}


/* --- Goals Grid --- */
.goals-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.goal-item-modern {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.goal-item-modern:hover {
    border-color: #8B0000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.goal-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    margin-left: 15px;
    flex-shrink: 0;
}

.goal-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}