/* ============================================
   Thaleen Development - Homepage Styles
   Pixel-Perfect from Figma Design
   ============================================ */

/* ===== CSS Custom Properties ===== */
:root {
    /* Colors - Exact from Figma */
    --color-primary-blue: #013368;
    /*    --color-primary-blue: #003d7a;*/
    --color-accent-blue: #155dfc;
    --color-green: #028002;
    --color-text-dark: #101828;
    --color-text-body: #4a5565;
    --color-text-muted: #64748b;
    --color-text-light: #cbd5e1;
    --color-white: #FFFFFF;
    --color-bg-main: #f9fafb;
    --color-bg-section: #f3f4f6;
    --color-border: #e5e7eb;
    --color-footer-bg: #1e293b;
    /* Typography - Quicksand Font */
    --font-primary: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* Font Sizes */
    --fs-hero: 48px;
    --fs-section-title: 48px;
    --fs-h3: 20px;
    --fs-h4: 18px;
    --fs-body: 20px;
    --fs-base: 16px;
    /* Spacing */
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-96: 96px;
    /* Border Radius */
    --radius-12: 12px;
    --radius-16: 16px;
    /* Shadows */
    --shadow-card: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}

/* ===== RTL Support ===== */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}


    html[dir="rtl"] *,
    html[dir="rtl"] *::before,
    html[dir="rtl"] *::after {
        direction: rtl;
    }

    html[dir="rtl"] a,
    html[dir="rtl"] button {
        direction: rtl;
    }

    /* RTL Flexbox - swap direction */


    html[dir="rtl"] .gap-2 {
        gap: var(--space-16);
    }

    /* RTL Margin/Padding Swap */
    html[dir="rtl"] .ms-auto {
        margin-left: auto;
        margin-right: 0;
    }

    html[dir="rtl"] .me-auto {
        margin-right: auto;
        margin-left: 0;
    }

    /* RTL Text Alignment */
    html[dir="rtl"] .text-start {
        text-align: right;
    }

    html[dir="rtl"] .text-end {
        text-align: left;
    }

    /* RTL Navbar Adjustments */
    html[dir="rtl"] .navbar-logo {
        margin-right: auto;
        margin-left: 0;
    }

    html[dir="rtl"] .navbar-brand {
        flex-direction: row-reverse;
    }

    html[dir="rtl"] .dropdown-item-custom {
        text-align: right;
    }

    /* RTL Container Adjustments */
    html[dir="rtl"] .container {
        text-align: right;
    }

    html[dir="rtl"] .hero-content {
        text-align: right;
    }

    html[dir="rtl"] .section-content {
        text-align: right;
    }

    html[dir="rtl"] i.bi.bi-arrow-right {
        transform: rotate(180deg);
    }

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-bg-main);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* ===== Navbar ===== */
.navbar-thaleen {
    background-color: var(--color-white);
    border-bottom: 0.8px solid var(--color-border);
    padding: var(--space-16) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    transition: opacity 0.2s ease;
    padding-block: 0;
}

    .navbar-brand:hover {
        opacity: 0.85;
    }

.navbar-logo {
    height: 60px;
    width: auto;
}

.navbar-logo-fallback {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-green) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-body);
    line-height: 1;
}

.navbar-nav {
    gap: var(--space-20);
}

    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #364153;
        padding: 0;
        position: relative;
        transition: color 0.2s ease;
    }

        .navbar-nav .nav-link:hover {
            color: var(--color-green);
            font-weight: 700;
        }

        .navbar-nav .nav-link.active {
            color: var(--color-green);
            font-weight: 700;
        }

        .navbar-nav .nav-link.dropdown {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            text-decoration: none;
        }

            .navbar-nav .nav-link.dropdown i {
                font-size: 10px;
                margin-left: 4px;
                transition: transform 0.2s ease;
            }

            .navbar-nav .nav-link.dropdown:hover i {
                transform: translateY(2px);
            }

/* ===== Dropdown Menus ===== */
.dropdown-wrapper {
    position: relative;
}

.dropdown-chevron-btn {
    background: none;
    border: none;
    padding: 8px;
    margin: -8px -8px -8px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 12px;
    padding: 12px 0;
}

html[dir="rtl"] .dropdown-menu-custom {
    right: 0;
}

html[dir="rtl"] .dropdown-item-custom {
    border-right: 3px solid transparent;
}

    html[dir="rtl"] .dropdown-item-custom:hover {
        border-right-color: var(--color-green);
        border-left-color: transparent;
    }

.dropdown-wrapper:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #364153;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

    .dropdown-item-custom:before {
        content: '-';
        color: var(--color-green);
        font-weight: 600;
    }

    .dropdown-item-custom:hover {
        background: #f9fafb;
        color: var(--color-green);
        border-left-color: var(--color-green);
        padding-left: 28px;
    }
/* Hide "All Services" / "All Sectors" on desktop; show only on mobile */
.dropdown-item-all {
    display: none;
}
/* Custom Scrollbar for Dropdown */
.dropdown-menu-custom::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu-custom::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu-custom::-webkit-scrollbar-thumb {
    background: #acacac;
    border-radius: 10px;
}

    .dropdown-menu-custom::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

.btn-search {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #364153;
    transition: all 0.2s ease;
}

    .btn-search:hover {
        color: var(--color-green);
        background: rgba(20, 184, 166, 0.1);
        border-radius: 8px;
    }

.btn-contact-nav {
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px var(--space-24);
    border-radius: 9999px;
    border: none;
    transition: all 0.2s ease, transform 0.2s ease;
}

    .btn-contact-nav.active {
        background-color: var(--color-green);
        color: var(--color-white);
    }

    .btn-contact-nav:hover {
        background-color: #026002;
        color: var(--color-white);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(2, 128, 2, 0.3);
    }
/* ===== Hero/Banner Section ===== */
.hero-section {
    background: var(--color-bg-main);
    padding: var(--space-64) 0;
}

.hero-card {
    background: var(--color-white);
    border-radius: var(--radius-16);
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    /*        height: 550px;*/
}

.hero-content-wrapper {
    padding: 50px 40px 40px 50px;
}

.hero-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

.hero-tag {
    display: inline-block;
    background: var(--color-green);
    padding: 8px var(--space-20);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

.hero-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .hero-link:hover {
        color: var(--color-green);
        gap: 10px;
    }

    .hero-link i {
        transition: transform 0.2s ease;
    }

    .hero-link:hover i {
        transform: translateX(4px);
    }

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: var(--space-24);
    max-width: 440px;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    color: #6b7280;
    margin-bottom: var(--space-32);
    max-width: 440px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px var(--space-32);
    border-radius: var(--radius-16);
    border: none;
    transition: all 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(2, 128, 2, 0.2);
}

    .btn-hero-primary:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 128, 2, 0.3);
        color: var(--color-white);
    }

.hero-nav-btns {
    display: flex;
    gap: var(--space-12);
}

.btn-hero-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #2563eb;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    transition: all 0.2s ease, transform 0.2s ease;
    font-size: 16px;
}

    .btn-hero-nav:hover {
        background: #2563eb;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

.hero-image {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
    max-height: 550px;
}
/* ===== Section Styles ===== */
.section {
    padding: var(--space-96) 0;
}

.section-bg-gray {
    background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-main) 100%);
}

.projects-section {
    background: linear-gradient(180deg, #f5f8fa 0%, #ffffff 100%);
}

    .projects-section .section-tag {
        background: linear-gradient(90deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
        border: none;
        color: var(--color-primary-blue);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

.services-section {
    background: var(--color-white);
}

    .services-section .section-tag {
        background: linear-gradient(90deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
        border: none;
        color: var(--color-primary-blue);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

.sectors-section {
    background: var(--color-white);
}

    .sectors-section .section-tag {
        background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
        border: none;
        color: #2563eb;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

.section-header {
    text-align: center;
    margin-bottom: var(--space-64);
    display: flex;
    flex-direction: column;
    align-items: center;
}


    .section-header .section-tag {
        display: block;
        margin-bottom: var(--space-16);
        width: max-content;
    }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border: 0.8px solid var(--color-border);
    padding: 6px var(--space-20);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-20);
    font-size: 12px;
    font-weight: 700;
}

.section-title {
    font-size: var(--fs-section-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin-bottom: var(--space-20);
}

.section-description {
    font-size: var(--fs-h4);
    font-weight: 400;
    line-height: 1.625;
    color: var(--color-text-body);
    max-width: 750px;
    margin: 0 auto;
}
/* ===== Homepage Featured Projects ===== */
.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
    margin-bottom: var(--space-48);
}

.featured-project-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .featured-project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.featured-project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-project-card:hover .featured-project-image {
    transform: scale(1.05);
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 24px;
    transition: all 0.4s ease;
}

.featured-project-card:hover .featured-project-overlay {
    background: linear-gradient(135deg, rgb(0, 61, 122, 0.8) 0%, rgba(30, 64, 175, 1.95) 100%);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
}

.featured-project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0;
    transition: all 0.4s ease;
    z-index: 2;
    width: 100%;
}

html[dir="rtl"] .featured-project-title {
    font-size: 30px;
}

.featured-project-card:hover .featured-project-title {
    opacity: 0.2;
    font-size: 26px;
    margin-bottom: 12px;
    text-align: center;
    min-height: 68px;
}

.featured-project-hover-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 90%;
    z-index: 3;
    width: 100%;
}

.featured-project-card:hover .featured-project-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.featured-project-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
    text-align: center;
    max-width: 100%;
    opacity: 1;
}

    .featured-project-description p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

p.featured-project-description + p {
    color: #fff;
}

.btn-featured-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 28px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

    .btn-featured-details:hover {
        background: #f8fafc;
        transform: translateY(-2px);
        gap: 12px;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.35);
        color: #1d4ed8;
    }

    .btn-featured-details i {
        transition: transform 0.2s ease;
    }

    .btn-featured-details:hover i {
        transform: translateX(4px);
    }
/* ===== Projects Page Cards (Separate Design) ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.project-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

.project-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

    .project-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.project-card-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    z-index: 2;
}

.project-badge-category {
    padding: 8px 20px;
    background: #22c55e;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.project-badge-status {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.project-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.project-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e293b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.2);
}

    .project-arrow-btn:hover {
        background: #334155;
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
    }

    .project-arrow-btn img {
        width: 18px;
        height: 18px;
        filter: brightness(0) invert(1);
    }

.project-card-description {
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.7;
    margin: 10px 0 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}

    .project-meta-item img {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(48%) sepia(13%) saturate(478%) hue-rotate(181deg) brightness(95%) contrast(92%);
    }

    .project-meta-item i {
        font-size: 18px;
        color: #64748b;
    }

    .project-meta-item span {
        font-weight: 500;
    }

.project-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #14b8a6;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .project-details-link:hover {
        gap: 12px;
        color: #0d9488;
    }

    .project-details-link img {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(66%) sepia(47%) saturate(1426%) hue-rotate(134deg) brightness(91%) contrast(96%);
        transition: all 0.3s ease;
    }

    .project-details-link:hover img {
        transform: translateX(4px);
        filter: brightness(0) saturate(100%) invert(54%) sepia(56%) saturate(1009%) hue-rotate(134deg) brightness(94%) contrast(89%);
    }

    .project-details-link i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .project-details-link:hover i {
        transform: translateX(4px);
    }
/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-24);
    margin-bottom: var(--space-48);
}

.service-card {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: var(--color-green);
        border-radius: 0 0 20px 20px;
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

html[dir="rtl"] .service-card::after {
    left: inherit;
    right: 0;
}

.service-card:hover::after {
    width: 100%;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.service-card:hover .service-card-image {
    filter: grayscale(20%);
}

.service-card-body {
    padding: var(--space-24) var(--space-24) 28px;
    position: relative;
}

.service-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin: 0;
    position: relative;
    display: inline-block;
}
/* ===== Why Choose Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-24);
    border-radius: var(--radius-16);
    border: 0.8px solid var(--color-border);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8px;
}

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

.feature-title {
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.4;
    margin-bottom: var(--space-12);
}

.feature-description {
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--color-text-body);
    line-height: 1.5;
}
/* ===== Business Sectors ===== */
.business-sectors-section {
    background: var(--color-white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

.sector-card {
    background: var(--color-white);
    border: 0.8px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 158px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        background: #003d7a;
        border-radius: 16px 16px 0 0;
        transition: width 0.3s ease;
    }

    .sector-card:hover::before {
        width: 97%;
    }

    .sector-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

.sector-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 0.8px solid #e5e7eb;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
}

.sector-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-icon img {
    transform: scale(1.08);
}

.sector-title {
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-title {
    color: var(--color-green);
}
/* ===== Statistics Section ===== */
.stats-section {
    background: linear-gradient(180deg, var(--color-bg-section) 0%, var(--color-bg-main) 100%);
    padding: var(--space-96) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary-blue);
    margin-bottom: var(--space-8);
}

.stat-label {
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--color-text-muted);
    line-height: 1.5;
}
/* ===== CTA Section ===== */
.cta-section {
    background: #013368;
    padding: var(--space-96) 0;
    text-align: center;
}

.cta-title {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: var(--space-24);
    text-align: center;
}

.cta-description {
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-48);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: var(--space-16);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--color-white);
    color: var(--color-accent-blue);
    font-size: var(--fs-h4);
    font-weight: 600;
    padding: var(--space-16) var(--space-32);
    border-radius: var(--radius-16);
    border: none;
    box-shadow: var(--shadow-card);
}

    .btn-cta-primary:hover {
        background: #f3f4f6;
        color: var(--color-accent-blue);
    }

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: var(--fs-h4);
    font-weight: 600;
    padding: var(--space-16) var(--space-32);
    border-radius: var(--radius-16);
    border: 1.6px solid rgba(255, 255, 255, 0.3);
}

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--color-white);
    }
/* ===== Button Styles ===== */
.btn-view-all {
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: var(--fs-h4);
    font-weight: 600;
    padding: 14px var(--space-32);
    border-radius: var(--radius-16);
    border: none;
    box-shadow: var(--shadow-card);
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    transition: all 0.2s ease, transform 0.2s ease;
}

    .btn-view-all:hover {
        background-color: #026002;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(2, 128, 2, 0.3);
        gap: var(--space-12);
    }

    .btn-view-all i {
        transition: transform 0.2s ease;
    }

    .btn-view-all:hover i {
        transform: translateX(4px);
    }
/* ===== Footer ===== */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--space-80) 0 var(--space-32);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-48);
    margin-bottom: var(--space-64);
}


.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: var(--space-24);
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: var(--fs-base);
    font-weight: 400;
    line-height: 1.625;
    color: var(--color-text-light);
    margin-bottom: var(--space-24);
    max-width: 206px;
}

.footer-social {
    display: flex;
    gap: var(--space-12);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

    .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .social-link img {
        width: 20px;
        height: 20px;
    }

.footer-section-title {
    font-size: var(--fs-h3);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: var(--space-20);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding-left: 5px;
}

.footer-link {
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.5;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--color-white);
    }

.footer-contact-item {
    display: flex;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

[dir="rtl"] .footer-contact-text {
    direction: ltr;
    text-align: right;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-24);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-16);
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-24);
}

.footer-bottom-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
}

    .footer-bottom-link:hover {
        color: var(--color-white);
    }
/* ===== Responsive - Tablet ===== */
@media (max-width: 1199px) {
    :root {
        --fs-hero: 40px;
        --fs-section-title: 40px;
    }

    .hero-content-wrapper {
        padding: 48px;
    }

    .hero-title {
        font-size: 40px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .project-card-image {
        height: 240px;
    }

    .project-card-content {
        padding: 24px;
    }

    .project-card-title {
        font-size: 22px;
    }

    .project-arrow-btn {
        width: 44px;
        height: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== About Page ===== */
/* About Banner */
.about-banner {
    background: #003d7a;
    background-image: url(../images/about-us-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .about-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 0%), linear-gradient(rgba(255, 255, 255, 0.1) 0.24414%, rgba(0, 0, 0, 0) 0.24414%);
        opacity: 0.1;
        pointer-events: none;
    }

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 896px;
    margin: 0 auto;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 0.8px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24.8px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.banner-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.banner-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 768px;
    margin: 0 auto;
}
/* About Intro Section */
.about-intro {
    background: var(--color-white);
    padding: 96px 0;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1e293b;
    margin-bottom: var(--space-24);
}

.about-paragraph {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    color: #64748b;
    margin-bottom: var(--space-24);
}

.about-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.about-image {
    width: 100%;
    height: 304px;
    object-fit: cover;
    display: block;
}
/* Mission, Vision, Values Section */
.about-mvv {
    background: #f8fafc;
    padding: 96px 0;
}

.mvv-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

    .mvv-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

.mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .mvv-icon i {
        color: rgba(0 61 122 / 100%);
    }

    .mvv-icon img {
        width: 40px;
        height: 40px;
    }

.mvv-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #1e293b;
    margin-bottom: 16px;
}

.mvv-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #64748b;
    margin: 0;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mvv-list li {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #64748b;
        padding-left: 20px;
        position: relative;
        margin-bottom: 8px;
    }

        .mvv-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-primary-blue);
            font-size: 16px;
        }

        .mvv-list li:last-child {
            margin-bottom: 0;
        }
/* Partnership Section */
.about-partnership {
    background: var(--color-white);
    padding: 96px 0;
}

.partnership-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.partnership-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .partnership-icon img {
        width: 30px;
        height: 30px;
    }

.partnership-content {
    flex: 1;
}

.partnership-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #1e293b;
    margin-bottom: 8px;
}

.partnership-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    margin: 0;
}
/* ===== Services Page ===== */
/* Services Banner */
.services-banner {
    background: #003d7a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .services-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 0%), linear-gradient(rgba(255, 255, 255, 0.1) 0.20636%, rgba(0, 0, 0, 0) 0.20636%);
        opacity: 0.1;
        pointer-events: none;
    }
/* Services Content */
.services-content {
    background: var(--color-white);
    padding: 96px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1e293b;
    margin-bottom: 16px;
}

.services-main-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #64748b;
    max-width: 768px;
    margin: 0 auto;
}
/* Services Grid */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
/* Service Card */
.service-card-item {
    background: var(--color-white);
    border: 0.8px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .service-card-item:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }
/* Service Card Image */
.service-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 192px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-item:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-green);
    color: var(--color-white);
    padding: 9.6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 1;
}
/* Service Card Content */
.service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 50px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #101828;
    margin: 0;
    flex: 1;
}

    .service-card-title p {
        margin-bottom: 0;
    }

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg, #013368 0%, #012654 100%);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .service-card-icon img {
        width: 20px;
        height: 20px;
    }

.service-card-item:hover .service-card-icon {
    transform: scale(1.1);
    background: linear-gradient(180deg, #013368 0%, #012654 100%);
}

.service-card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: #4a5565;
    margin: 0;
    min-height: 68px;
    max-height: 68px;
    overflow: hidden;
}

    .service-card-description p,
    .sector-card-description p,
    .project-card-description p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.service-card-footer {
    border-top: 0.8px solid #e5e7eb;
    padding-top: 16.8px;
    margin-top: auto;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-green);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .service-card-link:hover {
        color: #026002;
        gap: 12px;
    }

.service-link-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.service-card-link:hover .service-link-icon {
    transform: translateX(4px);
}
/* ===== Service Detail Page ===== */
/* Service Detail Hero Banner */
.service-detail-hero {
    position: relative;
    background-image: url('assets/images/service-detail-hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #003d7a;
    z-index: 1;
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px;
}
/* Breadcrumbs */
.service-breadcrumb {
    margin-bottom: 16px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .breadcrumb-item a:hover {
            color: var(--color-white);
        }

    .breadcrumb-item.active {
        color: var(--color-white);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: '/';
        color: rgba(255, 255, 255, 0.6);
        padding-right: 12px;
    }
/* Hero Content */
.service-detail-title {
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-white);
    margin-bottom: 16px;
}

.service-detail-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 896px;
}
/* Service Detail Content Section */
.service-detail-content {
    background: var(--color-white);
    padding: 80px 0;
}

.service-content-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #1e293b;
    margin-bottom: 24px;
}

.service-content-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    color: #64748b;
    margin-bottom: 24px;
}

.service-content-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-service-primary {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

    .btn-service-primary:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 128, 2, 0.3);
        color: var(--color-white);
    }

.breadcrumb-item p {
    margin-bottom: 0;
}

.btn-service-primary .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.btn-service-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-service-secondary {
    background: var(--color-white);
    color: #003d7a;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 25.6px;
    border-radius: 16px;
    border: 1.6px solid #003d7a;
    transition: all 0.3s ease, transform 0.2s ease;
}

    .btn-service-secondary:hover {
        background: #003d7a;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

.service-content-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-content-image {
    width: 100%;
    height: 307px;
    object-fit: cover;
    display: block;
}
/* Service Features Grid */
.service-detail-services {
    background: #f8fafc;
    padding: 80px 0;
}

.service-detail-services-header {
    text-align: center;
    margin-bottom: 48px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-feature-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .service-feature-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.service-feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

    .service-feature-icon img {
        width: 100%;
        height: 100%;
    }

.service-feature-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1e293b;
    margin: 0;
}
/* Why Choose Section */
.service-detail-why {
    background: var(--color-white);
    padding: 80px 0;
}

.why-choose-card {
    text-align: center;
    padding: 32px 24px;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ff;
    border-radius: 16px;
}

    .why-choose-icon img {
        width: 48px;
        height: 48px;
    }

.why-choose-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #1e293b;
    margin-bottom: 12px;
}

.why-choose-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    margin: 0;
}
/* Service Detail CTA */
.service-detail-cta {
    background: #003d7a;
    padding: 80px 0;
    text-align: center;
}

.service-cta-content {
    max-width: 768px;
    text-align: center;
    margin: 0 auto;
}

.service-cta-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.service-cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.btn-cta-white {
    background: #028002;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 9999px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(2, 128, 2, 0.3);
}

    .btn-cta-white:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(2, 128, 2, 0.4);
        color: var(--color-white);
    }

.btn-icon-left {
    width: 20px;
    height: 20px;
}
/* ===== Sectors Page ===== */
/* Sectors Hero Banner */
.sectors-hero {
    position: relative;
    min-height: 477px;
    background: #013368;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sectors-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('assets/images/icon-engineering-pattern.svg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sectors-hero-blur {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
    z-index: 2;
}

.sectors-hero-blur-teal {
    background: rgba(20, 184, 166, 0.2);
    top: 80px;
    right: 40px;
}

.sectors-hero-blur-blue {
    background: rgba(30, 64, 175, 0.2);
    top: 13px;
    left: 40px;
}

.sectors-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 896px;
    margin: 0 auto;
    padding: 60px 0 60px;
}

.sectors-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 0.8px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 11.2px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.sectors-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 90px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.sectors-hero-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 722px;
    margin: 0 auto;
}
/* Sectors Introduction Section */
.sectors-intro {
    background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
    padding: 96px 0;
}

.sectors-intro-header {
    text-align: center;
    margin-bottom: 64px;
}

.sectors-intro-tag {
    display: inline-block;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 9999px;
    padding: 11.2px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #003d7a;
    margin-bottom: 20px;
}

.sectors-intro-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #1e293b;
    margin-bottom: 28px;
}

.sectors-intro-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #64748b;
    max-width: 742px;
    margin: 0 auto;
}
/* Sectors Grid */
/* Sector Card */
.sector-card {
    position: relative;
    background: var(--color-white);
    border: 0.8px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .sector-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

.sectors-grid.sectors-home .sector-card {
    width: 100%;
    height: 100%;
}


.sectors-grid.sectors-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sector-card-icon {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .sector-card-icon img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

.sector-card-title p {
    margin-bottom: 0;
}

.sector-card-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 0;
    background: #003d7a;
    border-radius: 16px 16px 0 0;
    transition: width 0.3s ease;
}

.sector-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #1e293b;
    margin-bottom: 12px;
}

.sector-card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.75px;
    color: #64748b;
    margin: 0;
    min-height: 68px;
    max-height: 68px;
    overflow: hidden;
}

.sector-card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.sector-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sector-feature img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .sector-feature span {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #64748b;
    }

.sector-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-green);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .sector-card-link:hover {
        color: var(--color-green);
        gap: 12px;
    }

    .sector-card-link img {
        width: 100%;
        height: 100%;
        transition: transform 0.2s ease;
        object-fit: cover;
        border-radius: 16px;
    }

    .sector-card-link:hover img {
        transform: translateX(4px);
    }
/* Sectors CTA Section */
.sectors-cta {
    background: var(--color-white);
    padding: 96px 0;
    text-align: center;
}

.sectors-cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.sectors-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #1e293b;
    margin-bottom: 16px;
}

.sectors-cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #64748b;
    margin-bottom: 32px;
}

.sectors-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
        color: var(--color-white);
        background: #026002;
    }

.btn-cta-secondary {
    background: var(--color-white);
    color: #003d7a;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 16px;
    border: 1.6px solid #003d7a;
    transition: all 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-secondary:hover {
        background: #003d7a;
        color: var(--color-white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }
/* ===== Sector Detail Page ===== */
/* Sector Detail Hero Banner */
.sector-detail-hero {
    position: relative;
    background: #003d7a;
    overflow: hidden;
}

.sector-detail-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('assets/images/icon-engineering-pattern.svg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sector-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 60px;
}

    .sector-detail-hero-content p {
        color: #fff;
    }
/* Breadcrumb */
.sector-breadcrumb {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.2s ease;
}

    .sector-breadcrumb:hover {
        color: var(--color-white);
    }
/* Hero Icon Container */
.sector-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 0.8px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    display: none;
}

    .sector-hero-icon img {
        width: 40px;
        height: 40px;
    }
/* Hero Title */
.sector-hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-white);
    margin-bottom: 24px;
}
/* Hero Description */
.sector-hero-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 768px;
}
/* Statistics Section */
.sector-stats {
    background: var(--color-white);
    border-bottom: 0.8px solid #f3f4f6;
    padding: 64px 0;
}

.sector-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #003d7a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #64748b;
}
/* Sector Content Section */
.sector-content {
    background: linear-gradient(to bottom, white 0%, #f8fafc 100%);
    padding: 80px 0;
}

.sector-content-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #1e293b;
    margin-bottom: 24px;
}

.sector-content-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    color: #64748b;
    margin-bottom: 24px;
}

.sector-content-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.badge-icon {
    width: 24px;
    height: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-green);
}

.sector-content-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sector-content-image {
    width: 100%;
    height: 342px;
    object-fit: cover;
    display: block;
}
/* Sector Services Grid */
.sector-services {
    background: #f8fafc;
    padding: 96px 0;
}

.sector-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sector-service-card {
    background: var(--color-white);
    border: 0.8px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

    .sector-service-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

.sector-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

    .sector-service-icon img {
        width: 32px;
        height: 32px;
    }

.sector-service-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #1e293b;
    margin-bottom: 12px;
}

.sector-service-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    margin: 0;
}
/* Sector Detail CTA */
.sector-detail-cta {
    background: var(--color-white);
    padding: 96px 0;
    text-align: center;
}

.sector-cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.sector-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #1e293b;
    margin-bottom: 16px;
}

.sector-cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #64748b;
    margin-bottom: 32px;
}

.btn-sector-cta {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    text-decoration: none;
    display: inline-block;
}

    .btn-sector-cta:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 128, 2, 0.3);
        color: var(--color-white);
    }
/* ===== ESG Page ===== */
/* ESG Hero Banner */
.esg-hero {
    background: #013368;
    background-image: url(../images/esg-banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 80px;
    text-align: center;
}

.esg-hero-content {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.esg-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.esg-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.esg-hero-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 768px;
    margin: 0 auto;
}
/* ESG Statistics Section */
.esg-stats {
    background: var(--color-white);
    border-bottom: 0.8px solid #f3f4f6;
    padding: 64px 0;
}

.esg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.esg-stat-item {
    text-align: center;
}

.esg-stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #013368;
    margin-bottom: 8px;
}

.esg-stat-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #1e2939;
    margin-bottom: 8px;
}

.esg-stat-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #6a7282;
}
/* ESG Three Pillars Section */
.esg-pillars {
    background: #f9fafb;
    padding: 96px 0 0 0;
}

.esg-pillars-header {
    text-align: center;
    margin-bottom: 64px;
}

.esg-pillars-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #101828;
    margin-bottom: 24px;
}

.esg-pillars-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #4a5565;
    max-width: 735px;
    margin: 0 auto;
}

.esg-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
/* ESG Detail Sections */
.esg-section {
    margin-bottom: 60px;
}

.esg-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 48px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-green);
    display: inline-block;
}

.esg-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.esg-detail-card {
    background: rgba(2 128 2 / 4%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .esg-detail-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
        border-color: var(--color-green);
    }

.esg-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .esg-card-title::before {
        content: '';
        width: 4px;
        height: 24px;
        background: var(--color-green);
        border-radius: 2px;
    }

.esg-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .esg-card-list li {
        font-size: 15px;
        line-height: 24px;
        color: var(--color-text-body);
        margin-bottom: 12px;
        padding-left: 24px;
        position: relative;
    }

[dir="rtl"] li {
    padding-left: 0;
    padding-right: 16px;
}

[dir="rtl"] .dropdown-chevron-btn {
    margin: -8px 4px -8px -8px;
}

[dir="rtl"] li::before {
    right: 0;
}

[dir="rtl"] ul.footer-links,
[dir="rtl"] ul.footer-links li {
    padding-right: 0;
}

.esg-card-list li:last-child {
    margin-bottom: 0;
}

.esg-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 16px;
}
/* ESG Metrics Section */
.esg-metrics {
    background: #f8fafc;
    padding-top: 40px;
}

.esg-metrics-subsection {
    margin-bottom: 60px;
}

    .esg-metrics-subsection.certification {
        margin-bottom: 0;
    }

.esg-subsection-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esg-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.esg-metrics-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .esg-metrics-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

.esg-metrics-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-green);
}

.esg-metrics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .esg-metrics-list li {
        font-size: 15px;
        line-height: 22px;
        color: var(--color-text-body);
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

        .esg-metrics-list li:last-child {
            margin-bottom: 0;
        }

        .esg-metrics-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--color-green);
            font-weight: bold;
            font-size: 14px;
        }
/* Benchmarks Grid */
.esg-benchmarks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.esg-benchmark-card {
    background: #fff;
    color: #013368;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

    .esg-benchmark-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
    }

.esg-benchmark-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.esg-benchmark-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.esg-benchmark-unit {
    font-size: 12px;
    opacity: 0.8;
    line-height: 18px;
}
/* Certifications Grid */
.esg-certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.esg-cert-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .esg-cert-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
        border-color: var(--color-green);
    }

.esg-cert-icon {
    font-size: 40px;
    color: var(--color-primary-blue);
    margin-bottom: 16px;
}

.esg-cert-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-bottom: 8px;
}

.esg-cert-description {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-body);
}

.esg-pillar-card {
    background: var(--color-white);
    border: 0.8px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1), 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    position: relative;
}

.esg-pillar-icon-lg {
    width: 80px;
    height: 80px;
    background: #013368;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
}

.esg-pillar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.esg-pillar-icon-sm {
    width: 32px;
    height: 32px;
}

.esg-pillar-name {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #101828;
    margin: 0;
}

.esg-pillar-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #4a5565;
    margin-bottom: 24px;
}

.esg-pillar-initiatives {
    margin-top: 24px;
}

.esg-initiatives-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #101828;
    margin-bottom: 12px;
}

.esg-initiative-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

    .esg-initiative-item img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .esg-initiative-item span {
        font-size: 14px;
        font-weight: 400;
        line-height: 22.75px;
        color: #364153;
    }
/* ESG Strategic Commitments Section */
.esg-commitments {
    background: var(--color-white);
    padding: 96px 0;
}

.esg-commitments-header {
    text-align: center;
    margin-bottom: 64px;
}

.esg-commitments-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #101828;
    margin-bottom: 24px;
}

.esg-commitments-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #4a5565;
    max-width: 768px;
    margin: 0 auto;
}

.esg-commitments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.esg-commitment-card {
    background: #f9fafb;
    border: 0.8px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

    .esg-commitment-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.esg-commitment-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .esg-commitment-icon img {
        width: 32px;
        height: 32px;
    }

.esg-commitment-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #101828;
    margin-bottom: 12px;
}

.esg-commitment-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #4a5565;
    margin: 0;
}
/* ESG Approach to Sustainability Section */
.esg-approach {
    background: #f8fafc;
    padding: 96px 0;
}

.esg-approach-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.esg-approach-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #101828;
    margin-bottom: 16px;
}

.esg-approach-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #101828;
    margin-bottom: 48px;
}

.esg-approach-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.esg-approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 0.8px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: left;
}

    .esg-approach-item:hover {
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateX(4px);
        border: 1px solid var(--color-primary-blue);
    }

html[dir="rtl"] .esg-approach-item {
    text-align: right;
}

html[dir="rtl"] ul.mvv-list li {
    padding-right: 15px;
}

.esg-approach-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .esg-approach-icon i {
        font-size: 24px;
        color: var(--color-primary-blue);
    }

.esg-approach-text {
    flex: 1;
}

.esg-approach-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-primary-blue);
    margin-bottom: 8px;
}

.esg-approach-item-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0 0 0 / 80%);
    margin: 0;
}
/* ESG CTA Section */
.esg-cta {
    background: var(--color-white);
    padding: 96px 0;
    text-align: center;
}

.esg-cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.esg-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #101828;
    margin-bottom: 16px;
}

.esg-cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #4a5565;
    margin-bottom: 32px;
}

.btn-esg-cta {
    background: #028002;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(2, 128, 2, 0.3);
    text-decoration: none;
    display: inline-block;
}

    .btn-esg-cta:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(2, 128, 2, 0.4);
        color: var(--color-white);
    }
/* ===== Projects Page ===== */
/* Projects Hero Banner */
.projects-hero {
    background: #013368;
    padding: 80px 0 80px;
    text-align: center;
}

.projects-hero-content {
    max-width: 768px;
    text-align: center;
    margin: 0 auto;
}

.projects-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.projects-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.projects-hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
}
/* Projects Grid Section */
.projects-grid-section {
    background: var(--color-white);
    padding: 96px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
/* Project Card */
.project-card {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .project-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }
/* Project Card Image */
.project-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .project-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-overlay {
    display: none;
}

.project-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.project-badge-category {
    background: #027a02;
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 100px;
}

.project-badge-status {
    background: rgba(255, 255, 255, 0.95);
    color: #1e2939;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 100px;
}
/* Project Card Content */
.project-card-content {
    padding: 24px;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    gap: 12px;
}

.project-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1e2939;
    margin: 0;
    flex: 1;
}

.project-arrow-btn {
    width: 44px;
    height: 44px;
    background: #003d82;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .project-arrow-btn:hover {
        transform: scale(1.1);
        background: #002f66;
    }

    .project-arrow-btn img {
        width: 16px;
        height: 16px;
    }
/* Project Card Meta */
.project-card-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.project-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .project-meta-item img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        filter: brightness(0) saturate(100%) invert(27%) sepia(66%) saturate(7500%) hue-rotate(104deg) brightness(97%) contrast(107%);
    }

    .project-meta-item span {
        font-size: 15px;
        font-weight: 400;
        line-height: 22px;
        color: #6b7280;
    }
/* Project Details Link */
.project-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: var(--color-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .project-details-link:hover {
        color: var(--color-green);
        gap: 12px;
    }

    .project-details-link img {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        filter: invert(62%) sepia(99%) saturate(378%) hue-rotate(130deg) brightness(95%) contrast(92%);
    }

    .project-details-link:hover img {
        transform: translateX(4px);
    }
/* Projects CTA Section */
.projects-cta {
    background: #f9fafb;
    padding: 96px 0;
    text-align: center;
}

.projects-cta-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.projects-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #101828;
    margin-bottom: 16px;
}

.projects-cta-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #4a5565;
    margin-bottom: 32px;
}

.btn-projects-cta {
    background: #028002;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(2, 128, 2, 0.3);
    text-decoration: none;
    display: inline-block;
}

    .btn-projects-cta:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(2, 128, 2, 0.4);
        color: var(--color-white);
    }
/* ===== Responsive - Mobile ===== */
@media (max-width: 767px) {
    :root {
        --fs-hero: 32px;
        --fs-section-title: 32px;
        --fs-body: 18px;
        --space-96: 48px;
        --space-80: 48px;
        --space-64: 32px;
        --space-48: 24px;
    }

    .navbar-collapse {
        background: var(--color-white);
        padding: var(--space-16);
        margin-top: var(--space-16);
        border-radius: var(--radius-12);
        box-shadow: var(--shadow-card);
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-nav {
        gap: var(--space-16);
    }

    .dropdown-wrapper {
        position: static;
    }

    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .dropdown-wrapper.dropdown-open .dropdown-menu-custom {
        max-height: 280px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
        margin-top: 8px;
    }
    /* Rotate chevron when dropdown is open on mobile */
    .dropdown-wrapper.dropdown-open .nav-link.dropdown i {
        transform: rotate(180deg);
    }

    .dropdown-item-custom {
        padding: 10px 10px;
        font-size: 13px;
    }

    .dropdown-item-all {
        display: block;
        font-weight: 600;
        color: var(--color-green);
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 4px;
        padding-bottom: 12px !important;
    }

        .dropdown-item-all:hover {
            color: var(--color-green);
            border-left-color: var(--color-green);
        }

    .dropdown-item-custom:hover {
        padding-left: 24px;
    }

    .hero-content-wrapper {
        padding: var(--space-32) var(--space-24);
    }

    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-12);
        margin-bottom: var(--space-16);
    }

    .hero-title {
        font-size: 32px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-16);
    }

    .btn-hero-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-nav-btns {
        justify-content: center;
    }

    .hero-image {
        min-height: 300px;
    }

    .projects-grid,
    .services-grid,
    .features-grid,
    .sectors-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    /* Homepage Featured Projects Mobile */
    .featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-project-card {
        height: 260px;
    }

    .featured-project-overlay {
        padding: 18px;
    }

    .featured-project-card:hover .featured-project-overlay {
        padding: 24px;
    }

    .featured-project-title {
        font-size: 18px;
    }

    .featured-project-card:hover .featured-project-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .featured-project-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .featured-project-hover-content {
        gap: 14px;
        max-width: 92%;
    }

    .btn-featured-details {
        font-size: 14px;
        padding: 10px 20px;
    }
    /* Projects Page Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-card-image {
        height: 220px;
    }

    .project-card-content {
        padding: 20px;
    }

    .project-card-header {
        gap: 12px;
    }

    .project-card-title {
        font-size: 20px;
    }

    .project-arrow-btn {
        width: 42px;
        height: 42px;
    }

        .project-arrow-btn img {
            width: 16px;
            height: 16px;
        }

    .project-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .project-card-meta {
        gap: 10px;
        margin-bottom: 20px;
    }

    .project-meta-item {
        font-size: 13px;
    }

        .project-meta-item img {
            width: 16px;
            height: 16px;
        }

    .project-details-link {
        font-size: 14px;
    }

    .project-card-badges {
        top: 16px;
        left: 16px;
        right: 16px;
    }

    .project-badge-category,
    .project-badge-status {
        padding: 6px 14px;
        font-size: 11px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    /* About Page Responsive */
    .about-banner {
        padding: 80px 0;
        background-image: url(../images/about-us-banner-mob.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .banner-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-intro {
        padding: 64px 0;
    }

    .about-section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: var(--space-20);
    }

    .about-paragraph {
        font-size: 16px;
    }

    .about-image {
        height: 250px;
    }

    .about-mvv {
        padding: 64px 0;
    }

    .mvv-card {
        padding: 24px;
    }

    .mvv-title {
        font-size: 20px;
    }

    .about-partnership {
        padding: 64px 0;
    }

    .partnership-item {
        gap: 16px;
    }

    .partnership-title {
        font-size: 18px;
    }
    /* Services Page Responsive */
    .services-banner {
        padding: 80px 0;
    }

    .services-content {
        padding: 64px 0;
    }

    .services-header {
        margin-bottom: 48px;
    }

    .services-main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .services-main-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card-header {
        min-height: auto;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-description {
        min-height: auto;
    }
    /* Service Detail Page Responsive */
    .service-detail-hero {
        min-height: 300px;
    }

    .service-detail-hero-content {
        padding: 40px 0 40px;
    }

    .service-detail-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .service-detail-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .service-detail-content {
        padding: 64px 0;
    }

    .service-content-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .service-content-text {
        font-size: 16px;
    }

    .service-content-image {
        height: 250px;
    }

    .service-content-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-service-primary,
    .btn-service-secondary {
        width: 100%;
        justify-content: center;
    }

    .service-detail-services {
        padding: 64px 0;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail-why {
        padding: 64px 0;
    }

    .why-choose-title {
        font-size: 20px;
    }

    .service-detail-cta {
        padding: 64px 0;
    }

    .service-cta-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .service-cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    /* Sectors Page Responsive */
    .sectors-hero {
        min-height: 350px;
    }

    .sectors-hero-content {
        padding: 80px 0 40px;
    }

    .sectors-hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .sectors-hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .sectors-intro {
        padding: 64px 0;
    }

    .sectors-intro-header {
        margin-bottom: 48px;
    }

    .sectors-intro-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .sectors-intro-description {
        font-size: 16px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sector-card {
        min-height: 140px;
        padding: 20px;
    }

    .sector-title {
        font-size: 16px;
    }

    .sectors-cta {
        padding: 64px 0;
    }

    .sectors-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .sectors-cta-description {
        font-size: 16px;
    }

    .sectors-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    /* Sector Detail Page Responsive */
    .sector-detail-hero {
        min-height: 350px;
    }

    .sector-detail-hero-content {
        padding: 80px 0 40px;
    }

    .sector-hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .sector-hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .sector-stats {
        padding: 48px 0;
    }

    .sector-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .sector-content {
        padding: 64px 0;
    }

    .sector-content-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .sector-content-text {
        font-size: 16px;
    }

    .sector-content-image {
        height: 250px;
    }

    .sector-services {
        padding: 64px 0;
    }

    .sector-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sector-detail-cta {
        padding: 64px 0;
    }

    .sector-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .sector-cta-description {
        font-size: 16px;
    }
    /* ESG Page Responsive */
    .esg-hero {
        padding: 80px 0 60px;
        background-image: url(../images/esg-banner-mob.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .esg-hero-title {
        font-size: 40px;
    }

    .esg-metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .esg-benchmarks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .esg-benchmark-value {
        font-size: 24px;
    }

    .esg-certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .esg-cert-card {
        padding: 24px;
    }

    .esg-hero-description {
        font-size: 18px;
    }

    .esg-stats {
        padding: 48px 0;
    }

    .esg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .esg-stat-number {
        font-size: 36px;
    }

    .esg-pillars {
        padding: 64px 0;
    }

        .esg-pillars.section {
            padding: 0px 0;
        }


    .esg-pillars-header {
        margin-bottom: 48px;
    }

    .esg-pillars-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .esg-pillars-description {
        font-size: 16px;
    }

    .esg-pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .esg-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .esg-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .esg-section {
        margin-bottom: 60px;
    }

    .esg-commitments {
        padding: 64px 0;
    }

    .esg-commitments-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .esg-commitments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .esg-approach {
        padding: 64px 0;
    }

    .esg-approach-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .esg-approach-description {
        font-size: 16px;
    }

    .esg-approach-item {
        padding: 20px;
    }

    .esg-approach-item-title {
        font-size: 16px;
    }

    .esg-approach-item-description {
        font-size: 13px;
    }

    .esg-cta {
        padding: 64px 0;
    }

    .esg-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .esg-cta-description {
        font-size: 16px;
    }
    /* Projects Page Responsive */
    .projects-hero {
        padding: 80px 0 60px;
    }

    .projects-hero-title {
        font-size: 40px;
    }

    .projects-hero-description {
        font-size: 16px;
    }

    .projects-grid-section {
        padding: 64px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-card-image {
        height: 200px;
    }

    .project-card-content {
        padding: 20px;
    }

    .project-card-title {
        font-size: 18px;
    }

    .project-arrow-btn {
        width: 40px;
        height: 40px;
    }

        .project-arrow-btn img {
            width: 14px;
            height: 14px;
        }

    .project-card-badges {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .project-badge-category,
    .project-badge-status {
        font-size: 10px;
        padding: 7px 12px;
    }

    .project-card-meta {
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .project-meta-item {
        gap: 8px;
    }

        .project-meta-item img {
            width: 16px;
            height: 16px;
        }

        .project-meta-item span {
            font-size: 14px;
        }

    .project-details-link {
        font-size: 14px;
    }

        .project-details-link img {
            width: 14px;
            height: 14px;
        }

    .projects-cta {
        padding: 64px 0;
    }

    .projects-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .projects-cta-description {
        font-size: 16px;
    }
}
/* ========================================
   PROJECT DETAIL PAGE (Separate Styles)
======================================== */
/* Project Hero Section */
.project-detail-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .project-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 48px;
}

.back-to-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: gap 0.2s ease;
    align-self: flex-start;
}

    .back-to-projects-link:hover {
        gap: 12px;
        color: var(--color-white);
    }

    .back-to-projects-link i {
        font-size: 20px;
    }

.project-hero-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 200px;
}

.project-hero-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.project-detail-badge-category {
    padding: 8px 20px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.project-detail-badge-status {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.project-hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.project-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
}

    .project-hero-meta-item img {
        width: 20px;
        height: 20px;
        filter: brightness(0) saturate(100%) invert(27%) sepia(66%) saturate(7500%) hue-rotate(104deg) brightness(97%) contrast(107%);
    }

    .project-hero-meta-item i {
        font-size: 20px;
        color: #14b8a6;
    }
/* Project Detail Content Section */
.project-detail-section {
    background: var(--color-white);
    padding: 64px 0 96px;
}

.project-detail-content-block {
    margin-bottom: 48px;
}

.project-detail-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin: 0 0 16px;
}

.project-detail-paragraph {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.625;
    color: #4a5565;
    margin: 0;
}
/* Challenge & Solution Cards */
.project-challenge-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.project-info-card {
    background: var(--color-white);
    border: 0.8px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.project-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.project-challenge-icon {
    background: #fef2f2;
    color: #ef4444;
}

.project-solution-icon {
    background: #f0fdf4;
    color: #22c55e;
}

.project-info-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #101828;
    margin: 0;
}

.project-info-card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #4a5565;
    margin: 0;
}
/* Scope of Work Card */
.project-scope-card {
    background: var(--color-white);
    border: 0.8px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-scope-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #4a5565;
}

    .project-scope-item i {
        font-size: 20px;
        color: #14b8a6;
        flex-shrink: 0;
    }
/* Key Achievements Grid */
.project-achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-achievement-card {
    background: linear-gradient(162.5deg, #eff6ff 0%, #f0fdf4 100%);
    border: 0.8px solid #cbfbf1;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .project-achievement-card i {
        font-size: 24px;
        color: #14b8a6;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .project-achievement-card p {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        color: #364153;
        margin: 0;
    }
/* Project Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


.project-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    height: 256px;
}

    .project-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .project-gallery-item:hover img {
        transform: scale(1.05);
    }
/* Sidebar */
.project-detail-sidebar {
    position: sticky;
    top: 120px;
}

.project-sidebar-card {
    background: var(--color-white);
    border: 0.8px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-sidebar-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #101828;
    margin: 0 0 24px;
}

.project-sidebar-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.project-sidebar-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

    .project-sidebar-info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.project-sidebar-label {
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
}

.project-sidebar-value {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-project-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

    .btn-project-cta:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 128, 2, 0.3);
        color: var(--color-white);
    }

    .btn-project-cta i {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .btn-project-cta:hover i {
        transform: translateX(4px);
    }
/* Responsive Styles for Project Detail Page */
@media (max-width: 1199px) {
    .project-hero-title {
        font-size: 48px;
    }

    .project-detail-sidebar {
        top: 100px;
    }
}

@media (max-width: 991px) {
    .project-detail-hero {
        height: 450px;
        margin-top: 80px;
    }

    .project-hero-content {
        padding-top: 32px;
    }

    .project-hero-main {
        padding-top: 150px;
    }

    .project-hero-title {
        font-size: 42px;
    }

    .project-challenge-solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-achievements-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

        .project-gallery-grid .project-gallery-item:first-child {
            grid-column: 1;
            grid-row: auto;
        }

    .project-detail-sidebar {
        position: static;
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    .project-detail-hero {
        height: 400px;
        margin-top: 0px;
    }

    .project-hero-content {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .project-hero-main {
        gap: 12px;
        padding-top: 120px;
    }

    .project-hero-title {
        font-size: 32px;
    }

    .project-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .back-to-projects-link {
        font-size: 14px;
    }

    .project-detail-badge-category,
    .project-detail-badge-status {
        font-size: 11px;
        padding: 6px 14px;
    }

    .project-hero-meta-item {
        font-size: 14px;
    }

        .project-hero-meta-item i {
            font-size: 18px;
        }

    .project-detail-section {
        padding: 48px 0 64px;
    }

    .project-detail-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .project-detail-paragraph {
        font-size: 16px;
    }

    .project-info-card {
        padding: 20px;
    }

    .project-info-card-title {
        font-size: 18px;
    }

    .project-info-card-text {
        font-size: 15px;
    }

    .project-scope-card {
        padding: 20px;
    }

    .project-scope-item {
        font-size: 15px;
    }

    .project-achievement-card {
        padding: 20px;
    }

        .project-achievement-card p {
            font-size: 15px;
        }

    .project-gallery-item {
        height: 220px;
    }

    .project-sidebar-card {
        padding: 24px;
    }

    .project-sidebar-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .project-sidebar-label {
        font-size: 16px;
    }
}
/* ========================================
   CONTACT PAGE (Separate Styles)
======================================== */
/* Contact Hero Banner */
.contact-hero {
    background: var(--color-primary-blue);
    padding: 80px 0 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.contact-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0 0 16px;
}

.contact-hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
/* Contact Content Section */
.contact-content-section {
    background: var(--color-white);
    padding: 80px 0;
}
/* Contact Information (Left Column) */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin: 0 0 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-info-icon i {
        font-size: 24px;
        color: var(--color-primary-blue);
    }

.contact-info-text {
    flex: 1;
}

.contact-info-label {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
    line-height: 1.5;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    direction: ltr;
    unicode-bidi: plaintext;
    display: block;
}
/* Business Hours */
.contact-business-hours {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.contact-hours-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px;
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-hours-day {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

span.contact-hours-time {
    direction: ltr;
    unicode-bidi: plaintext;
    display: inline-block;
}

[dir="rtl"] .contact-info-value,
[dir="rtl"] .contact-hours-time {
    text-align: right;
}

[dir="rtl"]input#PhoneNumber {
    direction: ltr;
    text-align: right;
}

.contact-hours-time {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}
/* Contact Form (Right Column) */
.contact-form-card {
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 32px;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

.contact-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #1e293b;
    background: var(--color-white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

    .contact-form-input:focus {
        outline: none;
        border-color: #14b8a6;
        box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    }

    .contact-form-input::placeholder {
        color: #94a3b8;
    }

.contact-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    cursor: pointer;
}

    .btn-contact-submit:hover {
        background: #026002;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 128, 2, 0.3);
        color: var(--color-white);
    }

html[dir="rtl"] .btn-contact-submit i {
    font-size: 18px;
    transform: rotate(-95deg);
}

.btn-contact-submit i {
    font-size: 18px;
}
/* Map Section */
.contact-map-section {
    background: #f1f5f9;
    padding: 0;
}

.contact-map-container {
    height: 500px;
    width: 100%;
    border: 1px solid var(--color-border);
}

.leaflet-popup-content {
    text-align: center !important;
    font-family: var(--font-primary) !important;
}

    .leaflet-popup-content a {
        color: var(--color-primary-blue);
        text-decoration: none;
        font-weight: 500;
    }

        .leaflet-popup-content a:hover {
            text-decoration: underline;
        }
/* Responsive Styles for Contact Page */
@media (max-width: 1199px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0 50px;
        margin-top: 80px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-form-card {
        margin-top: 32px;
    }

    .contact-map-placeholder {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 60px 0 40px;
        margin-top: 0px;
    }

    .contact-hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-content-section {
        padding: 60px 0;
    }

    .contact-info-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .contact-form-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .contact-form-input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .btn-contact-submit {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-map-placeholder {
        height: 300px;
    }

    .contact-map-icon {
        font-size: 48px;
    }

    .contact-map-text {
        font-size: 16px;
    }

    .header-right {
        margin-top: 16px;
        align-items: flex-start !important;
        flex-direction: column;
    }

    header-right a.btn.btn-contact-nav {
        order: -1;
    }

    .sectors-grid.sectors-home {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 1080px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 0;
    }

    .navbar-logo {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 776px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
        gap: var(--space-16);
    }

    .hero-card {
        height: auto;
    }

    navbar-nav .nav-link {
        display: flex;
        justify-content: space-between;
    }

    .dropdown-chevron-btn {
        justify-content: flex-end;
        width: 70%;
    }

    .btn-contact-nav {
        font-size: 15px;
        font-weight: 500;
        color: #364153 !important;
        background-color: transparent !important;
        padding: 0;
        margin-bottom: 8px;
    }

    .service-content-image-wrapper {
        margin-bottom: 30px;
    }

    section.service-detail-content.section .row {
        flex-direction: column-reverse;
    }

    .footer-description {
        max-width: 100%;
    }
}

.stats-section.home {
    background: #fff;
}

.dropdown-item-custom p {
    margin-bottom: 0;
}

.service-detail-hero-content p {
    color: #fff;
}

button#langToggle {
    padding: 8px var(--space-24);
    border-radius: 9999px;
    border-color: var(--color-green);
    color: var(--color-green);
    order: 2;
}

    button#langToggle:hover {
        background-color: var(--color-green);
        color: var(--color-white)
    }

html[dir="rtl"] input#PhoneNumber {
    direction: ltr;
    text-align: right;
}

[dir="rtl"] .esg-card-list li {
    padding-right: 24px;
}

[dir="rtl"] .navbar-expand-lg .navbar-nav li.nav-item {
    padding-right: 0;
}

html[dir="rtl"] .back-to-projects-link i {
    transform: scale(-1);
}

.iso-logos-grid {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* aligns vertically if needed */
    gap: 20px; /* space between logos */
    flex-wrap: wrap; /* responsive */
}

.iso-logo-item {
    text-align: center;
    max-height: 120px;
    max-width: 120px;
}

.iso-logo {
    max-width: 120px;
    max-height: 120px;
}

.slider-section {
    margin-bottom: 2rem;
}

.slider-wrapper {
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 2rem;
    animation: slide 18s linear infinite;
}

.slider-item {
    min-width: 130px;
    border-radius: 1rem;
    box-shadow: 0 2px 8px #0001;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.slider-img {
    border-radius: 1rem;
}

.slider-caption {
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-60%);
    }
}

@media (max-width: 768px) {
    .slider {
        gap: 1rem;
    }

    .slider-item {
        min-width: 140px;
        padding: 1rem 0.5rem;
    }
}

.sector-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
/*    max-width: 420px;*/
    margin: 0 auto;
}

.sector-slider-track {
    display: flex;
    transition: transform 0.5s;
}

.sector-slider-image {
    width: 100%;
    max-height: 450px;
    min-width: 100%;
    /*    height: 260px;*/
    object-fit: cover;
    border-radius: 1rem;
}

    .sector-slider-image:nth-child(2) {
        right: -16px;
        position: relative;
    }
    .sector-slider-image:nth-child(3) {
        right: -32px;
        position: relative;
    }
    .sector-slider-image:nth-child(4) {
        right: -64px;
        position: relative;
    }
.sector-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.sector-slider-prev, .sector-slider-next {
    background: #003d7a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    line-height: 0;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
}

    .sector-slider-prev:hover, .sector-slider-next:hover {
        opacity: 1;
    }
html[dir="rtl"] .sector-slider-prev, html[dir="rtl"] .sector-slider-next {
    transform: rotate(180deg);
}

section.service-detail-content.section h2, 
section.service-detail-content.section h4
section.service-detail-content.section h3,
section.service-detail-content.section h5,
section.service-detail-content.section h6{
    margin-bottom: 10px;
}
tbody, td, tfoot, th, thead, tr {
    padding-inline: 3px;
}