.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../IMG/pexels-fauxels-3184418.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
}

.section-title {
    position: relative;
    margin-bottom: 1rem;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
} */

/* start about */
.img-wrapper {
    overflow: hidden;
    position: relative;
}

.about-img {
    transition: transform 0.5s ease-in-out;
    transform-origin: center center;
    display: block;
    width: 100%;
    max-height: 380px;
}

.img-wrapper:hover .about-img {
    transform: scale(1.1);
}

/* Mission, Vision, Values */
/* === General Card Style === */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* === Card Body === */
.card-body {
    position: relative;
    z-index: 2;
}

.card-body h3 {
    font-weight: 700;
    color: var(--primary-dark, #265e97);
    /* استخدم متغير أو لون ثابت */
}

.card-body p,
.card-body ul {
    position: relative;
    z-index: 2;
}

/* === Background Icon === */
.icon-bg {
    position: absolute;
    top: -15px;
    left: 15px;
    z-index: 0;
    color: rgba(38, 94, 151, 0.1);
    transition: all 0.5s ease;
    font-size: 150px;
}


.card:hover .icon-bg {
    transform: scale(1.1);
    color: rgba(38, 94, 151, 0.1);
}

/* === Animations === */
.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.bullseye-animation {
    animation: bullseye 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bullseye {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1);
    }
}

/* === Values List === */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 30px;
}

.values-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    color: var(--primary-dark, #265e97);
    position: absolute;
    left: 0;
}

.Contact{
    background: linear-gradient(135deg, #6e6e72 0%, #949599 100%);
}

.contact-info {
    background-color: var(--primary-light);
    border-radius: 10px;
    padding: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.company-logo {
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Icon Box Styles */
.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card:hover .icon-box {
    transform: scale(1.1);
    background-color: var(--primary-dark) !important;
}