/* banner Section */
.about-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
        url('../IMG/563.jpg');
    background-size: cover; */
    /* background-position: center; */
    padding: 140px 0 90px;
    color: white;
    text-align: center;
    position: relative;
}

.about-header h1 {
    font-family: 'Changa', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.about-header .lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 1rem;
    font-family: 'Changa', sans-serif;
}

.breadcrumb-item {
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: #f8f8f8;
    transform: translateX(-3px);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    color: white;
    padding: 0 0.8rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .about-header {
        padding: 100px 0 30px;
    }

    .about-header h1 {
        font-size: 2.2rem;
    }

    .about-header .lead {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }
}

/* Speech of the Chairman */
.chairman-message {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.chairman-img-container {
    overflow: hidden;
}

.chairman-img-container img {
    max-height: 350px;
    object-fit: cover;
}

.message-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .chairman-img-container img {
        max-height: 300px;
    }
}


/* Introduction Section */
.intro-section {
    background-color: var(--section-bg);
}

.intro-section .title {
    color: var(--primary-color);
    font-family: 'Changa', sans-serif;
}




/* Vision & Mission Section */
.vm-section {
    background-color: var(--section-bg);
}

.vm-section .card {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 1px var(--primary-color) !important;
}

.vm-section .card:hover {
    border-color: var(--primary-color);
}

.vm-section .card i {
    color: var(--primary-color);
}

.vm-section h4 {
    color: var(--primary-color);
}

/* Values Section */
.values-section {
    background-color: var(--section-bg);
}

.values-section .card {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 1px var(--primary-color) !important;
}

.values-section h5,
.values-section i {
    color: var(--primary-color);
}

/* Check Icon Animation */
@keyframes checkPulse {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.2);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.fa-check {
    animation: checkPulse 1.5s ease-in-out infinite;
}

/* Lock Icon Animation */
@keyframes lockShake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.fa-lock {
    animation: lockShake 2s ease-in-out infinite;
}

/* Lightbulb Icon Animation - حركة بسيطة بدون توهج */
@keyframes bulbFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.fa-lightbulb-on {
    animation: bulbFloat 2s ease-in-out infinite;
}


/* Users Icon Animation - تعديل حركة الفريق */
@keyframes teamShake {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(5px) rotate(3deg);
    }

    75% {
        transform: translateX(-5px) rotate(-3deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

.fa-users {
    animation: teamShake 3s ease-in-out infinite;
}



/* Timeline Section Styling */
.journey-section {
    position: relative;
    overflow: hidden;
    /* background: url(../IMG/img07.png) no-repeat center center;
    background-size: cover; */
    position: relative;
}

.timeline-v2 {
    position: relative;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--gold-color));
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 0px 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
}

.timeline-card {
    position: relative;
    transition: all 0.3s ease;
    color: #444;
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.timeline-year {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-v2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 30px;
    height: 30px;
    background: var(--gold-color);
    transform: translateX(-50%) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-item {
        padding: 0px 10px;
    }
}

@media (max-width: 768px) {
    .timeline-v2::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
        margin: 10px 0;
        padding: 0px 10px;
    }

    .timeline-year {
        right: auto;
        left: -20px;
    }

    .timeline-v2::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .timeline-card {
        padding: 20px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
    }
}