:root {
    --navy: #162151;
    --white: #ffffff;
    --teal: #3BB69F;
    --deep-teal: #22536B;
    --blue-green: #2F8485;
    --gold: #BC933A;
    --dark-gray: #606161;
    --bg-first: url('{{ asset("assets/images/first.jpg") }}');
    --bg-story: url('{{ asset("assets/images/story.jpg") }}');
    --bg-about-us: url('{{ asset("assets/images/about_us.jpg") }}');
    --bg-default: url('{{ asset("assets/images/default.jpg") }}');
    --bg-our-company: url('{{ asset("assets/images/our_company.jpg") }}');
}
.c-app {
    color: #3c4b64;
    background-color: transparent !important;
}
.py-4{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.ck-editor__editable,
textarea {
    min-height: 150px;
}

.datatable {
    width: 100% !important;
}

table.dataTable tbody td.select-checkbox::before,
table.dataTable tbody td.select-checkbox::after,
table.dataTable tbody th.select-checkbox::before,
table.dataTable tbody th.select-checkbox::after {
    top: 50%;
}

.dataTables_length,
.dataTables_filter,
.dt-buttons {
    margin-bottom: 0.333em;
    margin-top: .2rem;
}

.dataTables_filter {
    margin-right: .2rem;
}

.dt-buttons .btn {
    margin-left: 0.333em;
    border-radius: 0;
}

.table.datatable {
    box-sizing: border-box;
    border-collapse: collapse;
}

table.dataTable thead th {
    border-bottom: 2px solid #c8ced3;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #c8ced3;
}

.select2 {
    max-width: 100%;
    width: 100% !important;
}

.select2-selection__rendered {
    padding-bottom: 5px !important;
}

.has-error .invalid-feedback {
    display: block !important;
}

.btn-info,
.badge-info {
    color: white;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none;
}

.sidebar .nav-item {
    cursor: pointer;
}

.btn-default {
    color: #23282c;
    background-color: #f0f3f5;
    border-color: #f0f3f5;
}

.btn-default.focus,
.btn-default:focus {
    box-shadow: 0 0 0 .2rem rgba(209, 213, 215, .5);
}

.btn-default:hover {
    color: #23282c;
    background-color: #d9e1e6;
    border-color: #d1dbe1;
}

.btn-group-xs > .btn,
.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.searchable-title {
    font-weight: bold;
}
.searchable-fields {
    padding-left:5px;
}
.searchable-link {
    padding:0 5px 0 5px;
}
.searchable-link:hover   {
    cursor: pointer;
    background: #eaeaea;
}
.select2-results__option {
    padding-left: 0px;
    padding-right: 0px;
}

.form-group .required::after {
    content: " *";
    color: red;
}

.form-check.is-invalid ~ .invalid-feedback {
    display: block;
}

.c-sidebar-brand .c-sidebar-brand-full:hover {
    color: inherit;
}

.custom-select.form-control-sm {
    padding: 0.25rem 1.5rem;
}

/* Modern Professional Table Styling */

.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #40739e 0%, #40739e 100%);
    color: white;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
}

.card-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.card-body {
    padding: 1.5rem;
}

/* Enhanced DataTables Styling */
.datatable {
    width: 100% !important;
    border-radius: 8px;
    overflow: hidden;
}

.datatable thead th {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1rem 0.75rem;
    border-bottom: 2px solid #e9ecef;
    white-space: nowrap;
}

.datatable tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #f1f3f5;
}

.datatable tbody tr {
    transition: all 0.2s ease;
}

.datatable tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.002);
}

.datatable tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.datatable tbody tr:nth-child(even):hover {
    background-color: #f1f3f5;
}

/* Image thumbnails in tables */
.datatable tbody td img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.datatable tbody td img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Action buttons styling */
.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 6px;
    margin: 0 2px;
    transition: all 0.2s ease;
    border: none;
}

.btn-xs.btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 4px rgba(79, 172, 254, 0.3);
}

.btn-xs.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 172, 254, 0.4);
}

.btn-xs.btn-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.btn-xs.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4);
}

.btn-xs.btn-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 2px 4px rgba(245, 87, 108, 0.3);
}

.btn-xs.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 87, 108, 0.4);
}

/* Success/Add button styling */
.btn-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border: none;
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(67, 233, 123, 0.4);
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

/* Badges and status indicators */
.badge {
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

.badge-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.badge-danger {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* DataTables controls styling */
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 6px;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

/* DataTables export buttons */
.dt-buttons .btn {
    border-radius: 6px;
    margin: 0 2px;
    border: none;
    transition: all 0.2s ease;
}

.dt-buttons .btn:hover {
    transform: translateY(-2px);
}

/* DataTables RTL Support */
[dir="rtl"] .dataTables_wrapper .dataTables_filter {
    float: left !important;
    text-align: left !important;
}

[dir="rtl"] .dataTables_wrapper .dataTables_length {
    float: right !important;
}

[dir="rtl"] .dataTables_wrapper .dataTables_info {
    float: right !important;
}

[dir="rtl"] .dataTables_wrapper .dataTables_paginate {
    float: left !important;
}

[dir="rtl"] .dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    margin-right: 0 !important;
    margin-left: 5px !important;
}

[dir="rtl"] .dataTables_wrapper .dataTables_paginate .paginate_button.next {
    margin-left: 0 !important;
    margin-right: 5px !important;
}

[dir="rtl"] .dataTables_wrapper .dt-buttons {
    float: right !important;
}

[dir="rtl"] table.dataTable thead th, [dir="rtl"] table.dataTable thead td {
    text-align: right !important;
}

[dir="rtl"] table.dataTable tbody th, [dir="rtl"] table.dataTable tbody td {
    text-align: right !important;
}

/* Status badges in tables */
.datatable .badge-active,
.datatable .badge-inactive {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-active {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Responsive table improvements */
@media (max-width: 768px) {
    .datatable tbody td,
    .datatable thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .btn-xs {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Checkbox styling */
.datatable tbody td input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 4px;
    border: 2px solid #dee2e6;
}

.datatable tbody td input[type="checkbox"]:checked {
    background-color: #667eea;
    border-color: #667eea;
}

/* Loading overlay */
.dataTables_processing {
    border-radius: 8px;
    padding: 1rem;
}

/* Modern Sidebar Styling */
.c-sidebar {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-right: none;
}

.c-sidebar-brand {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.c-sidebar-brand .brand-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.c-sidebar-brand .brand-link:hover {
    transform: scale(1.05);
}

.c-sidebar-brand .brand-image {
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.c-sidebar-brand .brand-link:hover .brand-image {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.c-sidebar-brand .brand-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.c-sidebar-nav {
    padding: 1rem 0;
}

.c-sidebar-nav-item {
    margin-bottom: 0.25rem;
}

.c-sidebar-nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.c-sidebar-nav-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.3) 100%);
    transition: width 0.3s ease;
}

.c-sidebar-nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: white;
    padding-right: 1.75rem;
}

.c-sidebar-nav-link:hover::before {
    width: 4px;
}

.c-sidebar-nav-link.c-active {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.2) 0%, transparent 100%);
    color: white;
    border-right: 3px solid #667eea;
}

.c-sidebar-nav-link.c-active::before {
    width: 0;
}

.c-sidebar-nav-icon {
    margin-left: 0.75rem;
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: rgba(102, 126, 234, 1);
    transition: all 0.3s ease;
}

.c-sidebar-nav-link:hover .c-sidebar-nav-icon,
.c-sidebar-nav-link.c-active .c-sidebar-nav-icon {
    color: #667eea;
    transform: scale(1.1);
}

/* Dropdown menu styling */
.c-sidebar-nav-dropdown {
    background: rgba(15, 23, 42, 0.3);
}

.c-sidebar-nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.c-sidebar-nav-dropdown-toggle::after {
    position: absolute;
    left: 1.5rem;
    transition: transform 0.3s ease;
}

.c-sidebar-nav-dropdown-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    color: white;
}

.c-sidebar-nav-dropdown.c-show > .c-sidebar-nav-dropdown-toggle {
    background: rgba(102, 126, 234, 0.2);
    color: white;
}

.c-sidebar-nav-dropdown.c-show > .c-sidebar-nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.c-sidebar-nav-dropdown-items {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    border-right: 3px solid rgba(102, 126, 234, 0.3);
}

.c-sidebar-nav-dropdown-items .c-sidebar-nav-link {
    padding-right: 2.5rem;
    font-size: 0.9rem;
}

.c-sidebar-nav-dropdown-items .c-sidebar-nav-link::before {
    display: none;
}

/* Search field in sidebar */
.c-sidebar-nav .searchable-field {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: white;
    padding: 0.75rem;
    margin: 1rem;
    width: calc(100% - 2rem);
}

.c-sidebar-nav .searchable-field:focus {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.c-sidebar-nav .searchable-field option {
    background: #1e293b;
    color: white;
}

/* Logout button special styling */
.c-sidebar-nav-item:last-child {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.c-sidebar-nav-item:last-child .c-sidebar-nav-link {
    color: rgba(245, 87, 108, 0.9);
}

.c-sidebar-nav-item:last-child .c-sidebar-nav-link:hover {
    background: rgba(245, 87, 108, 0.1);
    color: #f5576c;
}

.c-sidebar-nav-item:last-child .c-sidebar-nav-link:hover::before {
    background: linear-gradient(90deg, transparent 0%, rgba(245, 87, 108, 0.3) 100%);
}

.c-sidebar-nav-item:last-child .c-sidebar-nav-icon {
    color: #f5576c;
}

/* Responsive sidebar */
@media (max-width: 991px) {
    .c-sidebar-brand {
        padding: 1rem;
    }
    
    .c-sidebar-brand .brand-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .c-sidebar-nav-link {
        padding: 0.75rem 1rem;
    }
}


/* Welcome Page Styles */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Text Alignment - English (LTR) */
body,
p,
h1, h2, h3, h4, h5, h6,
div,
span,
a,
li,
td,
th,
label,
input,
textarea,
select,
button {
    text-align: left;
}

/* Text Alignment - Arabic (RTL) */
[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] div,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] li,
[dir="rtl"] td,
[dir="rtl"] th,
[dir="rtl"] label,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] button {
    text-align: right;
}

/* Center-aligned elements should stay centered */
[dir="rtl"] .text-center,
[dir="rtl"] [class*="center"],
.text-center,
[class*="center"] {
    text-align: center !important;
}

/* Navigation alignment */
nav {
    text-align: left;
}

[dir="rtl"] nav {
    text-align: right;
}

/* Hero landing title - keep left/right based on language */
.hero-landing-title {
    text-align: left;
}

[dir="rtl"] .hero-landing-title {
    text-align: right;
}

/* Hero landing logo - keep centered */
.hero-landing-logo,
.hero-landing-logo-arabic,
.hero-landing-logo-text {
    text-align: center !important;
}

/* Section titles */
.about-us-title,
.story-title,
.community-title,
.our-scope-title,
.our-partners-title,
.mvv-title,
.parent-company-title,
.get-in-touch-title {
    text-align: left;
}

[dir="rtl"] .about-us-title,
[dir="rtl"] .story-title,
[dir="rtl"] .community-title,
[dir="rtl"] .our-scope-title,
[dir="rtl"] .our-partners-title,
[dir="rtl"] .mvv-title,
[dir="rtl"] .parent-company-title,
[dir="rtl"] .get-in-touch-title {
    text-align: right;
}

/* Paragraphs and text content */
.about-us-paragraph,
.story-text-left,
.story-commitment,
.story-bottom-text,
.community-text,
.mvv-text,
.our-scope-description,
.our-scope-card-text,
.our-partners-description,
.parent-company-description {
    text-align: left;
}

[dir="rtl"] .about-us-paragraph,
[dir="rtl"] .story-text-left,
[dir="rtl"] .story-commitment,
[dir="rtl"] .story-bottom-text,
[dir="rtl"] .community-text,
[dir="rtl"] .mvv-text,
[dir="rtl"] .our-scope-description,
[dir="rtl"] .our-scope-card-text,
[dir="rtl"] .our-partners-description,
[dir="rtl"] .parent-company-description {
    text-align: right;
}

/* Lists */
.community-initiatives-list,
.mvv-values-list {
    text-align: left;
}

[dir="rtl"] .community-initiatives-list,
[dir="rtl"] .mvv-values-list {
    text-align: right;
}

/* Contact items */
.get-in-touch-contact-item {
    text-align: left;
}

[dir="rtl"] .get-in-touch-contact-item {
    text-align: right;
}

/* Footer copyright */
.footer-copyright {
    text-align: center !important;
}

.hero-landing {
    min-height: 100vh;
    position: relative;
    background-image: var(--bg-first);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-landing-top {
    flex: 0 0 33.33%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5vw;
}

.hero-landing-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-landing-logo img {
    max-width: 350px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-landing-logo-text {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy);
    text-align: center;
}

.hero-landing-logo-arabic {
    font-size: clamp(2.5rem, 4.5vw, 3.2rem);
    font-weight: 600;
    color: var(--navy);
    direction: rtl;
    line-height: 1.2;
}

.hero-landing-logo-arabic .teal-char {
    color: var(--teal);
}

.hero-landing-bottom {
    flex: 0 0 66.67%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5vw 80px;
}

.hero-landing-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-landing-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-landing-title .highlight {
    color: var(--teal);
    font-weight: 500;
}

.hero-landing-attribution {
    position: absolute;
    bottom: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    left: 5vw;
    right: auto;

    right: 5vw;
    left: auto;
}

.hero-landing-attribution-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.hero-landing-experia-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-landing-experia-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-landing-experia-subtext {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

header {
    padding: 0px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 77px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--navy);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

.logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 200ms ease;
    color: var(--teal);
}

nav a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 200ms ease;
}

nav a:hover {
    color: var(--teal);
}

.language-switcher {
    position: relative;
    flex-shrink: 0;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    background: transparent;
    border: 1px solid rgba(22, 33, 81, 0.2);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 200ms ease;
}

.language-toggle:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.language-arrow {
    font-size: 0.7rem;
    transition: transform 200ms ease;
}

.language-dropdown:hover .language-arrow,
.language-dropdown.active .language-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border: 1px solid rgba(22, 33, 81, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 200ms ease;
    z-index: 1000;
}

[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
}

.language-dropdown:hover .language-menu,
.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 10px 16px;
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 200ms ease;
}

.language-option:hover {
    background: rgba(59, 182, 159, 0.1);
    color: var(--teal);
}

.language-option.active {
    background: rgba(59, 182, 159, 0.15);
    color: var(--teal);
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    transition: transform 200ms ease, background 200ms ease, border 200ms ease;
    text-decoration: none;
}

.btn-secondary {
    border-color: rgba(22, 33, 81, 0.2);
    color: var(--navy);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(59, 182, 159, 0.35);
}

.btn:hover {
    transform: translateY(-1px);
}

.hero {
    padding: 80px 5vw 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--navy);
}

.hero h1 span {
    color: var(--teal);
}

.hero p {
    margin: 18px 0 30px;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.hero-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    pointer-events: none;
}

.hero-card h3 {
    font-size: 1.15rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--gold);
}

.hero-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 16px;
}

.hero-highlight div {
    text-align: center;
}

.hero-highlight strong {
    display: block;
    font-size: 1.5rem;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--blue-green);
    margin-bottom: 12px;
}

.section-heading {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 30px;
}

section {
    padding: 50px 5vw;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(22, 33, 81, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(22, 33, 81, 0.08);
}

.stat-card strong {
    font-size: 2rem;
    color: var(--teal);
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(34, 83, 107, 0.92), rgba(22, 33, 81, 0.96));
    color: var(--white);
    min-height: 210px;
}

.service-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

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

.portfolio-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(34, 83, 107, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(34, 83, 107, 0.15);
}

.portfolio-thumb {
    background: linear-gradient(135deg, var(--teal), var(--blue-green));
    height: 180px;
}

.portfolio-body {
    padding: 22px 24px 30px;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.testimonials {
    background: var(--navy);
    color: var(--white);
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
}

.testimonial-card p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.contact-card {
    background: var(--white);
    border-radius: 30px;
    padding: 36px;
    border: 1px solid rgba(22, 33, 81, 0.1);
    box-shadow: 0 24px 50px rgba(22, 33, 81, 0.12);
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.get-in-touch-section {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    padding: 80px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.get-in-touch-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: repeating-linear-gradient(to top, rgba(22, 33, 81, 0.6) 0%, transparent 100%);
    z-index: 1;
    opacity: 0.4;
}

.get-in-touch-left {
    position: relative;
    z-index: 2;
}

.get-in-touch-gradient {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 182, 159, 0.4) 0%, rgba(59, 182, 159, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.get-in-touch-title {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--teal);
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.get-in-touch-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.get-in-touch-logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.get-in-touch-logo::before {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
}

.get-in-touch-logo-arabic {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    direction: rtl;
    line-height: 1.2;
}

.get-in-touch-logo-arabic .teal-char {
    color: var(--teal);
    font-size: 1.2em;
}

.get-in-touch-logo-text {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}

.get-in-touch-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.get-in-touch-contact-item {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.6;
}

.get-in-touch-contact-item strong {
    color: var(--teal);
    font-weight: 600;
    margin-right: 8px;
}

.get-in-touch-contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.get-in-touch-contact-item a:hover {
    color: var(--teal);
    text-decoration: underline;
}

.footer-copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    width: 100%;
    padding: 0 5vw;
}

.story-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-story);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 5vw;
    color: var(--white);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 33, 81, 0.3);
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #7FD3C1;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text-left {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-line;
}

.story-commitment {
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-line;
}

.story-commitment::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF6B35;
}

.story-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: auto;
    padding-top: 40px;
}

.story-bottom-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-line;
}

.story-bottom-right {
    position: relative;
    padding-left: 30px;
}

.story-bottom-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #FF6B35;
}

.about-us-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-about-us);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 240, 240, 0.3) 0%, rgba(47, 132, 133, 0.5) 100%);
    z-index: 1;
}

.about-us-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.about-us-text {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.about-us-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    line-height: 1.1;
}

.about-us-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.about-us-paragraph:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: 700;
    color: var(--teal);
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
}

.about-us-paragraph strong {
    color: var(--navy);
    font-weight: 700;
}

.about-us-dna {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dna-helix {
    width: 100%;
    max-width: 400px;
    height: auto;
    opacity: 0.4;
    filter: brightness(1.2);
}

.about-us-branding {
    position: absolute;
    top: 40px;
    right: 5vw;
    left: auto;
    z-index: 3;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

[dir="rtl"] .about-us-branding {
    right: auto;
    left: 5vw;
}

.about-us-experia {
    position: absolute;
    bottom: 40px;
    left: 5vw;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--navy);
}

.experia-icon {
    width: 24px;
    height: 24px;
    background: var(--teal);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.experia-text {
    font-weight: 600;
    color: var(--navy);
}

.mission-vision-values-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-default);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    color: var(--white);
}

.mission-vision-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 81, 0.85) 0%, rgba(34, 83, 107, 0.8) 100%);
    z-index: 1;
}

.mvv-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mvv-card {
    background: transparent;
    padding: 0;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.mvv-icon svg {
    width: 100%;
    height: 100%;
}

.mvv-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 20px;
}

.mvv-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--white);
    white-space: pre-line;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-value-item {
    margin-bottom: 24px;
}

.mvv-value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px;
}

.mvv-value-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--white);
}

.mvv-branding {
    position: absolute;
    top: 40px;
    right: 5vw;
    left: auto;
    z-index: 3;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

[dir="rtl"] .mvv-branding {
    right: auto;
    left: 5vw;
}

.mvv-branding img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.our-scope-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-default);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    color: var(--white);
}

.our-scope-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 81, 0.85) 0%, rgba(34, 83, 107, 0.8) 100%);
    z-index: 1;
}

.our-scope-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.our-scope-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-scope-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 20px;
}

.our-scope-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.our-scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.our-scope-card {
    background: transparent;
    padding: 0;
}

.our-scope-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.our-scope-icon svg {
    width: 100%;
    height: 100%;
}

.our-scope-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
}

.our-scope-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--white);
    white-space: pre-line;
}

.our-scope-branding {
    position: absolute;
    top: 40px;
    right: 5vw;
    left: auto;
    z-index: 3;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

[dir="rtl"] .our-scope-branding {
    right: auto;
    left: 5vw;
}

.our-partners-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-default);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    color: var(--white);
}

.our-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 81, 0.85) 0%, rgba(34, 83, 107, 0.8) 100%);
    z-index: 1;
}

.our-partners-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.our-partners-header {
    margin-bottom: 60px;
}

.our-partners-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 20px;
}

.our-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.our-partners-card {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.our-partners-logo {
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.our-partners-logo img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.our-partners-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.our-partners-logo-text small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 4px;
}

.our-partners-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.our-partners-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-style: italic;
}

.our-partners-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-line;
}

.our-partners-branding {
    position: absolute;
    top: 40px;
    right: 5vw;
    left: auto;
    z-index: 3;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

[dir="rtl"] .our-partners-branding {
    right: auto;
    left: 5vw;
}

.community-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-default);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    color: var(--white);
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 81, 0.85) 0%, rgba(34, 83, 107, 0.8) 100%);
    z-index: 1;
}

.community-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.community-left {
    position: relative;
}

.community-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 40px;
    line-height: 1.2;
}

.community-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--white);
    margin-bottom: 30px;
}

/* .community-text::first-letter {
    font-size: 5rem;
    font-weight: 700;
    color: var(--teal);
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
} */

.community-initiatives-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 20px;
    margin-top: 30px;
}

.community-initiatives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-initiatives-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.community-initiatives-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.5rem;
    line-height: 1.4;
}

.community-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-logo {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(22, 33, 81, 0.4);
    border-radius: 8px;
}

.community-logo-arabic {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    direction: rtl;
}

.community-logo-arabic .teal-char {
    color: var(--teal);
}

.community-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.parent-company-section {
    position: relative;
    min-height: 100vh;
    background-image: var(--bg-our-company);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 5vw;
    color: var(--navy);
}

.parent-company-content {
    position: relative;
}

.parent-company-header {
    margin-bottom: 150px;
    position: relative;
}

.parent-company-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.parent-company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 900px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

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

.solution-card {
    background: var(--teal);
    border-radius: 16px;
    padding: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 182, 159, 0.4);
}

.solution-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.solution-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.solution-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.solution-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.partner-name {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-landing {
        min-height: 40vh;
        position: relative;
        background-image: var(--bg-first);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
    }

    .hero-landing-top {
        flex: 0 0 40%;
        padding: 40px 5vw;
    }

    .hero-landing-bottom {
        flex: 0 0 60%;
        padding: 0 5vw 60px;
    }

    .hero-landing-logo img {
        max-width: 250px;
        max-height: 120px;
    }

    .hero-landing-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .hero-landing-attribution {
        bottom: 20px;
    

        left: 5vw;
        right: auto;
    

        right: 5vw;
        left: auto;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    header {
        height: auto;
        min-height: 120px;
        padding: 10px 5vw;
    }

    .logo img {
        width: 120px;
        height: 120px;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
        gap: 16px;
        flex-wrap: wrap;
    }

    .language-switcher {
        width: 100%;
    }

    .language-menu {
        right: 0;
        left: auto;
    }

    [dir="rtl"] .language-menu {
        left: 0;
        right: auto;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-card {
        padding: 30px;
    }

    .testimonials {
        padding: 36px;
    }

    .story-section {
        padding: 60px 5vw;
        min-height: auto;
    }

    .story-top,
    .story-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-commitment,
    .story-bottom-right {
        padding-left: 0;
    }

    .story-commitment::before,
    .story-bottom-right::before {
        display: none;
    }

    .about-us-content {
        width: 100%;
    }

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

    .about-us-branding {
        top: 20px;
        right: 5vw;
        left: auto;
        font-size: 1rem;
    }

    [dir="rtl"] .about-us-branding {
        right: auto;
        left: 5vw;
    }

    .mvv-branding {
        top: 20px;
        right: 5vw;
        left: auto;
    }

    [dir="rtl"] .mvv-branding {
        right: auto;
        left: 5vw;
    }

    .mvv-branding img {
        max-width: 120px;
        max-height: 60px;
    }

    .about-us-experia {
        bottom: 20px;
        left: 5vw;
    }

    .our-scope-section {
        padding: 60px 5vw;
        min-height: auto;
    }

    .our-scope-grid {
        grid-template-columns: 1fr;
    }

    .our-scope-branding {
        top: 20px;
        right: 5vw;
        left: auto;
        font-size: 1rem;
    }

    [dir="rtl"] .our-scope-branding {
        right: auto;
        left: 5vw;
    }

    .our-partners-section {
        padding: 60px 5vw;
        min-height: auto;
    }

    .our-partners-grid {
        grid-template-columns: 1fr;
    }

    .our-partners-branding {
        top: 20px;
        right: 5vw;
        left: auto;
        font-size: 1rem;
    }

    [dir="rtl"] .our-partners-branding {
        right: auto;
        left: 5vw;
    }

    .community-section {
        padding: 60px 5vw;
        min-height: auto;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-logo {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 30px;
    }

    .community-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .community-text::first-letter {
        font-size: 3.5rem;
    }

    .get-in-touch-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5vw;
        min-height: auto;
    }

    .get-in-touch-gradient {
        left: -150px;
        width: 400px;
        height: 400px;
    }

    .get-in-touch-title {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .get-in-touch-logo::before {
        display: none;
    }

    .parent-company-section {
        padding: 22px 5vw;
        min-height: auto;
    }
    .parent-company-section{
        background-size: contain;
    }
}