* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', Arial, sans-serif;

}

body {
    overflow-x: hidden;
    background-color: #f8fafc;
    direction: rtl;
}


.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Navbar Styles (Same as main site) */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #15101E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ED1A37;
    bottom: -5px;
    right: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #ED1A37;
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #15101E;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #15101E;
}

.mobile-menu .close-icon {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        padding: 20px;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
        justify-content: center;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu .hamburger-icon {
        display: block;
    }

    .mobile-menu .close-icon {
        display: none;
    }

    .nav-links.active+.mobile-menu .hamburger-icon {
        display: none;
    }

    .nav-links.active+.mobile-menu .close-icon {
        display: block;
    }
}

/* New About Header Design */
/* .about-header {
    background: linear-gradient(135deg, #15101E 0%, #2A1E3A 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.svg') repeat;
    opacity: 0.05;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: #ED1A37;
}

.about-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
} */
.about-header {
    background: linear-gradient(135deg, #15101E 0%, #2A1E3A 100%);
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        linear-gradient(45deg, transparent 65%, rgba(237, 26, 55, 0.1) 65%),
        linear-gradient(-45deg, transparent 65%, rgba(237, 26, 55, 0.1) 65%);
    background-size: 40px 40px;
    opacity: 0.5;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, 40px);
    }
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: #ED1A37;
}

.about-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* About Sections */
/* .about-section {
    margin-bottom: 60px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-right: 5px solid #ED1A37;
}

.section-title {
    color: #15101E;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: #ED1A37;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 15px;
} */
.about-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.modern-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.card-title {
    color: #2A1E3A;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ED1A37 0%, transparent 100%);
    border-radius: 3px;
}

.card-icon {
    font-size: 2.2rem;
    opacity: 0.8;
    margin-right: 15px;
}

.card-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.card-content p {
    margin-bottom: 20px;
    position: relative;
    padding-right: 25px;
}

.card-content p::before {
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background-color: #ED1A37;
    border-radius: 50%;
}

.card-gradient-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ED1A37 0%, #2A1E3A 100%);
}

/* Decorative elements */
.modern-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: rgba(237, 26, 55, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .modern-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-content {
        font-size: 1rem;
    }
}
/* Values Section */
/*.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom-color: #ED1A37;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: #ED1A37;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #15101E;
} */
 .hero {

    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
        padding-top:55px ;
}

.hero-content {
    padding: 2rem;
    text-align: right;
    color: white;
    max-width: 600px;
    margin-bottom: 5%;
    margin-right: 5%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-button {
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: #ED1A37;
    color: white;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #D01631;
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 50vh;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    .hero-content {
        position: relative;
        width: 90%;
        margin: 0 auto;
        padding: 1rem;
        text-align: center;
        margin-bottom: 10%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-button {
        width: 100%;
        max-width: 250px;
    }
}
/* Values Section - Modern Card Design */
.values-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23f0f0f0"><circle cx="25" cy="25" r="3"/><circle cx="75" cy="25" r="3"/><circle cx="25" cy="75" r="3"/><circle cx="75" cy="75" r="3"/></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(237, 26, 55, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ED1A37 0%, #2A1E3A 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.value-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 26, 55, 0.1) 0%, rgba(42, 30, 58, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #ED1A37 0%, #2A1E3A 100%);
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: #ED1A37;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    color: white;
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2A1E3A;
    position: relative;
    display: inline-block;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: #ED1A37;
    transition: all 0.3s ease;
}

.value-card:hover .value-title::after {
    width: 100%;
}

.value-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(237, 26, 55, 0.1);
}

.member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 20px;
    border-top: 3px solid #ED1A37;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #15101E;
}

.member-position {
    color: #ED1A37;
    font-weight: 500;
}


/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        margin-right: 0;
    }

    .mobile-menu {
        display: block;
    }

    .about-header {
        padding: 80px 20px;
    }

    .about-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}



/* Footer Styles */
.footer {
    background-color: #15101E;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Tajawal', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    margin-left: 10px;
}


.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #ED1A37;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #ED1A37;
    padding-right: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    margin-left: 10px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal .legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal .legal-link:hover {
    color: #ED1A37;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}