:root {
    --primary: #0f7b4d;
    --primary-dark: #0b5b39;
    --accent: #d4b06a;
    --dark: #18222d;
    --text: #222;
    --muted: #6b7280;
    --white: #fff;
    --light: #f7f8fa;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

html[dir="ltr"] body {
    font-family: 'Inter', 'Cairo', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.top-bar {
    background: #0b4630;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.top-bar i {
    color: var(--accent);
    margin-inline-end: 6px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.custom-navbar {
    background: rgba(15, 123, 77, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
}

.brand-text {
    color: var(--white) !important;
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #e6c989);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
}

.custom-nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    margin-inline: 8px;
    transition: 0.3s ease;
}

.custom-nav-link:hover {
    color: var(--accent) !important;
}

.language-select {
    min-width: 125px;
    border-radius: 10px;
    border: none;
    padding: 8px 12px;
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 123, 77, 0.95), rgba(11, 91, 57, 0.92)),
        url("/static/images/hero.png") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(212, 176, 106, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 25%);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 10;
    /* color: #fff; */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 22px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero-description {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-btn-primary,
.hero-btn-secondary,
.cta-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.hero-btn-primary:hover {
    background: #e0bc76;
    color: var(--dark);
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-mini-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 18px;
    border-radius: 14px;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.mini-stat strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.mini-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-image-card img {
    border-radius: 18px;
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.trust-strip {
    margin-top: -50px;
    position: relative;
    z-index: 5;
    padding-bottom: 40px;
}

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

.trust-box {
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.gradient-card-1 {
    background: linear-gradient(135deg, #0f7b4d, #16895a);
}

.gradient-card-2 {
    background: linear-gradient(135deg, #0e5f86, #1785b6);
}

.gradient-card-3 {
    background: linear-gradient(135deg, #9a6b12, #d4a13f);
}

.gradient-card-4 {
    background: linear-gradient(135deg, #4d5c9b, #7887cf);
}

.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.trust-box h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.about-section,
.services-section,
.sectors-section,
.cta-section {
    padding: 90px 0;
}

.about-section {
    background: var(--light);
}

.section-head {
    max-width: 820px;
    margin: 0 auto 45px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(15, 123, 77, 0.08);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.light-badge {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
}

.section-description {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-highlight-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.12), rgba(212, 176, 106, 0.18));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.about-highlight-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-highlight-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.service-card {
    border-radius: var(--radius-md);
    padding: 30px 24px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-service-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 123, 77, 0.06);
    position: relative;
    overflow: hidden;
}

.premium-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 123, 77, 0.1);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 18px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.18));
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.sector-banner {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    border-radius: 28px;
    padding: 48px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.sector-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.sector-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 760px;
}

.cta-section {
    background: var(--light);
}

.cta-card {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: var(--white);
    padding: 60px 30px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 24px;
}

.cta-btn {
    background: var(--accent);
    color: var(--dark);
}

.cta-btn:hover {
    background: #e0bc76;
    color: var(--dark);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 42px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

.footer-brand {
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-text,
.footer-links a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.78);
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    text-align: center;
}

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

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

@media (max-width: 767px) {

    .top-bar-inner,
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-wrapper {
        padding: 50px 0;
    }

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

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

    .hero-image-card img {
        height: 280px;
    }

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

    .section-title,
    .sector-banner h2,
    .cta-card h2 {
        font-size: 1.7rem;
    }

    .sector-banner,
    .cta-card {
        padding: 32px 22px;
    }

    .about-highlight-card {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* Premium Section */
.premium-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
    position: relative;
}

.premium-title {
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* Premium Cards */
.premium-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.08), transparent);
    opacity: 0;
    transition: 0.3s;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* Icon */
.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f7b4d, #1fa56a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

/* Title */
.premium-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Text */
.premium-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Bottom line */
.card-line {
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f7b4d, #d4b06a);
    transform: scaleX(0);
    transition: 0.3s;
}

.premium-card:hover .card-line {
    transform: scaleX(1);
}

/* Hero subtle motion */
.hero-float {
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-image-float {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Counter section */
.counter-section {
    padding: 30px 0 10px;
    position: relative;
    z-index: 6;
}

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

.counter-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 123, 77, 0.06);
}

.counter-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.18));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.counter-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.counter-card p {
    color: var(--muted);
    margin-bottom: 0;
}

/* Scroll reveal */
/* العناصر تكون ظاهرة افتراضيًا */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 1;
    transform: none;
}

/* فقط إذا الـ JS اشتغل، نفعّل وضع الإخفاء المبدئي ثم نظهرها بالحركة */
body.js-enabled .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

body.js-enabled .reveal-left {
    transform: translateX(-45px);
}

body.js-enabled .reveal-right {
    transform: translateX(45px);
}

body.js-enabled .reveal-up {
    transform: translateY(45px);
}

body.js-enabled .reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.custom-nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    margin-inline: 8px;
    transition: 0.3s ease;
    position: relative;
}

.custom-nav-link:hover,
.custom-nav-link.active-link {
    color: #d4b06a !important;
}

.custom-nav-link.active-link::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #d4b06a;
    border-radius: 999px;
}

html {
    scroll-behavior: smooth;
}


/*---------------- newas section ----------------*/
.company-page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.10));
}

.company-page-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.company-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 123, 77, 0.08);
    color: #0f7b4d;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
}

.company-page-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #18222d;
}

.company-page-hero__text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.9;
}

.company-section {
    padding: 60px 0 90px;
}

.company-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.company-news-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.company-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.company-news-card__image-wrap {
    position: relative;
    overflow: hidden;
}

.company-news-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.company-news-card__image--placeholder {
    background: linear-gradient(135deg, #eef6f1, #f8f5ed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f7b4d;
    font-size: 2rem;
}

.company-news-card__body {
    padding: 24px;
}

.company-news-card__meta {
    margin-bottom: 14px;
}

.company-news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.92rem;
    font-weight: 600;
}

.company-news-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.6;
    color: #18222d;
    margin-bottom: 12px;
}

.company-news-card__excerpt {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 18px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.company-btn--primary {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
}

.company-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.company-empty-state {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    text-align: center;
    padding: 60px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.company-empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.18));
    color: #0f7b4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.company-empty-state__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #18222d;
}

.company-empty-state__text {
    color: #64748b;
    margin-bottom: 0;
}

.company-pagination-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.company-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.company-page-link {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #18222d;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.company-page-link--active {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
    border-color: transparent;
}

.company-page-link--disabled {
    opacity: 0.45;
    pointer-events: none;
}

@media (max-width: 991px) {
    .company-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-page-hero__title {
        font-size: 2.2rem;
    }
}

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

    .company-page-hero__title {
        font-size: 1.8rem;
    }
}

/*---------------- end of newas section ----------------*/
/*---------------- start  Faqs  section ----------------*/

company-page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.10));
}

.company-page-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.company-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 123, 77, 0.08);
    color: #0f7b4d;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
}

.company-page-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #18222d;
}

.company-page-hero__text {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.9;
}

.company-section {
    padding: 60px 0 90px;
}

.company-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.company-faq-item {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.company-faq-item__button {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
    text-align: right;
    cursor: pointer;
}

.company-faq-item__question {
    font-size: 1.1rem;
    font-weight: 800;
    color: #18222d;
    line-height: 1.8;
}

.company-faq-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.18));
    color: #0f7b4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.25s ease;
}

.company-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.company-faq-item__answer-inner {
    padding: 0 26px 24px;
    color: #64748b;
    line-height: 1.95;
}

.company-faq-item.is-open .company-faq-item__icon {
    transform: rotate(45deg);
}

.company-empty-state {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    text-align: center;
    padding: 60px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.company-empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.18));
    color: #0f7b4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.company-empty-state__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #18222d;
}

.company-empty-state__text {
    color: #64748b;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .company-page-hero__title {
        font-size: 1.8rem;
    }

    .company-faq-item__button {
        padding: 20px 18px;
    }

    .company-faq-item__answer-inner {
        padding: 0 18px 20px;
    }
}

/*---------------- end of Faqs  section ----------------*/
/*---------------- start news details  section ----------------*/
.company-page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, rgba(15, 123, 77, 0.10), rgba(212, 176, 106, 0.10));
}

.company-page-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.company-page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 123, 77, 0.08);
    color: #0f7b4d;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 18px;
}

.company-page-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #18222d;
    line-height: 1.5;
}

.company-page-hero__text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.9;
}

.company-section {
    padding: 60px 0 90px;
}

.company-article-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    max-width: 950px;
    margin: 0 auto;
}

.company-article-card__image-wrap {
    overflow: hidden;
}

.company-article-card__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.company-article-card__body {
    padding: 32px;
}

.company-article-card__content {
    color: #475569;
    line-height: 2;
    font-size: 1.05rem;
}

.company-article-card__actions {
    margin-top: 28px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.company-btn--primary {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
}

.company-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .company-page-hero__title {
        font-size: 1.8rem;
    }

    .company-article-card__image {
        height: 240px;
    }

    .company-article-card__body {
        padding: 20px;
    }
}

/*---------------- end of news details  section ----------------*/

.language-form {
    margin: 0;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.language-switcher__btn {
    border: none;
    background: transparent;
    color: #18222d;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 9px 16px;
    border-radius: 999px;
    transition: 0.25s ease;
    cursor: pointer;
    line-height: 1;
}

.language-switcher__btn:hover {
    background: rgba(15, 123, 77, 0.08);
    color: #0f7b4d;
}

.language-switcher__btn.is-active {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 123, 77, 0.22);
}

.language-form {
    margin: 0;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.language-switcher__btn {
    border: none;
    background: transparent;
    color: #18222d;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 9px 16px;
    border-radius: 999px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.language-switcher__btn:hover {
    background: rgba(15, 123, 77, 0.08);
    color: #0f7b4d;
}

.language-switcher__btn.is-active {
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 123, 77, 0.22);
}

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

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.brand-logo-text {
    font-size: -3.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.03);
    transition: 0.25s ease;
}

.brand-logo:hover .brand-logo-text {
    color: #f3d27a;
    transition: 0.25s ease;
}


.main-navbar {
    background: #338f5d;
    padding: 18px 0;
}

.navbar-shell {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.brand-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}

.navbar-collapse {
    align-items: center;
}

/* روابط النافبار */
.main-navbar__links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 0;
}

.main-navbar__links .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 8px 10px;
    transition: 0.25s ease;
    white-space: nowrap;
}

.main-navbar__links .nav-link:hover {
    color: #f3d27a;
}

/* زر اللغة */
.main-navbar__lang {
    flex-shrink: 0;
}

.language-form {
    margin: 0;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.language-switcher__btn {
    border: none;
    background: transparent;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 999px;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}

.language-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.language-switcher__btn.is-active {
    background: #0d6b3c;
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 123, 77, 0.22);
}

/* =========================
   LTR / RTL توزيع محترم
========================= */

/* عربي */
html[dir="rtl"] .navbar-collapse {
    justify-content: space-between;
}

html[dir="rtl"] .main-navbar__links {
    margin-right: auto;
    margin-left: 24px;
}

html[dir="rtl"] .main-navbar__lang {
    margin-left: 0;
}

/* إنجليزي */
html[dir="ltr"] .navbar-collapse {
    justify-content: space-between;
}

html[dir="ltr"] .main-navbar__links {
    margin-left: auto;
    margin-right: 24px;
}

html[dir="ltr"] .brand-logo {
    margin-right: 24px;
}

/* موبايل */
@media (max-width: 991px) {
    .brand-logo-text {
        font-size: 1.35rem;
    }

    .brand-logo-img {
        width: 54px;
        height: 54px;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .main-navbar__links {
        gap: 6px;
    }

    html[dir="rtl"] .main-navbar__links,
    html[dir="ltr"] .main-navbar__links {
        margin: 0 0 16px 0;
    }

    .main-navbar__lang {
        width: 100%;
    }

    .language-switcher {
        width: fit-content;
    }

    html[dir="rtl"] .main-navbar__lang {
        display: flex;
        justify-content: flex-start;
    }

    html[dir="ltr"] .main-navbar__lang {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .container {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .hero-wrapper,
    .hero-content,
    .company-page-hero__content,
    .section-head,
    .cta-card,
    .about-highlight-card,
    .counter-grid,
    .sector-banner {
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .hero-section,
    .company-page-hero,
    .about-section,
    .services-section,
    .sectors-section,
    .cta-section,
    .company-section,
    .counter-section {
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    .hero-wrapper {
        padding-inline: 0 !important;
    }

    .hero-content {
        padding-inline: 0 !important;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 767px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .sector-banner,
    .cta-card,
    .about-highlight-card,
    .contact-card,
    .contact-info-card,
    .company-article-card,
    .company-news-card,
    .company-faq-item,
    .counter-card,
    .service-card {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .sectors-section .container,
    .cta-section .container,
    .about-section .container,
    .company-section .container,
    .counter-section .container,
    .services-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .sector-banner,
    .cta-card {
        padding: 22px 18px !important;
        border-radius: 22px;
    }

    .sector-banner h2,
    .cta-card h2 {
        font-size: 1.45rem !important;
        line-height: 1.4;
    }

    .sector-banner p,
    .cta-card p {
        font-size: 0.95rem !important;
        line-height: 1.8;
    }
}

@media (max-width: 767px) {
    .sector-banner {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {

    /* مسافة عامة للسكاشن */
    .about-section,
    .services-section,
    .sectors-section,
    .cta-section,
    .company-section,
    .counter-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    /* عنوان ووصف السكشن */
    .section-head {
        margin-bottom: 20px !important;
    }

    .section-title {
        font-size: 1.7rem !important;
        line-height: 1.35 !important;
    }

    .section-description {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
    }

    /* كارد من نحن */
    .about-highlight-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        border-radius: 18px !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .about-highlight-icon {
        width: 56px !important;
        height: 56px !important;
        border-radius: 14px !important;
        flex-shrink: 0;
    }

    .about-highlight-card h3 {
        font-size: 1.2rem !important;
        line-height: 1.45 !important;
        margin-bottom: 8px !important;
    }

    .about-highlight-card p {
        font-size: 0.92rem !important;
        line-height: 1.8 !important;
        margin-bottom: 0 !important;
    }

    /* الكروت عامة */
    .counter-card,
    .service-card,
    .company-news-card,
    .contact-card,
    .contact-info-card,
    .company-faq-item,
    .company-article-card,
    .sector-banner,
    .cta-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-inline: 0 !important;
        box-sizing: border-box;
    }

    /* بانر القطاعات و CTA */
    .sector-banner,
    .cta-card {
        padding: 20px 18px !important;
        border-radius: 20px !important;
    }

    .sector-banner h2,
    .cta-card h2 {
        font-size: 1.35rem !important;
        line-height: 1.45 !important;
    }

    .sector-banner p,
    .cta-card p {
        font-size: 0.92rem !important;
        line-height: 1.8 !important;
    }

    /* زر الرجوع للأعلى */
    .back-to-top {
        width: 46px !important;
        height: 46px !important;
        bottom: 16px !important;
        right: 16px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 767px) {
    .about-highlight-card>div:last-child {
        width: 100%;
    }
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.mini-stat {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 14px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.mini-stat strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}

.mini-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* موبايل */
@media (max-width: 767px) {
    .hero-mini-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 16px !important;
    }

    .mini-stat {
        padding: 12px 10px !important;
        border-radius: 14px !important;
    }

    .mini-stat strong {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    .mini-stat span {
        font-size: 0.74rem !important;
        line-height: 1.5 !important;
    }
}

.dashboard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f7b4d, #0b5b39);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 10px 22px rgba(15, 123, 77, 0.22);
    transition: 0.25s ease;
    white-space: nowrap;
}

.dashboard-link i {
    font-size: 0.95rem;
    line-height: 1;
}

.dashboard-link:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 123, 77, 0.28);
}

html[dir="rtl"] .dashboard-link {
    flex-direction: row;
}