* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors from design */
    --primary-blue: #0d5ba8;
    --dark-bg: #1a1d29;
    --footer-bg: #2b2f3e;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;

    /* Font */
    --font-main: 'Cairo', sans-serif;
}

/* Fade Up Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
    will-change: opacity;
}

.animate-fade-in.visible {
    opacity: 1;
}

/* Slide In Right (for RTL/LTR handling) */
.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay modifiers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}




body {
    font-family: var(--font-main);
    background-color: #f9f9f9;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure sections take full width */
main,
section,
header,
nav,
footer {
    width: 100%;
    max-width: 100vw;
}

/* RTL (Arabic) styles */
body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* LTR (English) styles */
body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--primary-blue);
    padding: 10px 0;
    display: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 15px;
}

.top-social-link {
    color: var(--white);
    font-size: 16px;
    transition: opacity 0.3s;
}

.top-social-link:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    gap: 30px;
}

.top-contact-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.top-contact-link i {
    font-size: 14px;
}

/* ==================== MAIN NAVBAR ==================== */
.main-navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.navbar-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    position: relative;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* RTL overrides might be needed */
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-blue);
    padding-left: 25px;
    /* Indent on hover */
}

/* Language Selector Dropdown */
.language-selector {
    position: relative;
    /* ... existing styles ... */
}

.language-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    /* Align right for selector usually */
    background-color: var(--white);
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    text-align: center;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: block;
    padding: 8px 15px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
}

.language-dropdown a:hover {
    background-color: #f0f0f0;
    color: var(--primary-blue);
}


.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.language-selector:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.language-selector i {
    font-size: 16px;
}

.btn-contact {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background-color: #094a8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 91, 168, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-logo {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.footer-bg-logo img {
    width: 450px;
    height: auto;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-company .footer-logo {
    margin-bottom: 20px;
}

.footer-company .footer-logo img {
    height: 80px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 5px;
}

/* Countries Two-Column Layout */
.footer-countries {
    display: flex;
    gap: 20px;
}

.country-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.country-item i {
    color: var(--primary-blue);
    font-size: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary-blue);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-text a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.contact-text a:hover {
    color: var(--primary-blue);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-blue);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 20px;
    }

    /* ==================== NAVBAR RESPONSIVE ==================== */
    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-blue);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        width: 100%;
    }

    /* ==================== ABOUT SECTION RESPONSIVE ==================== */
    /* Strict Image-Top / Text-Bottom Layout */
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .about-image {
        order: -1 !important;
        /* Forces Image to visually appear first */
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .about-content {
        order: 2 !important;
        /* Forces Text to visually appear second */
        width: 100% !important;
    }

    .about-features {
        align-items: center;
    }

    .section-text,
    .feature-text {
        text-align: center !important;
    }

    /* ==================== STATS SECTION RESPONSIVE ==================== */
    /* 1-2-2 Layout logic using centered flexbox */
    .stats-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px;
        grid-template-columns: none !important;
    }

    .stat-card {
        /* Default: 2 cards per row */
        flex: 0 0 calc(50% - 20px);
        max-width: 400px;
        margin-bottom: 20px;
    }

    /* First card takes full width */
    .stat-card:nth-child(1) {
        flex: 0 0 100%;
    }

    /* ==================== FOOTER RESPONSIVE ==================== */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .contact-text,
    .contact-item {
        align-items: center;
        text-align: center;
    }

    /* Arabic RTL Footer Fixes */
    html[dir="rtl"] .footer-top,
    html[dir="rtl"] .footer-links,
    html[dir="rtl"] .contact-text,
    html[dir="rtl"] .contact-item,
    html[dir="rtl"] .footer-social,
    html[dir="rtl"] .footer-section {
        text-align: right !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-hero {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-hero.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-hero.btn-primary:hover {
    background-color: #094a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 91, 168, 0.4);
}

.btn-hero.btn-light {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-hero.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 91, 168, 0.2), rgba(13, 91, 168, 0.4));
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-badge {
    display: inline-block;
    background-color: rgba(13, 91, 168, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    background-color: #f5f5f5;
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.feature-item:hover {
    background-color: #ebebeb;
    transform: translateX(-5px);
}

.feature-heading {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 8px;
}

.feature-heading.purple {
    color: #7b1fa2;
}

.feature-heading.blue {
    color: var(--primary-blue);
}

.feature-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-about:hover {
    background-color: #094a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 91, 168, 0.3);
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 100px 0;
    background-color: #e8e3d3;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-image {
    margin: 50px 0;
}

.products-image img {
    max-width: 100%;
    height: auto;
}

.btn-products {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-products:hover {
    background-color: #094a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 91, 168, 0.3);
}

/* ==================== STATISTICS SECTION ==================== */
.stats-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
    overflow: hidden;
    /* Prevent horizontal scroll from cards */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding: 10px;
    /* Add padding to container to prevent box-shadow clipping */
}

.stat-card {
    background-color: var(--white);
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 91, 168, 0.1), rgba(13, 91, 168, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: var(--primary-blue);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* Page Header */
.page-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header .container-fluid {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.header-shape {
    position: absolute;
    bottom: -5px;
    /* Adjust based on image whitespace */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 300px;
    /* Adjust size */
}

/* Intro Section */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.vm-icon.red {
    background-color: #f44336;
}

.vm-icon.blue {
    background-color: var(--primary-blue);
}

.vm-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-title.red {
    color: #f44336;
}

.vm-title.blue {
    color: var(--primary-blue);
}

.vm-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CEO Section */
.ceo-section {
    padding: 80px 0;
    background-color: #f0f4f0;
    /* Light beige/green tint as per image */
    background-image: url('../assets/Img/About_Page/Grid-bg.png');
    /* If there's a subtle pattern */
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ceo-content {
    position: relative;
    padding: 20px;
}

.ceo-content .quote-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    opacity: 0.2;
}

.ceo-content .quote-icon-end {
    font-size: 40px;
    color: var(--primary-blue);
    float: left;
    margin-top: 10px;
    opacity: 0.2;
}

.ceo-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.ceo-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    text-align: center;
}

.cta-content {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {

    .intro-grid,
    .ceo-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== UPDATED ABOUT PAGE STYLES (V2) ==================== */

/* Page Header V2 */
.page-header-v2 {
    position: relative;
    width: 100%;
    /* Remove fixed height to let image dictate, or set a max-height */
    height: auto;
    overflow: hidden;
}

.header-bg-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-bg-img {
    width: 100%;
    height: auto;
    display: block;
    /* Ensure no cropping on bottom if possible, or object-fit if height constrained */
}

/* Overlay for text readability */
.page-header-v2 .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.header-content-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--white);
    width: 100%;
}

.page-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.page-title-wrapper .page-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0;
    position: relative;
    z-index: 2;
}

.title-shape {
    position: absolute;
    bottom: -15px;
    /* Adjust to move under the text */
    left: 35%;
    /* Adjust to be under '???' */
    transform: translateX(-50%);
    width: 100px;
    /* Adjust size of the shape */
    z-index: 1;
}

/* Intro Grid V2 */
.intro-grid-v2 {
    display: grid;
    /* Column 1 (Right in RTL): Text (1.2fr) | Column 2 (Left in RTL): Image (1fr) */
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    /* Align to top */
    margin-bottom: 0;
}

.intro-text-col {
    /* Contains Badge, Title, Text, VM, Button */
}

.intro-image-col img {
    width: 100%;
    border-radius: 20px;
    /* Reduced height slightly as requested */
    max-height: 850px;
    object-fit: cover;
}

/* Stacked Vision Mission */
.vm-stacked {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-card-row {
    background: var(--white);
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.intro-cta-wrapper {
    margin-top: 40px;
    text-align: right;
}

/* Investments Section */
.investments-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s;
}

.btn-outline-large:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* CEO Grid V2 */
.ceo-grid-v2 {
    display: grid;
    /* Column 1 (Right in RTL): Text | Column 2 (Left in RTL): Image */
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image-col img {
    width: 100%;
    border-radius: 20px;
}

/* Responsive Overrides */
@media (max-width: 992px) {

    .intro-grid-v2,
    .ceo-grid-v2 {
        grid-template-columns: 1fr;
    }

    .intro-image-col {
        order: -1;
        /* Image on top on mobile? Or keep bottom? */
    }
}

/* ==================== ABOUT PAGE V2 ADDITIONAL STYLES ==================== */

/* Header positioning adjustments */
.page-header-v2 .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.page-header-v2 .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header-v2 .breadcrumb a:hover {
    color: var(--white);
}

.page-header-v2 .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-header-v2 .breadcrumb .current {
    color: var(--white);
}

/* Adjust title shape positioning */
.title-shape {
    position: absolute;
    bottom: -20px;
    left: 40%;
    transform: translateX(-50%);
    width: 120px;
    z-index: 3;
}

.title-shape img {
    width: 100%;
    height: auto;
}

/* Intro section adjustments */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-image-col img {
    width: 100%;
    border-radius: 20px;
    max-height: 700px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* CEO greeting style */
.ceo-greeting {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-title-wrapper .page-title {
        font-size: 40px;
    }

    .intro-image-col img {
        max-height: 500px;
    }

    .title-shape {
        width: 80px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .page-title-wrapper .page-title {
        font-size: 32px;
    }

    .intro-grid-v2 {
        gap: 40px;
    }

    .vm-stacked {
        margin-top: 30px;
    }
}