@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
    --primary: #004685;
    --accent: #d4af37;
    --dark: #0c0c0c;
    --gray-bg: #f8f9fb;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: #333;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar {
    background: #f4f4f4;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.utility-links {
    display: flex;
    gap: 20px;
}

.utility-links a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.utility-links a:hover {
    color: var(--primary);
}

.main-header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.main-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    border-right: 2px solid #ddd;
    padding-right: 15px;
}

.company-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}

.company-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hero {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('https://images.unsplash.com/photo-1582672060674-bc2bd808a8b5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--accent);
    color: #000;
    padding: 6px 20px;
    font-weight: 900;
    margin-bottom: 25px;
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
}

.hero h1 {
    font-size: 65px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    border: none;
    padding: 18px 50px;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-section {
    background: var(--gray-bg);
    padding: 100px 0;
}

.eco-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: var(--shadow);
}

.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 60px 5%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 3px solid var(--primary);
    z-index: 999;
}

.has-mega:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mega-col h4 {
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mega-col li {
    font-size: 13px;
    color: #777;
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.mega-col li:hover {
    color: var(--primary);
    padding-right: 5px;
}

.footer {
    background: #0c0c0c;
    color: #fff;
    padding-top: 80px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0;
    text-align: center;
    font-size: 13px;
    color: #555;
}

.section-padding {
    padding: 80px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-text {
    text-align: right;
}

.sub-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vision-text h2 {
    font-size: 40px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
}

.vision-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sustainability-section {
    background-color: #f4f7f9;
    padding: 100px 0;
}

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

.section-header-right h2 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 900;
    position: relative;
    padding-bottom: 15px;
}

.section-header-right h2::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.eco-card-container {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.eco-card-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.eco-icon-box {
    width: 100px;
    height: 100px;
    background: #e8faf0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #2ecc71;
    flex-shrink: 0;
}

.eco-text-box h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.eco-text-box p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 992px) {

    .vision-grid,
    .eco-card-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .vision-text,
    .section-header-right {
        text-align: center;
    }

    .section-header-right h2::after {
        right: 50%;
        transform: translateX(50%);
    }

    .eco-icon-box {
        margin: 0 auto;
    }
}

.line-center {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto;
}

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

.sector-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.4s;
    text-align: right;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 70, 133, 0.1);
    border-color: var(--primary);
}

.sector-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 22px;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.sector-card ul {
    list-style: none;
}

.sector-card li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-right: 20px;
    position: relative;
}

.sector-card li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent);
}

.tech-section {
    background: var(--dark-navy);
    padding: 80px 0;
    color: white;
    margin-top: 50px;
}

.tech-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tech-visual {
    flex: 1;
}

.tech-visual img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-content {
    flex: 1;
    text-align: right;
}

.tech-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin: 20px 0;
    color: var(--white);
    line-height: 1.2;
}

.tech-content p {
    font-size: 18px;
    color: #a0aec0;
    margin-bottom: 40px;
}

.contact-main-card {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 550px;
    margin-bottom: 50px;
}

.contact-blue-side {
    flex: 1;
    background: var(--primary-blue);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-blue-side h2 {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-blue-side p {
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-info-list .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
}

.contact-info-list i {
    color: var(--accent);
    font-size: 20px;
}

.contact-white-side {
    flex: 1.5;
    padding: 60px;
    background: #fff;
}

.kaaser-form .input-group {
    margin-bottom: 25px;
}

.kaaser-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.kaaser-form input,
.kaaser-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 15px;
}

.kaaser-form textarea {
    height: 120px;
    resize: none;
}

.btn-submit-gold {
    width: 100%;
    background: var(--accent);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-gold:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 992px) {

    .tech-wrapper,
    .contact-main-card {
        flex-direction: column;
    }

    .contact-blue-side,
    .contact-white-side {
        padding: 40px 20px;
    }
}


.tech-section {
    background-color: #071e3d !important;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.tech-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-direction: row-reverse;
}

.tech-content {
    flex: 1;
    text-align: right;
    z-index: 2;
}

.tech-content h2 {
    color: #ffffff !important;
    font-size: 45px;
    font-weight: 900;
    line-height: 1.2;
    margin: 20px 0;
    display: block !important;
}

.tech-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.tech-visual {
    flex: 1;
}

.tech-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-main-card {
    display: flex !important;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    border: 1px solid #eee;
    width: 100%;
}

.contact-blue-side {
    flex: 1;
    background-color: #004685 !important;
    color: white;
    padding: 60px 40px;
    text-align: right;
}

.contact-blue-side h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    color: #d4af37;
    font-size: 22px;
}

.contact-white-side {
    flex: 1.5;
    padding: 60px 40px;
    background: #fff;
}

.kaaser-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kaaser-form input,
.kaaser-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    background: #f9fafb;
    font-family: inherit;
}

.btn-submit-gold {
    background: #d4af37;
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-gold:hover {
    background: #071e3d;
    color: #fff;
}

@media (max-width: 768px) {

    .tech-wrapper,
    .contact-main-card {
        flex-direction: column !important;
    }

    .contact-blue-side,
    .contact-white-side {
        width: 100%;
        padding: 30px 20px;
    }
}

.adnoc-stats-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
}

.fixed-gradient-overlay {
    background: linear-gradient(to left, rgba(7, 30, 61, 0.8) 0%, rgba(7, 30, 61, 0.4) 100%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.adnoc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.adnoc-stats-info h2 {
    font-size: 50px;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
}

.adnoc-stats-info p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.adnoc-numbers-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.adnoc-stat-card {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    color: white;
    text-align: right;
}

.big-num {
    font-size: 110px;
    font-weight: 900;
    line-height: 0.8;
    display: block;
    margin-bottom: 15px;
}

.stat-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.adnoc-icon-box {
    font-size: 70px;
    color: var(--accent);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    padding-right: 30px;
    width: 120px;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .adnoc-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .adnoc-stats-section {
        background-attachment: scroll;
    }

    .big-num {
        font-size: 70px;
    }

    .adnoc-stat-card {
        justify-content: center;
        text-align: center;
        flex-direction: column-reverse;
    }

    .adnoc-icon-box {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid var(--accent);
        padding-bottom: 20px;
    }
}

.main-footer {
    background: linear-gradient(to left, #004685 0%, #008eb7 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    border-top: 5px solid var(--accent);
}

.footer-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.brand-info-col {
    text-align: right;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.brand-info-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.15);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons-wrap {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-circle:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-grid-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-info-col {
        text-align: center;
        order: -1;
    }

    .mobile-column {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--dark-navy);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-overlay {
    background: linear-gradient(to left, rgba(7, 30, 61, 0.7) 0%, rgba(7, 30, 61, 0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-context-card {
    position: absolute;
    bottom: 80px;
    right: 5%;
    width: 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    padding: 15px;
    border-radius: 8px;
    z-index: 10;
    color: white;
    border-right: 4px solid var(--accent);
    cursor: pointer;
    transition: 0.3s;
}

.hero-context-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.context-img img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.context-text {
    padding-right: 15px;
}

.context-text h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
}

.context-text p {
    font-size: 12px;
    opacity: 0.8;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 60px;
}


@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

:root {
    --primary: #004685;
    --accent: #d4af37;
    --white: #ffffff;
}

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

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.main-header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

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

.main-logo {
    height: 75px;
}

.company-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.company-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--primary);
}

.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    background: linear-gradient(to left, rgba(7, 30, 61, 0.8) 0%, rgba(7, 30, 61, 0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: right;
    color: white;
    max-width: 750px;
    padding: 0 5%;
}

.hero-badge {
    background: var(--accent);
    color: #000;
    padding: 5px 15px;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 4px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-gold-pro {
    background: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    padding: 15px 40px !important;
    font-weight: 900;
    font-size: 16px;
    border-radius: 50px !important;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-pro {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 15px 40px !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px !important;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold-pro:hover {
    background: #fff !important;
    transform: translateY(-3px);
}

.btn-outline-pro:hover {
    background: #fff !important;
    color: var(--primary) !important;
}

.hero-context-card {
    position: absolute;
    bottom: 50px;
    left: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    padding: 15px;
    border-radius: 12px;
    color: white;
    border-right: 4px solid var(--accent);
    z-index: 10;
}

.context-img img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.context-text {
    padding-right: 15px;
    text-align: right;
}

.context-text h4 {
    font-size: 14px;
    font-weight: 800;
}

.context-text p {
    font-size: 11px;
    opacity: 0.7;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 50px;
}

.hero-slider {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    background: linear-gradient(to left, rgba(7, 30, 61, 0.85) 0%, rgba(7, 30, 61, 0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: right;
    color: white;
    max-width: 800px;
    padding-right: 5%;
}

.hero-content h1 {
    font-size: clamp(35px, 5vw, 65px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: flex-start;
}

.btn-gold-pro {
    background-color: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    padding: 14px 45px !important;
    font-weight: 900;
    font-size: 17px;
    border-radius: 50px !important;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-gold-pro:hover {
    background-color: #fff !important;
    transform: translateY(-3px);
}

.btn-outline-pro {
    background-color: transparent !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    padding: 14px 45px !important;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px !important;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-pro:hover {
    background-color: #fff !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.hero-context-card {
    position: absolute;
    bottom: 50px;
    left: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    display: flex;
    padding: 15px;
    border-radius: 12px;
    color: white;
    border-right: 4px solid var(--accent);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 35px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: var(--accent);
    width: 60px;
}



.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-right {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.sector-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.sector-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 70, 133, 0.15) !important;
}

.eco-icon i,
.adnoc-icon-box i {
    animation: pulse-gold 3s infinite ease-in-out;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}



@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .top-bar {
        display: none;
    }

    .main-header {
        padding: 10px 0;
    }

    .nav-menu {
        display: none;
    }

    .main-logo {
        height: 50px;
    }

    .company-name {
        font-size: 16px;
    }

    .company-sub {
        font-size: 8px;
    }

    .hero {
        height: auto;
        padding: 100px 0 50px;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(7, 30, 61, 0.7);
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 32px !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-gold-pro,
    .btn-outline-pro {
        width: 100%;
        padding: 15px;
        margin: 0 !important;
    }

    .hero-context-card {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
    }

    .vision-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .vision-text h2 {
        font-size: 28px;
    }

    .vision-image img {
        height: 250px;
    }

    .eco-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .eco-icon {
        font-size: 60px;
    }

    .eco-text-box h3 {
        font-size: 22px;
    }

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

    .adnoc-stats-section {
        background-attachment: scroll;
        min-height: auto;
    }

    .adnoc-stats-info {
        text-align: center;
    }

    .adnoc-stats-info h2 {
        font-size: 30px;
    }

    .adnoc-stat-card {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }

    .big-num {
        font-size: 60px !important;
    }

    .stat-title {
        font-size: 20px;
    }

    .adnoc-icon-box {
        border-right: none;
        border-bottom: 2px solid var(--accent);
        padding: 0 0 15px 0;
        width: 60px;
        margin: 0 auto;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .sector-card {
        padding: 25px;
    }

    .tech-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .tech-content h2 {
        font-size: 28px;
    }

    .contact-main-card {
        flex-direction: column;
    }

    .contact-blue-side,
    .contact-white-side {
        padding: 40px 20px;
        width: 100%;
    }

    .contact-blue-side h2 {
        font-size: 26px;
    }

    .footer-grid-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .brand-info-col {
        text-align: center;
    }

    .social-icons-wrap {
        justify-content: center;
    }

    .mobile-column {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

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

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.sidebar-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .hero {
        height: 100vh !important;
        background-attachment: scroll !important;
        background-position: 70% center !important;
    }

    .hero h1 {
        font-size: 38px !important;
        text-align: center;
    }

    .hero p {
        font-size: 16px !important;
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold-pro,
    .btn-outline-pro {
        width: 100%;
        margin: 0 0 10px 0 !important;
        text-align: center;
    }

    .hero-context-card {
        display: none;
    }
}





@media (max-width: 768px) {
    .sector-card {
        text-align: center !important;
        padding: 30px 20px !important;
    }

    .sector-icon {
        margin: 0 auto 20px !important;
        display: flex;
        justify-content: center;
    }

    .sector-card ul {
        display: inline-block;
        text-align: right;
        padding: 0;
        margin: 0 auto;
    }

    .tech-content {
        text-align: center !important;
    }

    .tech-content h2 {
        font-size: 28px !important;
        margin: 15px 0 !important;
    }


    .tech-content .btn-gold:hover {
        background-color: #fff !important;
        transform: translateY(-3px);
    }

    .tech-content .hero-badge {
        margin: 0 auto 15px !important;
        display: inline-block;
    }
}

.tech-content .btn-gold {
    background-color: var(--accent) !important;
    color: #000 !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    display: inline-block;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0 !important;
    transition: 0.3s;
}



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

.product-links li {
    font-size: 15px;
    color: #555;
    padding: 10px 25px 10px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.product-links li::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent);
}

.product-links li:hover {
    color: var(--primary-blue);
    padding-right: 10px;
    background: #f9f9f9;
}

.modal-overlay-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 30, 61, 0.9);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-box-pro {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: right;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px;
    color: #999;
    cursor: pointer;
}

.modal-content-wrap h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.modal-content-wrap p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.modal-tag {
    background: var(--accent);
    color: #000;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.mission-mission-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mini-card {
    background: #f8f9fb;
    padding: 25px;
    border-radius: 15px;
    border-right: 4px solid var(--accent);
}

.mini-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

.goals-bar {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    padding: 30px;
    border-radius: 20px;
    color: white;
    margin-bottom: 80px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 15px;
}

.goal-item i {
    font-size: 24px;
    color: var(--accent);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.company-tag {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: 0.3s;
    cursor: default;
    display: flex;
    align-items: center;
}

.company-tag:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.03);
    border-color: var(--primary);
}

.company-tag::before {
    content: '•';
    color: var(--accent);
    font-size: 20px;
    margin-left: 10px;
}

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

    .mission-mission-box {
        grid-template-columns: 1fr;
    }

    .goals-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


.page-title-section {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0, 70, 133, 0.9), rgba(0, 70, 133, 0.9)), url('uae-pattern.jpg');
    padding: 80px 0;
    color: white;
}

.page-title-section h1 {
    font-size: 45px;
    font-weight: 900;
    margin: 20px 0;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.leader-main-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    align-items: center;
}

.leader-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.leader-info {
    padding: 60px;
}

.gold-line {
    width: 50px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.leader-info h3 {
    font-size: 27px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 900;
}

.designation {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

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

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.member-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.leader-card:hover .member-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.member-text {
    padding: 25px;
    text-align: center;
}

.member-text h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
}

.member-text span {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
}

.leader-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .leader-main-card {
        grid-template-columns: 1fr;
    }

    .leader-img img {
        height: 350px;
    }

    .leader-info {
        padding: 30px;
        text-align: center;
    }

    .gold-line {
        margin: 0 auto 20px;
    }
}

.invest-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.upload-box {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: #fcfcfc;
    position: relative;
    cursor: pointer;
}

.upload-box:hover {
    border-color: var(--accent);
    background: #fffdf5;
}

.upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.btn-pay {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: var(--accent);
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-pay:hover {
    transform: scale(1.02);
    background: #000;
}

.payment-notice {
    background: #fff9e6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    color: #856404;
}


.career-container {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #eee;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    color: var(--primary-blue);
    font-weight: 900;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-family: inherit;
}

.modern-upload-box {
    border: 2px dashed #cbd5e0;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    background: #fdfdfd;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    margin: 10px 0;
}

.modern-upload-box:hover {
    border-color: var(--accent);
    background: #fffdf5;
}

.modern-upload-box i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.modern-upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.full-btn {
    width: 100%;
    padding: 18px !important;
    margin-top: 20px;
}

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

    .career-container {
        padding: 30px 20px;
    }
}

.partners-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.logos-slider {
    margin: 50px 0;
    position: relative;
    width: 100%;
}

.logos-slider::before,
.logos-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logos-track {
    display: flex;
    width: calc(250px * 10);
}

.logo-item {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.logo-item img {
    width: 160px;
    height: auto;
    transition: 0.4s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }

}

.partners-notifications {
    background: var(--soft-gray);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.notif-label {
    background: var(--primary);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    margin-left: 15px;
}

.notif-content {
    flex: 1;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .logos-track {
        animation-duration: 15s;
    }

    .logo-item {
        width: 150px;
    }

    .logo-item img {
        width: 100px;
    }
}


.vision-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: block;
}

@media (max-width: 992px) {
    .vision-video {
        height: 250px;
    }
}


.sustainability-hero {
    background: linear-gradient(135deg, #004685 0%, #00602d 100%) !important;
}

.sus-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.sus-row.reverse {
    flex-direction: row-reverse;
}

.sus-text {
    flex: 1.2;
    text-align: right;
}

.sus-img {
    flex: 0.8;
}

.sus-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.sus-icon-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.sus-icon-title i {
    font-size: 40px;
    color: var(--accent);
}

.sus-icon-title h2 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 900;
}

.sus-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-info,
.promise-box {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid var(--primary);
    margin-top: 30px;
}

.promise-box {
    background: #f6fff9;
    border-right-color: #2ecc71;
}

.promise-box p {
    margin-bottom: 0;
    font-weight: 700;
    color: #1b5e20;
}

.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li i {
    color: #2ecc71;
}

@media (max-width: 992px) {

    .sus-row,
    .sus-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .sus-text {
        text-align: center;
    }

    .sus-icon-title {
        justify-content: center;
    }

    .sus-img img {
        height: 300px;
    }

    .highlight-info,
    .promise-box {
        text-align: right;
    }
}


.about-hero {
    background: linear-gradient(rgba(0, 70, 133, 0.8), rgba(0, 70, 133, 0.8)),
        url('https://static.myconnect.ae/-/media/yasconnect/project/ppad/plan-your-visit/famous-landmarks/article-qaw1.jpg') center/cover no-repeat !important;
}

.about-main-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-main-text h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.about-main-text h2::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: var(--accent);
}

.about-main-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.highlight-box-navy {
    background: var(--primary);
    color: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 80px;
    border-right: 10px solid var(--accent);
}

.highlight-box-navy h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.highlight-box-navy p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.solar-tag {
    display: inline-block;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.vm-card.gold-border {
    border-top: 5px solid var(--accent);
}

.vm-card.blue-border {
    border-top: 5px solid var(--primary);
}

.vm-icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary);
}

.vm-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.mission-points {
    text-align: right;
    margin-top: 20px;
    list-style: none;
    padding-right: 0;
}

.mission-points li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-right: 25px;
}

.mission-points li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--accent);
}

@media (max-width: 992px) {

    .about-main-row,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-main-text {
        text-align: center;
    }

    .about-main-text h2::after {
        right: 50%;
        transform: translateX(50%);
    }

    .mission-points {
        display: inline-block;
    }
}



.history-hero {
    background: linear-gradient(rgba(0, 70, 133, 0.7), rgba(0, 70, 133, 0.7)),
        url('https://images.unsplash.com/photo-1578895101408-1a36b834405b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed !important;
    padding: 120px 0 !important;
}

.history-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-image img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.values-section {
    background-color: var(--soft-gray);
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
}

.value-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow);
}

.phil-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.phil-row.reverse {
    flex-direction: row-reverse;
}

.phil-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    flex-shrink: 0;
}

.blue-box {
    background: #eef4ff;
    color: var(--primary);
}

.gold-box {
    background: #fff9e6;
    color: var(--accent);
}

.phil-text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.phil-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 992px) {

    .history-layout,
    .values-grid,
    .phil-row,
    .phil-row.reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .history-image img {
        height: 300px;
    }

    .phil-icon-box {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        font-size: 28px !important;
        color: var(--primary-blue) !important;
        cursor: pointer;
        z-index: 1001;
        order: 2;
    }

    .nav-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.contact-hero {
    background: linear-gradient(135deg, #004685 0%, #052d52 100%) !important;
    padding: 100px 0 !important;
}

.contact-main-card {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid #eee;
}

.contact-blue-side {
    flex: 1;
    background-color: #004685;
    color: white;
    padding: 60px 45px;
    text-align: right;
}

.contact-blue-side h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-blue-side p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-info-list .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 5px;
}

.item-text span {
    display: block;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.item-text a,
.item-text p {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.social-links-contact a {
    color: white;
    font-size: 20px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-links-contact a:hover {
    opacity: 1;
    color: var(--accent);
}

.contact-white-side {
    flex: 1.4;
    padding: 60px;
    background: #fff;
}

.kaaser-form .input-group {
    margin-bottom: 25px;
}

.kaaser-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}

.kaaser-form input,
.kaaser-form select,
.kaaser-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    background: #f9fafb;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.kaaser-form input:focus,
.kaaser-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 70, 133, 0.05);
}

.kaaser-form textarea {
    height: 130px;
    resize: none;
}

.btn-submit-gold {
    width: 100%;
    background-color: var(--accent);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-submit-gold:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-main-card {
        flex-direction: column;
        margin-top: 20px;
    }

    .contact-blue-side,
    .contact-white-side {
        padding: 40px 25px;
        width: 100%;
    }

    .contact-blue-side {
        text-align: center;
    }

    .contact-info-list .info-item {
        justify-content: center;
        text-align: right;
    }

    .social-links-contact {
        justify-content: center;
    }
}

.top-contact-link {
    position: relative !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    display: inline-block !important;
    pointer-events: auto !important;
}


.privacy-hero {
    background: linear-gradient(135deg, #071e3d 0%, #004685 100%) !important;
    padding: 80px 0 !important;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.privacy-block {
    margin-bottom: 50px;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.block-header i {
    font-size: 24px;
    color: var(--accent);
}

.block-header h2 {
    font-size: 24px;
    color: var(--primary);
    font-weight: 800;
}

.privacy-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.sub-block {
    margin-top: 20px;
    padding-right: 20px;
    border-right: 3px solid #f0f0f0;
}

.sub-block h3 {
    font-size: 17px;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.privacy-list {
    list-style: none;
    margin-top: 15px;
}

.privacy-list li {
    margin-bottom: 10px;
    padding-right: 25px;
    position: relative;
    font-size: 15px;
    color: #666;
}

.privacy-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: #2ecc71;
}

.contact-block-highlight {
    background: #f8faff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
}

.privacy-contact-info {
    margin-top: 20px;
}

.privacy-contact-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.privacy-contact-info i {
    width: 25px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 20px;
    }

    .block-header h2 {
        font-size: 20px;
    }
}


.partners-hero {
    background: linear-gradient(rgba(0, 70, 133, 0.8), rgba(0, 70, 133, 0.8)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat !important;
}

.intro-p {
    font-size: 19px;
    color: #555;
    max-width: 900px;
    margin-bottom: 60px;
}

.partner-sector {
    margin-bottom: 80px;
}

.partner-sector h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding-right: 15px;
    border-right: 4px solid var(--accent);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.logo-item {
    background: #fff;
    border: 1px solid #eee;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s ease-in-out;
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s;
}

.logo-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.join-partners {
    margin-top: 100px;
}

.join-card {
    background: var(--primary-blue);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.join-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.join-card p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 35px;
}

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

    .join-card {
        padding: 40px 20px;
    }

    .logo-item {
        height: 100px;
    }
}

.lang-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-blue);
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.lang-float-btn i {
    font-size: 20px;
}

.lang-float-btn span {
    font-size: 10px;
    font-weight: 900;
}

.lang-float-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

@media (max-width: 768px) {
    .lang-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
}


.en-version {
    direction: ltr !important;
    text-align: left !important;
}

.en-version .nav-links {
    margin-left: 0;
    margin-right: auto;
    flex-direction: row; 
}

.en-version h1, 
.en-version h2, 
.en-version h3, 
.en-version p {
    text-align: left !important;
}

.en-version .section-title::after {
    left: 0;
    right: auto;
}

.en-version {
    font-family: 'Poppins', sans-serif; 
}


html[dir="ltr"] .section-title::after, 
html[dir="ltr"] h2::after {
    right: auto !important;
    left: 0 !important;

}

html[dir="ltr"] .section-title, 
html[dir="ltr"] h2 {
    text-align: left !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}