@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* General styles and font styles */
:root {
    --primary-color: #041736;
    --accent-color: #3359af;
    --text-light: #ffffff;
    --text-dark: #465772;
    --bg-dark: #224e9b;
    --font-family: 'Inter', sans-serif;
    --font-family-Avenir: 'Avenir', sans-serif;
    --font-family-ElMessiri: "El Messiri", sans-serif;
    --Base-CTA: #1A57F5;
    --Base-White: #FFFFFF;
    --Light-Gray: #EEEEEE;
    --White-color: #FFFFFF;
    --White-Opacity-30: rgba(255, 255, 255, 0.3);
    --Blue-20: #AEB4C4;
    --Blue-40: #758299;
    --Blue-60: #465772;
    --Blue-80: #1D3754;
    --Grey-20: #E9E9EA;
    --Gray-50: #F6F7F9;
    --Gray-200: #E2E6EB;
    --Gray-300: #D0D5DD;
    --Gray-400: #9BA5B6;
    --Gray-500: #667085;
    --Gray-600: #475467;
    --Gray-700: #344054;
    --Gray-900: #161E2E;
    --OnBackground-Primary: #363E47;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: #f4f4f4;
}

/* Header and Navbar styles - Shared */
.main-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 20px 40px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 10px;
}

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

.logo img {
    height: 80px;
    width: 100% !important;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-links a {
    color: var(--Grey-40);
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 188.235% */
    text-decoration: none;
}

.contact-btn {
    border: 1px solid var(--text-light);
    padding: 8px 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.navbar-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--Base-White);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Header Color Themes */
/* Dark Theme (for the homepage) */
.header-dark {
    /*background-color: var(--bg-dark);*/
    color: var(--Base-White);
}

.header-dark .header-link,
.header-dark .nav-links a {
    color: var(--Base-White);
}
.header-dark .header-link,
.header-dark .contact-links a {
    color: var(--Base-White);
}
.header-dark .header-link,
.header-dark .contact-links .active-lang {
    text-decoration-line: underline;
    text-decoration-color: var(--Base-White);
    text-underline-offset: 10px;

}
/* Light Theme (for sub pages) */
.header-light {
    background-color: var(--Base-White);
    color: var(--Blue-80);
}

.header-light .header-link,
.header-light .nav-links a {
    color: var(--Blue-80);
}
.header-light .header-link,
.header-light .nav-links a:hover {
    color: var(--Base-CTA);

}
.header-light .header-link,
.header-light .contact-links a {
    color: var(--Blue-40);
}
.header-light .header-link,
.header-light .contact-links .active-lang {
    text-decoration-line: underline;
    text-decoration-color: var(--Blue-80);
    text-underline-offset: 10px;

}
/* Footer Styles - Shared */
.main-footer {
    padding: 80px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-section {
    flex-basis: 250px;
}

.footer-links-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

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

.footer-links li a {
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
}

.footer-social-section {
    text-align: center;
}

.footer-social-section p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    border: 1px solid white;
    padding: 5px;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Footer Color Themes */
/* Dark Footer */
.footer-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.footer-dark .footer-links li a {
    color: var(--text-light);
}

.footer-dark .social-links a svg {
    color: var(--text-light);
}

/* Light Footer */
.footer-light {
    background: var(--Gray-500);
    color: #fff;
}

.footer-light .footer-links li a {
    color: var(--Grey-20);
}

/* Hero section styles (updated for HTML-based slider) */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 51, 102, 0.95), rgba(0, 51, 102, 0));
  z-index: 1;
  pointer-events: none;
}

/* Slider container and image styles */
/*.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}*/

.slider-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* حالة افتراضية */
  opacity: 0;
  animation: none;               /* مهم لإيقاف أي أنيميشن قديم */
  pointer-events: none;          /* اختيارية */
  will-change: transform, opacity;
  backface-visibility: hidden;   /* لتقليل الوميض */
  transform: translateZ(0);      /* تفعيل التسريع */
  transition: opacity 0.8s ease; /* تلاشي فقط */
}

/* أنيميشن الزوم */
@keyframes kb-zoom-inout {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.slider-image.active {
  opacity: 1;
  animation: kb-zoom-inout 8s ease-in-out forwards;
}


/* NEW CSS for slider navigation arrows */
.slider-nav-arrows {
    position: absolute;
    bottom: 30px;
    left: 70px;
    z-index: 2;
    display: flex;
    gap: 1px;
}

.prev-arrow,
.next-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-arrow:hover,
.next-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev-arrow svg,
.next-arrow svg {
    color: var(--text-light);
    width: 20px;
    height: 20px;
}

/* Make sure to adjust responsive styles if needed */
@media (max-width: 992px) {
    .slider-nav-arrows {
        left: 20px;
        bottom: 20px;
        gap: 5px;
    }
}
/* Hero content styles */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0px;
}

.hero-text-container {
    flex: 1;
    text-align: left;
}
.hero-text-slides {
    position: relative;
}
.hero-text-slide {
    display: none;
}
.hero-text-slide.active {
    display: block;
}

.whats-new {
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid var(--text-light);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
    opacity: 0.8;
    color: var(--text-light);
}

.hero-section .hero-title {
    color: var(--Base-White);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-section .hero-description {
    color: var(--Base-White);
    font-size: 1rem;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.discover-btn {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--text-light);
    padding: 10px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slider dots styles */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 150%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}


.dot {
    position: relative;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--text-light);
}

.dot.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3.81px;
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid var(--text-light);
    border-radius: 50%;
    z-index: -1;
}
/* Responsive styles */
@media (max-width: 992px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .navbar-bottom {
        display: none;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }
    .hero-text-container {
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-description {
        max-width: 100%;
    }
}

/* Company Overview Section */
.company-overview-section {
    background-color: #ffffff;
    padding: 80px 40px;
    color: var(--text-dark);
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.overview-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
}

.more-about-link {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-top: 25px;
}

.more-about-link:hover {
    color: var(--accent-color);
}

.arrow-icon {
  line-height: 1;
  padding: 5px 10px 0 0;
  display: initial;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  margin-left: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.arrow-icon:hover {
    border: 1px solid var(--primary-color);
}

.overview-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
}

.metric-item {
    flex: 1 1 200px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.2;
}

/* Responsive styles for this section */
@media (max-width: 768px) {
    .overview-container {
        flex-direction: column;
        gap: 30px;
    }
    .overview-left {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .metrics-row {
        justify-content: center;
    }
    .metric-item {
        text-align: center;
    }
}

/* Sectors Section */
.sectors-section {
    background-color: #f8f8f8;
    padding: 80px 40px;
}

.sectors-header-container {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sectors-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.sectors-subtitle {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
}

.view-all-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-color);
}

/* Corrected CSS for the slider controls */
.sectors-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: calc(100% - 80px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1;
}

.sectors-cards-row {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

/* Hiding the scrollbar */
.sectors-cards-row::-webkit-scrollbar {
    display: none;
}
.sectors-cards-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sector-card {
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* NEW: The card overlay's initial state */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 51, 102, 0.9);
    color: var(--text-light);
    padding: 10px;
    transition: transform 0.3s ease;
    transform: translateY(calc(100% - 50px));
}

/* NEW: The hover state for the card overlay */
.sector-card:hover .card-overlay {
    transform: translateY(0);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--text-light);
}

.card-description {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.8;
    color: var(--text-light);
}

/* Responsive styles */
@media (max-width: 992px) {
    .sectors-header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .sectors-header-right {
        align-self: flex-end;
    }
}
@media (max-width: 768px) {
    .sectors-slider-container {
        padding: 0 40px;
    }
    .sectors-cards-row {
        flex-wrap: nowrap;
    }
    .slider-controls {
        display: flex;
    }
}
@media (max-width: 480px) {
    .sectors-slider-container {
        padding: 0 20px;
    }
    .sector-card {
        width: 80%;
    }
}

/* Newsroom Section */
.newsroom-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.news-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.large-news-cards {
    display: flex;
    gap: 40px;
}

.large-news-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.large-news-card img {
    width: 100%;
    height: 50%;
    display: block;
}

.card-body {
    padding: 20px;
}

.tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-card-description,
.news-card-date {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.text-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-news-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.small-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.small-news-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 5px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .news-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .large-news-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .large-news-card {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .view-all-link {
        align-self: flex-end;
    }
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    color: var(--text-light);
}

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


.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 400;
}

.filter-dropdown select {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFFFFF' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.portfolio-cards-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.portfolio-cards-row::-webkit-scrollbar {
    display: none;
}
.portfolio-cards-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.portfolio-card {
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Featured card styles */
.featured-card {
    width: 450px;
    background-color: #fff;
    color: var(--text-dark);
}

.featured-card .card-content {
    padding: 30px;
}

.featured-card .view-details-link {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    margin-top: 20px;
}

.featured-card .arrow-icon {
    margin-left: 10px;
    font-size: 1.2rem;
    line-height: 1;
}

/* Dark cards styles */
.dark-card {
    width: 280px;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-card .card-image-wrapper {
    height: 65%;
    overflow: hidden;
}
.dark-card .card-image-wrapper img {
    height: 100%;
    object-fit: cover;
}

.dark-card .card-content {
    padding: 20px;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
    color: var(--text-light);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.view-portfolio-btn {
    display: block;
    width: 250px;
    text-align: center;
    margin: 50px auto 0;
    padding: 15px 30px;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-portfolio-btn:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Responsive styles */
@media (max-width: 768px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .portfolio-cards-row {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: hidden;
    }
    .featured-card {
        width: 100%;
    }
    .dark-card {
        width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .dark-card {
        width: 100%;
    }
    .view-portfolio-btn {
        width: 100%;
    }
}

/* Sustainability Section */
.sustainability-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 100px 40px;
    min-height: 500px;
}

.sustainability-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sustainability-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sustainability-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.8;
}

.find-out-more-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.find-out-more-link:hover {
    color: var(--accent-color);
}

.circle-arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--text-light);
    margin-left: 15px;
    transition: border-color 0.3s ease;
}

.find-out-more-link:hover .circle-arrow-icon {
    border-color: var(--accent-color);
}

.circle-arrow-icon svg {
    color: var(--text-light);
    width: 18px;
    height: 18px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .sustainability-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .sustainability-section {
        padding: 50px 20px;
    }
    .sustainability-title {
        font-size: 2rem;
    }
}
/* Subsidiaries Section */
.subsidiaries-section {
    background-color: #fff;
    padding: 80px 40px;
}

.subsidiaries-container {
    max-width: 1400px;
    margin: 0 auto;
}

.subsidiaries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.subsidiaries-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.header-links {
    display: flex;
    gap: 30px;
}

.header-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 0.9rem;
}

.icon-plus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-plus svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.header-link:hover .icon-plus {
    background-color: var(--primary-color);
}
.header-link:hover .icon-plus svg {
    color: var(--text-light);
}

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

.subsidiary-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.subsidiary-card img {
    max-width: 100%;
    height: 80px;
    margin-bottom: 10px;
    display: block;
    margin: 0 auto 10px;
    padding: 10px;
}

.subsidiary-category {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: #f8f8f8;
    border-radius: 25px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .subsidiaries-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .header-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    .subsidiaries-grid {
        grid-template-columns: 1fr;
    }
}

/* Geography Section */
.geography-section {
    background-attachment: inherit;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    min-height: 600px;
    color: var(--primary-color);
}

.geography-content-container {
    max-width: 1400px;
}

.geography-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.geography-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.view-portfolio-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.view-portfolio-link:hover {
    color: var(--primary-color);
}

.icon-plus-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-left: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.icon-plus-circle svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.view-portfolio-link:hover .icon-plus-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.view-portfolio-link:hover .icon-plus-circle svg {
    color: var(--text-light);
}

/* Responsive styles */
@media (max-width: 992px) {
    .geography-section {
        background: linear-gradient(rgba(240, 244, 247, 0.9), rgba(240, 244, 247, 0.9)),
                    url('https://via.placeholder.com/1920x1080.png?text=Map+of+Saudi+Arabia') center/cover no-repeat;
        background-attachment: fixed;
    }
}
@media (max-width: 768px) {
    .geography-section {
        padding: 80px 20px;
    }
    .geography-content-container {
        max-width: 100%;
    }
}
/* About Page Hero Section */
.about-hero-section {
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 120px;
}

.about-hero-title {
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-hero-description {
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 800px;
}

/* About Tabs Section */
.about-tabs-section {
    background-color: #fff;
    padding: 10px 40px;
}
.about-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}
.tabs-nav {
    margin-bottom: 50px;
}
.tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}
.tab-link {
    display: block;
    padding: 20px 0;
    color: var(--Blue-80);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
}
.tab-link:hover,
.tab-link.active-tab {
    color: var(--primary-color);
    border-bottom: 2px solid var(--Blue-40);
    margin-bottom: -1px;
}
.tabs-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}
.tab-content {
    display: none;
}
.tab-content.active-content {
    display: block;
}
.tab-content-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}
.content-left {
    flex: 1;
    text-align: left;
}
.content-right {
    flex: 1.5;
}
.small-title {
    color: var(--Gray-600);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration-line: underline;
    text-decoration-color: #AEB4C4;
    text-underline-offset: 10px;
    margin-bottom: 50px;
}
.large-title {
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
.content-right p {
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}
.image-placeholder {
    height: 300px;
    background-color: #eee;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .tab-content-grid {
        flex-direction: column;
    }
}

/* Founders Message Section */
.founders-message-section {
    background-color: #f8f8f8;
    padding: 80px 40px;
}

.founders-message-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.message-left {
    flex: 1.5;
}

.message-right {
    flex: 1;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: #777;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.message-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.message-quote p {
    margin-bottom: 15px;
}

.founders-info {
    margin-bottom: 30px;
}

.founders-names {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founders-title {
    font-size: 0.9rem;
    color: #555;
}

.leadership-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.leadership-link:hover {
    color: var(--primary-color);
}

.arrow {
    margin-left: 10px;
    font-size: 1.2rem;
    line-height: 1;
}

.message-right .image-placeholder {
    background-color: #ddd;
    height: 300px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .founders-message-container {
        flex-direction: column;
    }
    .message-left,
    .message-right {
        flex: 1;
    }
    .message-right {
        order: -1;
        margin-bottom: 30px;
    }
}
/* Mission and Vision Tab Content */
.mission-vision-grid {
    display: flex;
    gap: 50px;
    padding: 30px;
}

.vision-col,
.mission-col {
    flex: 1;
    text-align: center;
}

.mv-small-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid var(--primary-color);
}

.mv-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.mv-text strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mission-vision-grid {
        flex-direction: column;
    }
}

/* Business Model Tab Content */
.business-model-container {
    padding: 30px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.centered-text {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.business-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.business-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.business-card .card-description {
    font-size: 0.9rem;
    color: #555;
}

/* Culture and Values Tab Content */
.culture-container {
    padding: 30px 0;
}

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

.section-subtitle-lines {
    font-size: 0.9rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 20px;
}

.section-subtitle-lines::before,
.section-subtitle-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #ddd;
}

.section-subtitle-lines::before {
    left: -70px;
}

.section-subtitle-lines::after {
    right: -70px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.culture-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.culture-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.icon-placeholder {
    height: 80px;
    width: 80px;
    background-color: #eee;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.culture-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.culture-card .card-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* About Grid Section */
.about-grid-section {
    background-color: #f8f8f8;
    padding: 80px 40px;
}

.about-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.grid-item-image {
    padding: 20px;
}

.grid-item-text {
    padding: 20px;
}

.grid-small-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grid-text-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.image-placeholder {
    background-color: #ddd;
    height: 400px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--Base-White);
    padding: 80px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.contact-left-image {
    flex: 1;
}

.contact-left-image .image-placeholder {
    width: 100%;
    height: 690px;
    background-color: var(--Grey-20);
    border-radius: 10px;
}

.contact-form-wrapper {
    flex: 1;
}

.form-title {
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--Blue-60);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--Gray-200);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--Gray-900);
    font-family: var(--primary-font);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.phone-inputs {
    display: flex;
    gap: 10px;
}

.phone-inputs select {
    flex-basis: 80px;
    width: auto;
}

.phone-inputs input {
    flex-grow: 1;
}

.submit-btn {
    display: block;
    width: 100%;
    background-color: var(--Base-CTA);
    color: var(--Base-White);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

/* Locations Section */
.locations-section {
    background-color: var(--Base-White);
    padding: 80px 40px;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background-color: var(--Base-White);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--Gray-200);
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%233359AF' stroke-width='4' stroke-dasharray='10, 10' d='M0 0 l100 100'/%3E%3Cpath fill='none' stroke='%233359AF' stroke-width='4' stroke-dasharray='10, 10' d='M100 0 l-100 100'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

.card-body {
    padding: 20px;
}

.location-title {
    color: var(--Blue-80);
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}

.location-address,
.location-phone {
    color: var(--Gray-600);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.get-directions {
    display: inline-block;
    margin-top: 15px;
    color: var(--Base-CTA);
    text-decoration: none;
    font-weight: 500;
}

.get-directions:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-container,
    .locations-container {
        flex-direction: column;
    }
    .contact-left-image .image-placeholder {
        height: 300px;
    }
}

/* Explore More Section */
.explore-more-section {
    background-color: var(--Base-White);
    padding: 80px 40px;
}

.explore-more-container {
    max-width: 1400px;
    margin: 0 auto;
}

.explore-more-header {
    margin-bottom: 50px;
}

.explore-small-title {
    color: var(--Gray-600);
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-decoration-line: underline;
    text-decoration-color: var(--Gray-600);
    text-underline-offset: 10px;
}

.explore-main-title {
    color: var(--Gray-900);
    font-size: 2.5rem;
    font-weight: 700;
}

.explore-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.explore-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--Gray-50);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--Blue-80);
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-card .card-title {
    color: var(--Gray-700);
    font-size: 1.2rem;
    font-weight: 700;
}

.explore-card .card-arrow {
    font-size: 1.5rem;
    color: var(--Base-CTA);
}

/* Responsive styles */
@media (max-width: 768px) {
    .explore-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* News & Media Section */
.news-section {
    background-color: #fff;
    padding: 50px 40px;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}

.news-tab-link {
    display: block;
    padding-bottom: 10px;
    color: #999;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.news-tab-link.active-tab {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: -1px;
}

.news-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.news-content-left {
    flex: 1;
}

.news-content-left .image-placeholder {
    height: 400px;
    background-color: #eee;
    border-radius: 10px;
}

.news-content-right {
    flex: 1;
}

.content-small-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-large-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-description,
.content-date {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.content-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .news-content-wrapper {
        flex-direction: column;
    }
}
/* News Cards Grid Section */
.news-cards-section {
    background-color: var(--Base-White);
    padding: 80px 40px;
}

.news-cards-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-image-placeholder {
    height: 300px;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-category {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--OnBackground-Primary);
    text-transform: uppercase;
    position: relative;
    padding-right: 15px;
    padding-top: 5px;
}

.card-category::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--OnBackground-Primary);
    transform: translateY(-50%);
}

.card-date {
    font-size: 0.8rem;
    color: var(--OnBackground-Primary);
    font-weight: 500;
}

.news-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Pagination Section */
.pagination-section {
    background-color: #fff;
    padding: 20px 40px 80px;
}

.pagination-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.page-link {
    display: block;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.page-link.active-page {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-link:hover:not(.active-page) {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-link.disabled {
    border: none;
    cursor: default;
    background-color: transparent;
    color: var(--primary-color);
}

.next-page {
    border: none;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0;
}

.next-page .arrow {
    margin-left: 5px;
}

/* News Details Page Styles */
.news-details-section {
    background-color: #fff;
    padding: 100px 40px; /* Adjusting padding for header */
}

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

.image-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    height: 600px;
    background-color: #eee;

}

.news-image-slide {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.slider-nav-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 700px;
}

.slide-counter {
    color: var(--Gray-500);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    text-transform: uppercase;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.slider-arrows button {
    color: var(--Gray-500);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    display: contents;
}

/* NEW: Social Share Links container */
.social-share-links {
    position: fixed; /* يجعل العنصر ثابتاً في الشاشة */
    top: 50%; /* يضعه في منتصف الشاشة عمودياً */
    right: 40px; /* يضعه على اليمين بمسافة */
    transform: translateY(-50%); /* يزحزحه للأعلى ليكون في المنتصف تماماً */
    z-index: 100; /* لضمان ظهوره فوق جميع العناصر */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-share-links .share-text {
    margin: 0;
    color: var(--OnBackground-Primary);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: var(--primary-font);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 147.059% */
    text-decoration-line: overline;
    text-decoration-color: var(--Blue-80);
    text-underline-offset: -10px;
}

.social-share-links a {
    background-color: #fff;
    border: 1px solid #ddd;
    color: var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-article-body {
    font-family: var(--primary-font);
    max-width: 70%;
    margin: 0 auto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    color: var(--OnBackground-Primary);
    line-height: 1.8;
}

.article-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

/* More Updates Section */
.more-updates-section {
    padding: 80px 40px;
    background-color: var(--Base-White);
}

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

.more-updates-header {
    margin-bottom: 50px;
}

.updates-small-title {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-decoration-line: underline;
    text-decoration-color: var(--Gray-600);
    text-underline-offset: 10px;
}

.updates-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Partnerships Section */
.partnerships-section {
    background-color: #fff;
    padding: 30px 40px;
}

.partnerships-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partnerships-tabs-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 50px;
}

.partnerships-tabs-list .tab-link {
    color: #999;
    font-weight: 500;
    font-size: 1rem;
    padding-bottom: 25px;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.partnerships-tabs-list .tab-link.active-tab {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: -1px;
}

.tabs-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active-content {
    display: block;
}

.partnerships-container .section-title {
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 133.333% */
    margin-bottom: 30px;
}

.partnerships-container .subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.partnerships-container .subsidiary-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
}

.partnerships-container .subsidiary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partnerships-container .subsidiary-card .card-image-placeholder {
    height: 80px;
    background-color: #fff;
    width: 200px;
    vertical-align: middle;
    display: inline-block;
    border-bottom: none;
}

.partnerships-container .subsidiary-card .card-body {
    padding: 20px;
    text-align: center;
}

.partnerships-container .subsidiary-card .card-category {
    color: var(--Blue-60);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 24px;
    background: rgba(233, 233, 234, 0.50);
    display: inline-flex;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.partnerships-container .subsidiary-card .card-category::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--Base-White);
  transform: translateY(-50%);
}

.partnerships-container .subsidiary-card .card-description {
    color: var(--Gray-700);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.partnerships-section-description {
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .partnerships-container .subsidiaries-grid {
        grid-template-columns: 1fr;
    }
}
/* Portfolio Page Section */
.portfolio-page-section {
    background-color: var(--Base-White);
    padding: 40px 40px;
}

.portfolio-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 0px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-links-nav {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.filter-links-nav a {
    color: var(--Blue-80);
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding-bottom: 20px;
    text-decoration: none;
    line-height: 24px; /* 171.429% */
    padding: 10px;
}

.filter-links-nav a.active-filter {
    color: var(--Blue-80);
    border-radius: 24px;
    background: #E2E6EB;
    padding: 10px;
}

.show-projects-map-btn {
    background: var(--Grey-20);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 24px;
    color: var(--Blue-60);
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 213.333% */
    letter-spacing: 1px;

}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 30px;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
}

.portfolio-page-section .card-image-placeholder {
    height: 300px;
    background-color: var(--Gray-50);
    position: relative; /* لتحديد موضع الـ tags داخله */
    overflow: hidden;
    border-bottom: none;
}
.portfolio-page-section .card-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: fill;   /* يجعل الصورة تغطي المساحة دون تشويه */
  object-position: center; /* يحدد نقطة التركيز */
  display: block; /* لإزالة أي مسافات إضافية */
}
.card-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.overlay-category,
.overlay-status {
    background-color: var(--Grey-20);
    color: var(--Gray-700);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 5px;
    font-family: var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.card-text {
    padding: 20px;
}

.project-name {
    margin-bottom: 5px;
    color: var(--Gray-700);
    /* Heading/H5 */
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
}

.project-location {
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}
.azhar-portfolio-tabs {
    position: relative;
}
.azhar-portfolio-tabs .portfolio-tabs-panels {
    width: 100%;
}
.azhar-portfolio-tabs .portfolio-tabs-panels.hidden {
    display: none;
}
.azhar-portfolio-tabs .portfolio-tab-panel {
    display: none;
}
.azhar-portfolio-tabs .portfolio-tab-panel.is-active {
    display: block;
}
.azhar-portfolio-tabs .portfolio-tab-panel .projects-grid {
    margin-bottom: 0;
}
.azhar-portfolio-tabs .project-card {
    height: 100%;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .large-card {
        grid-column: span 1;
    }
}
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .show-projects-map-btn {
        margin-top: 20px;
    }
}

/* Portfolio Map Section */
.portfolio-map-section {
    background-color: #f8f8f8;
    padding: 80px 40px;
}
.portfolio-map-section.hidden {
    display: none;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.projects-map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-popup-card {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    display: flex;
    flex-direction: column;
}

.popup-category {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 5px;
}

.popup-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.popup-location {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.popup-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.popup-link {
    display: flex;
    justify-content: flex-end;
    color: var(--primary-color);
}
.popup-link .popup-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Project Details Hero Section */
.project-details-hero-section {
    background-color: #f8f8f8;
}

.project-details-container {
    margin-top: 120px;
}

.project-hero-top {
    position: relative;
    margin-bottom: 20px;
}

.project-details-hero-section .hero-image-placeholder {
    background-color: var(--Gray-50);
    height: 500px;
}

.hero-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--primary-color);
}

.breadcrumbs {
    margin-bottom: 5px;
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.project-title {
    margin-bottom: 5px;
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    text-transform: uppercase;
}

.project-location {
    position: relative;
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 146.667% */
}

.project-details-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

.detail-item {
    flex: 1;
    padding: 20px 30px;
    border-right: 1px solid #ddd;
    text-align: left;
}

.detail-item:last-child {
    border-right: none;
}

.detail-label {
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.detail-value {
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 146.667% */
}

@media (max-width: 768px) {
    .project-details-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .detail-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .detail-item:last-child {
        border-bottom: none;
    }
}
/* Project Description Section */
.project-description-section {
    background-color: #fff;
    padding: 80px 40px;
}

.description-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.description-left {
    flex: 1;
    text-align: left;
}

.description-left .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.description-left .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.description-right {
    flex: 1.5;
}

.description-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.video-placeholder {
    position: relative;
    height: 400px;
    background-color: #f0f4f7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--primary-color);
}

@media (max-width: 768px) {
    .description-container {
        flex-direction: column;
    }
}
/* Photo Gallery Section */
.photo-gallery-section {
    background: var(--Gray-50);
    padding: 50px 40px;
}

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

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-label {
    color: var(--Gray-600);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration-line: underline;
    text-decoration-color: var(--Blue-80);
    text-underline-offset: 10px;
}

.photo-slider {
    position: relative;
}

.slider-image-placeholder {
    background-color: var(--Base-White);
    height: 500px;
    border-radius: 10px;
}

.slider-controls-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.slide-counter {
    font-size: 1.5rem;
    font-weight: 700;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.gallery-arrow {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Project Accomplishments Section */
.project-accomplishments-section {
    background-color: #fff;
    padding: 80px 40px;
}

.accomplishments-container {
    max-width: 1400px;
    margin: 0 auto;
}

.accomplishments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.grid-item {
    padding: 20px;
}

.image-item .image-placeholder {
    background-color: #f0f4f7;
    height: 400px;
    border-radius: 10px;
}

.text-item .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.accomplishments-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.accomplishments-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .accomplishments-grid {
        grid-template-columns: 1fr;
    }
}

/* Relevant Projects Section */
.relevant-projects-section {
    background-color: #fff;
    padding: 80px 40px;
}

.relevant-projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.relevant-projects-header {
    text-align: left;
    margin-bottom: 50px;
}

.relevant-projects-header .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-decoration-line: underline;
    text-decoration-color: var(--Blue-20);
    text-underline-offset: 10px;
}

.relevant-projects-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.relevant-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .relevant-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Sectors Hero Section */
.sectors-hero-section {
    background-color: #f0f4f7;
}

.sectors-hero-container {
    margin-top: 120px;
}

.hero-top-content {
    padding: 80px 40px;
}

.hero-title {
    margin-bottom: 20px;
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    text-transform: uppercase;
}

.hero-description {
    max-width: 800px;
    color: var(--Gray-700);
    /* Text L/Regular */
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.hero-metrics-bar {
    background: var(--Gray-200);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hero-metrics-bar .metric-item {
    text-align: center;
    color: var(--text-light);
}

.hero-metrics-bar .metric-number {
    margin-bottom: 5px;
    color: var(--Gray-900);
    text-align: center;
    font-family: var(--primary-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px; /* 120% */
}

.hero-metrics-bar .metric-text {
    color: var(--Gray-700);
    text-align: center;
    /* Text XL/Regular */
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

@media (max-width: 768px) {
    .hero-metrics-bar {
        flex-direction: column;
        align-items: center;
    }
    .hero-metrics-bar .metric-item {
        text-align: center;
    }
}
/* Sectors Card Grid Section */
.sectors-cards-grid-section {
    background-color: #fff;
    padding: 80px 40px;
}

.sectors-cards-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sector-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.card-image-placeholder {
    background-color: var(--Gray-50);
    height: 200px;
}

.card-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.card-text .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--Gray-700);
    margin-bottom: 10px;
}

.card-text .card-description {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-arrow-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--Grey-20);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.card-arrow-link:hover {
    background-color: var(--accent-color);
}

/* Sector Details Hero Section */
.sector-details-hero-section {
    background: var(--Gray-50);
    padding: 80px 40px;
    margin-top: 120px;
}

.sector-details-hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sector-details-hero-title {
    margin-bottom: 10px;
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px; /* 125% */
    text-transform: uppercase;
}

.breadcrumbs {
    margin-bottom: 5px;
    color: var(--Gray-700);
    font-family: var(--primary-font);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Sector Overview Section */
.sector-overview-section {
    background-color: #fff;
    padding: 80px 40px;
}

.sector-overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.overview-left {
    flex: 1;
    display: block;
}

.overview-left .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    /* NEW: Adjusted margin to reduce space */
    margin-bottom: 25px; 
    text-decoration-line: underline;
    text-decoration-color: var(--Blue-20);
    text-underline-offset: 10px;
}

.overview-left .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    /* NEW: Removed top margin to reduce space */
    margin-top: 0; 
}

.overview-right {
    flex: 1.5;
}

.overview-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.video-placeholder {
    position: relative;
    height: 400px;
    background-color: #f0f4f7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--primary-color);
}

@media (max-width: 768px) {
    .sector-overview-container {
        flex-direction: column;
    }
}
/* Sustainability Report Section */
.sustainability-report-section {
    background: rgba(226, 230, 235, 0.70);
    padding: 80px 40px;
}

.report-container {
    max-width: 1400px;
    margin: 0 auto;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.report-image-col .image-placeholder {
    height: 100%;
    background-color: #ddd;
    border-radius: 10px;
}

.report-text-col {
    text-align: left;
}

.report-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.report-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.report-button-col {
    text-align: right;
}

.view-report-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--Base-CTA);
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--Base-CTA, #1A57F5);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-report-btn:hover {
    background-color: var(--Base-CTA);
    color: #fff;
}

.view-report-btn .arrow-icon {
    margin-left: 10px;
}

.arrow-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
    .report-button-col {
        text-align: left;
    }
}
/* ESG Strategy Section */
.esg-strategy-section {
    background-color: #fff;
    padding: 80px 40px;
}

.esg-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.esg-left {
    flex: 1;
}

.esg-left .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

.esg-left .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.esg-right {
    flex: 1.5;
}

.esg-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .esg-container {
        flex-direction: column;
    }
}
/* Sustainability Approach Section */
.sustainability-approach-section {
    background-color: #f0f4f7;
    padding: 80px 40px;
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.approach-left {
    flex: 1;
}

.approach-left .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid #ddd;
}

.approach-quote {
    margin: 0 0 30px 0;
    color: var(--Gray-900);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.approach-quote p {
    margin-bottom: 15px;
}

.author-details {
    margin-top: 20px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-position {
    font-size: 1rem;
    color: #555;
}

.approach-right {
    flex: 1;
}

.approach-right .image-placeholder {
    height: 400px;
    background-color: var(--Gray-50);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .approach-container {
        flex-direction: column;
    }
}

/* Policies Section */
.policies-section {
    background-color: #fff;
    padding: 80px 40px;
}

.policies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.policies-header {
    text-align: left;
    margin-bottom: 50px;
}

.policies-header .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-decoration-line: underline;
    text-decoration-color: var(--Blue-20);
    text-underline-offset: 10px;
}

.policies-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.policy-card {
    overflow: hidden;
}

.policy-card .card-image-placeholder {
    height: 250px;
    background-color: var(--Gray-50);
}

.policy-card .card-text {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: left;
}

.policy-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.policy-card .card-arrow-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-card .card-arrow-link:hover {
    color: var(--accent-color);
}
/* Initiatives Section */
.initiatives-section {
    background-color: var(--Base-White);
    padding: 80px 40px;
}

.initiatives-container {
    max-width: 1400px;
    margin: 0 auto;
}

.initiatives-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text {
    flex-grow: 1;
}

.initiatives-header .section-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 1px solid #ddd;
}

.initiatives-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.initiative-arrow {
    background-color: transparent;
    border: none;
    border-radius: 0%;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.initiative-arrow:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.initiatives-slider-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cards-row {
    display: flex;
    gap: 20px;
}

.initiative-card {
    flex-shrink: 0;
    width: 350px;
    background-color: #fff;
    overflow: hidden;
}

.initiative-card .card-category {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--Gray-700);
    text-transform: uppercase;
    padding: 20px;
}

.initiative-card .card-category::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: transparent;
    transform: translateY(-50%);
}

.initiative-card .image-placeholder {
    height: 250px;
    background-color: var(--Gray-50);
    border-radius: 0px;
}

.initiative-card .card-text {
    padding: 5px;
}

.card-text .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-text .card-description {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}

/* ==========================================================
   MOBILE LAYOUT FIXES (FULL VERSION)
   Applies ONLY to screens below 992px
========================================================== */
@media (max-width: 992px) {

    /* =================== HEADER =================== */

    /* هيدر ثابت + شفاف فوق السلايدر */
    .main-header {
        padding: 10px 20px !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        z-index: 100000 !important;
    }

    /* إزالة الفراغ بين الهيدر والسلايدر */
    body {
        padding-top: 0 !important;
    }

    /* تنسيق عناصر الهيدر */
    .header-top {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        text-align: left;
    }

    .logo img {
        height: 40px !important;
        width: auto !important;
    }

    /* إخفاء عناصر الديسكتوب */
    .contact-links,
    .navbar-bottom,
    .nav-links {
        display: none !important;
    }

    /* زر المينيو */
    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        border: 1px solid #ffffff;
        border-radius: 6px;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        cursor: pointer;
        background: rgba(255,255,255,0.08);
        position: relative;
        z-index: 100001 !important;
    }

    .mobile-menu-btn span,
    .mobile-menu-btn span::before,
    .mobile-menu-btn span::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 10px;
        position: relative;
    }

    .mobile-menu-btn span::before {
        position: absolute;
        top: -6px;
    }

    .mobile-menu-btn span::after {
        position: absolute;
        top: 6px;
    }

    /* =================== MOBILE MENU (.active ONLY) =================== */

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%; /* مخفية */
        width: 75%;
        max-width: 320px;
        height: auto !important;
        min-height: 100vh !important;
        background: #041736;
        padding: 70px 25px;
        z-index: 100000;
        overflow-y: visible !important;
        transition: right 0.3s ease-in-out;
    }

    /* تظهر عند الضغط */
    .mobile-menu.active {
        right: 0;
    }

    /* روابط المنيو */
    .mobile-menu a,
    .mobile-menu .mobile-link {
        display: block;
        color: #ffffff;
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        text-decoration: none;
    }

    /* =================== HERO / SLIDER =================== */

    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .hero-section::before {
        width: 100%;
        background: linear-gradient(
            to bottom,
            rgba(0, 51, 102, 0.9),
            rgba(0, 51, 102, 0.2)
        );
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 20px;
    }

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

    .hero-section .hero-title,
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-section .hero-description,
    .hero-description {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .slider-nav-arrows {
        left: 20px;
        bottom: 20px;
        gap: 6px;
    }

    .slider-dots {
        bottom: 15px;
        transform: translateX(-50%);
    }

    .slider-image {
        animation: none !important;
        transform: scale(1) !important;
    }

    /* =================== FOOTER =================== */

    .main-footer {
        padding: 40px 20px 20px !important;
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* =================== GRID FIXES =================== */
    .about-hero-section {
        padding: 0px 40px;
    }
    .about-hero-container {
        padding-top: 40px;
    }
    .sectors-cards-row,
    .portfolio-cards-row,
    .projects-grid,
    .news-cards-grid,
    .accomplishments-grid {
        display: block;
        overflow-x: visible;
    }

    .sector-card,
    .dark-card,
    .featured-card,
    .news-card,
    .project-card,
    .initiative-card,
    .subsidiary-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* =================== PERFORMANCE =================== */

    .large-news-card,
    .portfolio-card,
    .news-card,
    .subsidiary-card,
    .business-card,
    .culture-card {
        box-shadow: none !important;
    }

    .sustainability-section,
    .geography-section {
        background-attachment: scroll !important;
    }
}

/* ==========================================================
   DESKTOP FIX — HIDE MOBILE MENU + BUTTON
   Applies only to screens ABOVE 992px
========================================================== */
@media (min-width: 993px) {
    .mobile-menu,
    .mobile-menu-btn {
        display: none !important;
    }
}

