/* General Styles */
body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Banner Section */
.aboutus-banner {
    position: relative; /* Establish relative positioning for the pseudo-element */
    text-align: center;
    margin-bottom: 3vh;
}

.banner-img {
    width: 100%;
    max-height: 40vh;
    object-fit: cover;
    display: block; /* Prevent extra space below the image */
}

/* Add Overlay on the Banner Image */
.aboutus-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 82, 135, 0.2); /* Solid blue overlay with 20% opacity */
    z-index: 1; /* Ensure the overlay appears above the image */
    pointer-events: none; /* Allow user interaction through the overlay */
}

/* Main Content Container */
.aboutus-container {
    max-width: 60vw;
    margin: 0 auto;
    padding: 4vh 2vw;
    background-color: #fff;
    border-radius: 1vw;
    box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.05);
}
/* Centering the Title */
.center-text-Title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4vh;
    font-size: 2.5vw;
}

.center-text-Title h1 {
    color: #000;
    text-align: center;
    font-size: 2.6vw;
    font-weight: bold;
    margin: 0;
}


/* Content Styling */
.aboutus-content h2,
.aboutus-content h3 {
    color: #000;
    text-align: right;
    margin-top: 4vh;
    font-size: 1.5vw;
    font-weight: bold;
}

.aboutus-content p {
    margin-bottom: 3vh;
    font-size: 1.1vw;
    line-height: 1.8;
    text-align: justify;
}

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

.aboutus-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aboutus-content a:hover {
    color: #0056b3;
}

/* Branches List */
.branches-list {
    list-style-type: none;
    padding: 0;
    margin: 2vh 0;
    font-size: 1.6vw;
}

.branches-list li {
    margin-bottom: 2vh;
}

.branches-list a {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aboutus-container {
        padding: 3vh 4vw;
    }

    .aboutus-content h2,
    .aboutus-content h3 {
        font-size: 4vw;
    }

    .aboutus-content p {
        font-size: 2vw;
    }

    .branches-list {
        font-size: 2vw;
    }
}

@media (max-width: 480px) {
    .aboutus-content h2,
    .aboutus-content h3 {
        font-size: 5vw;
    }

    .aboutus-content p {
        font-size: 2.5vw;
    }
}

/*Brought these from AboutusEn.cshtml */
/* Ensure all text on this page uses Times New Roman - consistent with site */
    .about-hero, .foundation-section, .portfolio-section, .why-choose-banner, .journey-section, .values-section,
    .about-hero *, .foundation-section *, .portfolio-section *, .why-choose-banner *, .journey-section *, .values-section * {
        font-family: 'Times New Roman', Times, serif !important;
    }
    /* Exclude Font Awesome icons - they need their own font */
    .about-hero i[class*="fa"], .foundation-section i[class*="fa"], .portfolio-section i[class*="fa"],
    .why-choose-banner i[class*="fa"], .journey-section i[class*="fa"], .values-section i[class*="fa"] {
        font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
    }

    /* Hero Section */
    .about-hero {
        background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
        padding: 60px 20px 50px;
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fef2f2;
        color: #a51c30;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        border: 1px solid #fecaca;
        margin-bottom: 24px;
    }

    .hero-badge i {
        font-size: 16px;
    }

    .about-hero h1 {
        font-size: 3.35rem;
        font-weight: 700;
        color: #a51c30;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .about-hero h1 span {
        color: #a51c30;
    }

    .hero-tagline {
        font-size: 1.25rem;
        color: #a51c30;
        font-style: italic;
        margin-bottom: 1rem;
        font-weight: 500;
    }

    .hero-description {
        font-size: 1.25rem;
        color: #4a4a4a;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Foundation Section */
    .foundation-section {
        background: #ffffff;
        padding: 70px 20px;
    }

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

    .foundation-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .foundation-header h2 {
        font-size: 3.35rem;
        font-weight: 700;
        font-style: italic;
        color: #111827;
        margin-bottom: 1.5rem;
    }

    .foundation-header p {
        font-size: 1.25rem;
        font-style: italic;
        font-weight: 500;
        color: #6b7280;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.8;
    }

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

    .foundation-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 40px 28px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .foundation-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .foundation-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .foundation-icon.gold {
        background: #fef3c7;
    }

    .foundation-icon.gold i {
        color: #d97706;
    }

    .foundation-icon.red {
        background: #fee2e2;
    }

    .foundation-icon.red i {
        color: #dc2626;
    }

    .foundation-icon.green {
        background: #dcfce7;
    }

    .foundation-icon.green i {
        color: #16a34a;
    }

    .foundation-icon i {
        font-size: 24px;
    }

    .foundation-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        font-style: italic;
        color: #111827;
        margin-bottom: 14px;
    }

    .foundation-card p {
        font-size: 1.25rem;
        color: #6b7280;
        line-height: 1.8;
        margin: 0;
    }

    /* Portfolio Section */
    .portfolio-section {
        background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
        padding: 40px 20px;
    }

    .portfolio-container {
        max-width: 1200px;
        margin: 0 auto;
        height: auto;
    }

    .portfolio-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .portfolio-header h2 {
        font-size: 3.35rem;
        font-weight: 700;
        font-style: italic;
        color: #111827;
        margin-bottom: 1.5rem;
    }

    .portfolio-header h2 span {
        color: #a51c30;
    }

    .portfolio-header p {
        font-size: 1.25rem;
        font-style: italic;
        font-weight: 500;
        color: #6b7280;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.8;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .portfolio-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .portfolio-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .portfolio-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .portfolio-icon i {
        font-size: 28px;
    }

    .portfolio-icon.leadership i { color: #a51c30; }
    .portfolio-icon.sustainability i { color: #16a34a; }
    .portfolio-icon.risk i { color: #6b7280; }
    .portfolio-icon.ai i { color: #dc2626; }

    .portfolio-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        font-style: italic;
        color: #111827;
        margin-bottom: 10px;
    }

    .portfolio-card p {
        font-size: 1.25rem;
        color: #6b7280;
        line-height: 1.8;
        margin: 0;
    }
    /* Why Choose Section - Dark Red Banner */
    .why-choose-banner {
        background-color: #a51c30;
        padding: 40px 20px;
        border-radius: 16px;
        margin: 20px auto;
        max-width: 1200px;
    }

    .why-choose-banner h2 {
        color: #ffffff;
        font-size: 3.35rem;
        font-weight: 700;
        font-style: italic;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .why-choose-banner > p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.25rem;
        font-style: italic;
        font-weight: 500;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 3rem;
        line-height: 1.8;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .feature-item {
        text-align: center;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
    }

    .feature-icon i {
        font-size: 26px;
        color: #ffffff;
    }

    .feature-item h3 {
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 600;
        font-style: italic;
        margin-bottom: 10px;
    }

    .feature-item p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.25rem;
        line-height: 1.8;
        margin: 0;
    }

    /* Our Journey Section */
    .journey-section {
        background: #ffffff;
        padding: 80px 20px;
    }

    .journey-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }

    .journey-content h2 {
        font-size: 3.35rem;
        font-weight: 700;
        font-style: italic;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

    .journey-content h2 span {
        color: #a51c30;
    }

    .journey-content p {
        font-size: 1.25rem;
        color: #4b5563;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .journey-content p:last-child {
        margin-bottom: 0;
    }

    /* Stats Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-card {
        background: #fef2f2;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        border: 1px solid #fecaca;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        font-style: italic;
        color: #a51c30;
        margin-bottom: 8px;
        line-height: 1;
    }

    .stat-label {
        font-size: 1.25rem;
        color: #6b7280;
        font-weight: 500;
        line-height: 1.8;
    }

    /* Mission Vision Values Section */
    .values-section {
        background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
        padding: 80px 20px;
    }

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

    .values-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .values-header h2 {
        font-size: 3.35rem;
        font-weight: 700;
        font-style: italic;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

    .values-header h2 span {
        color: #dc2626;
    }

    .values-header p {
        font-size: 1.25rem;
        font-style: italic;
        font-weight: 500;
        color: #6b7280;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.8;
    }

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

    .value-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 36px 28px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

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

    .value-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .value-icon i {
        font-size: 28px;
        color: #ffffff;
    }

    .value-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        font-style: italic;
        color: #1f2937;
        margin-bottom: 14px;
    }

    .value-card p {
        font-size: 1.25rem;
        color: #6b7280;
        line-height: 1.8;
        margin: 0;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .about-hero h1 {
            font-size: 2.65rem;
        }

        .foundation-header h2,
        .portfolio-header h2,
        .journey-content h2,
        .values-header h2,
        .why-choose-banner h2 {
            font-size: 2.65rem;
        }

        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 30px;
        }

        .journey-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

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

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

        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .about-hero h1 {
            font-size: 2.15rem;
        }

        .hero-tagline {
            font-size: 1.15rem;
        }

        .hero-description {
            font-size: 1.15rem;
        }

        .why-choose-banner {
            padding: 40px 20px;
            border-radius: 0;
            margin: 0;
        }

        .why-choose-banner h2 {
            font-size: 2.15rem;
        }

        .why-choose-banner > p {
            font-size: 1.15rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .journey-content h2,
        .values-header h2,
        .foundation-header h2,
        .portfolio-header h2 {
            font-size: 2.15rem;
        }

        .foundation-header p,
        .portfolio-header p,
        .values-header p {
            font-size: 1.15rem;
        }

        .journey-content p {
            font-size: 1.15rem;
        }

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

        .stat-number {
            font-size: 2rem;
        }

        .portfolio-grid {
            grid-template-columns: 1fr;
        }
    }
/* Additional Utility Classes for Terms/Privacy Boxes */
.bg-yellow-50 {
    background-color: #fefce8;
    border: 1px solid #fef08a;
}

.bg-green-50 {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.bg-red-50 {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}