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

html {
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

/* Graphik Arabic Regular */
@font-face {
    font-family: 'Graphik Arabic';
    src: url('fonts/graphik-arabic/GraphikArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --font-heading: 'Lyon Arabic Display', 'Times New Roman', serif;
    --font-body: 'Graphik Arabic', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: #FFF6E3;
    overflow-x: hidden;
}

/* Fonts */
/* Light */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/lyon-arabic-display-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/lyon-arabic-display-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/lyon-arabic-display-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/lyon-arabic-display-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Black */
@font-face {
    font-family: 'Lyon Arabic Display';
    src: url('fonts/lyon-arabic-display/lyon-arabic-display-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Navbar */
.navbar {
    background-color: #FFF8E7;
    padding: 20px 60px;
    box-shadow: none;
    border-bottom: none;
}

.navbar-brand img {
    height: 60px;
}

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

.menu {
    font-family: 'Lyon Arabic Display';
    color: #000;
    font-size: 24px;
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}

.menu:hover {
    color: #d4a03f;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #3d5a4d;
    padding: 40px 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    will-change: transform;
    z-index: 1001;
    overflow-y: auto;
}

.sidebar-menu.active {
    transform: translateY(0);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 30px;
    font-family: 'Lyon Arabic Display';
    display: block;
    text-align: right;
    width: 100%;
    padding: 0;
}

.close-btn:hover {
    color: #d4a03f;
}

.sidebar-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.sidebar-menu nav a {
    color: white;
    text-decoration: none;
    font-family: 'Lyon Arabic Display';
    font-size: 20px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.sidebar-menu nav a:hover {
    color: #d4a03f;
}

.sidebar-menu nav a.active {
    min-height: 0;
    max-height: calc(1.3em * 3);
    overflow: hidden;
    text-align: left;
    display: block;
}

.what-we-do .service-card-title a {
    color: inherit;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

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

.social-links a:hover {
    color: #d4a03f;
}

.lang-link {
    color: white;
    text-decoration: none;
    font-family: 'Lyon Arabic Display';
    font-size: 18px;
    display: block;
}

.lang-link:hover {
    color: #d4a03f;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.hero {
    padding: 80px 60px;
    background-color: #FFF8E7;
    min-height: 85vh;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 130px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Lyon Arabic Display';
}

.hero-text>p {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mission-block {
    margin-bottom: 35px;
}

.mission-title {
    font-family: var(--font-heading);
    font-weight: bold;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.mission-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #444;
    line-height: 1.2;
}

.learn-btn {
    background-color: #37573A;
    color: #FFF6E3;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    padding: 14px 35px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 20px;
}

.learn-btn:hover {
    background-color: #2f5538;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 107, 71, 0.3);
}

/* Image Section with Decorations */
.image-section {
    position: relative;
    height: 550px;
    display: flex;
    align-items: right;
    justify-content: center;
}

.hero-decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.diamond-decoration {
    position: absolute;
    bottom: 180px;
    left: 80px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

.photo-frame {
    width: 480px;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    z-index: 10;
    position: relative;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes float {

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

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

/* Dots Navigation */
.dots-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 20;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 0;
    transform: rotate(45deg);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #3D6B47;
}

.dot.inactive {
    background-color: #d4cfc4;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -3%;
    left: 0;
    right: 0;
    height: 40px;
    background: #2F306B;
    clip-path: polygon(0 40%, 2% 0, 4% 40%, 6% 0, 8% 40%, 10% 0, 12% 40%, 14% 0, 16% 40%, 18% 0,
            20% 40%, 22% 0, 24% 40%, 26% 0, 28% 40%, 30% 0, 32% 40%, 34% 0, 36% 40%, 38% 0,
            40% 40%, 42% 0, 44% 40%, 46% 0, 48% 40%, 50% 0, 52% 40%, 54% 0, 56% 40%, 58% 0,
            60% 40%, 62% 0, 64% 40%, 66% 0, 68% 40%, 70% 0, 72% 40%, 74% 0, 76% 40%, 78% 0,
            80% 40%, 82% 0, 84% 40%, 86% 0, 88% 40%, 90% 0, 92% 40%, 94% 0, 96% 40%, 98% 0, 100% 40%, 100% 100%, 0 100%);
}

/* ===== About Section ===== */
.about-section {
    background-color: #2F306B;
    color: white;
    padding: 100px 60px;
    position: relative;
}

.about-title {
    font-family: 'Lyon Arabic Display';
    font-weight: 900;
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-link {
    color: #E59D00;
}

.about-image-container {
    position: relative;
    display: inline-block;
}

.about-image {
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.wave-decoration {
    position: absolute;
    bottom: -30px;
    left: 10%;
    top: 80%;
    transform: translateX(-50%);
    z-index: 1;
}

/* ===== What We Do Section ===== */
.what-we-do {
    background-color: #FFFEF9;
    padding: 100px 60px;
}

.what-we-do .container {
    max-width: 1600px;
}

.what-we-do .services-grid {
    display: grid;
    gap: clamp(20px, 3vw, 40px);
    max-width: 100%;
    margin: 0 auto;
    direction: ltr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 992px) {
    .what-we-do .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-areas:
            "s1 s2 s3 s4"
            "s5 s6 s7 s8"
            ". s9 s10 .";
    }

    .what-we-do .services-grid > .service-card:nth-child(1) { grid-area: s1; }
    .what-we-do .services-grid > .service-card:nth-child(2) { grid-area: s2; }
    .what-we-do .services-grid > .service-card:nth-child(3) { grid-area: s3; }
    .what-we-do .services-grid > .service-card:nth-child(4) { grid-area: s4; }
    .what-we-do .services-grid > .service-card:nth-child(5) { grid-area: s5; }
    .what-we-do .services-grid > .service-card:nth-child(6) { grid-area: s6; }
    .what-we-do .services-grid > .service-card:nth-child(7) { grid-area: s7; }
    .what-we-do .services-grid > .service-card:nth-child(8) { grid-area: s8; }
    .what-we-do .services-grid > .service-card:nth-child(9) { grid-area: s9; }
    .what-we-do .services-grid > .service-card:nth-child(10) { grid-area: s10; }
}

.what-we-do .service-card {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 228px;
    height: auto;
    justify-self: stretch;
    padding: 24px 16px;
    background-color: #FFF9EF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    opacity: 1;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.what-we-do .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.12);
}

.what-we-do .service-card-body {
    padding: 0;
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
}

.what-we-do .service-card-title {
    font-family: 'Lyon Arabic Display';
    font-size: 20px;
    font-weight: 900;
    color: #111111;
    margin: 0 0 1.65em;
    line-height: 1.3;
    min-height: 0;
    max-height: calc(1.3em * 3);
    overflow: hidden;
    text-align: left;
    display: block;
}

.what-we-do .service-card-title a {
    color: inherit;
    text-decoration: none;
}

.what-we-do .service-card-title a:hover {
    color: #000000;
    text-decoration-color: #000000;
}

.what-we-do .service-card-description {
    font-family: var(--font-body);
    font-size: 13px;
    color: #4d4d4d;
    line-height: 1.65;
    margin: 0 0 8px;
    min-height: 0;
    align-self: end;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.what-we-do .service-learn-more {
    font-family: var(--font-body);
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
    transition: color 0.3s ease;
    margin-top: 0;
    position: relative;
}

.what-we-do .service-learn-more::after {
    content: "";
    width: 18px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2h12a2 2 0 0 1 2 2v18l-8-5-8 5V4a2 2 0 0 1 2-2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.what-we-do .service-learn-more:hover {
    color: #000000;
}

.section-title {
    font-family: 'Lyon Arabic Display';
    font-size: 64px;
    font-weight: 900;
    color: #21211B;
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--font-body);
    font-size: 24px;
    color: #5C5C5A;
    margin-bottom: 60px;
    max-width: 700px;
}

.service-card {
    background-color: #FFF6E3;
    border: 1px solid #f0ebe0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    height: 50px;
    flex: 1;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.service-link {
    color: #1C1C17;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.service-link:hover {
    color: #2f5538;
    gap: 8px;
}

.service-card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.apply-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    color: #37573A;
    border: 2px solid #3D6B47;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
}

.apply-btn:hover {
    background-color: #3D6B47;
    color: #fff;
}

.apply-btn:hover {
    background-color: #3D6B47;
    color: white;
}

.explore-btn {
    color: #21211B;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 16px 50px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    align-items: center;
    font-size: 20px;
    transition: all 0.3s;
}

.explore-icon {
    display: flex;
    align-items: center;
    margin: 0;
}

.explore-icon svg {
    width: 20px;
    height: 20px;
}

.explore-btn:hover {
    background-color: #2f5538;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 107, 71, 0.3);
}

/* ===== News Section ===== */
.news-section {
    background-color: #FFF6E3;

    padding: 100px 60px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.news-title {
    font-family: 'Lyon Arabic Display';
    font-size: 64px;
    font-weight: 900;
    color: #1a1a1a;
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background-color: #FFE49B;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
}

.arrow-btn:hover {
    background-color: #FBC02D;
    transform: scale(1.1);
}

.news-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.news-card {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.news-card-tags {
    padding: 20px 20px 10px;
    display: flex;
    gap: 10px;
}

.news-tag {
    background-color: #C7C8E1;
    color: #6B5B95;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 400;
}

.news-tag.highlighted {
    background-color: #FFE49B;
    color: #21211B;
}

.news-card-date {
    font-size: 13px;
    color: #2F306B;
    padding: 0 20px;
    margin-bottom: 12px;
    font-weight: 400;
}

.news-card-2 {
    background-color: #DDB8B5;
    color: #21211B;
}

.news-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card-description {
    font-size: 14px;
    color: #5C5C5A;
    line-height: 1.7;

    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 20px;
}

.news-card-link {
    font-size: 14px;
    color: #37573A;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 20px 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.news-card-link:hover {
    color: #2f5538;
    gap: 8px;
}

.news-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-top: auto;
}

.newsroom-btn {
    background-color: #37573A;
    color: #FFF6E3;
    border: none;
    padding: 16px 50px;
    color: #FFF6E3;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    font-size: 20px;
    transition: all 0.3s;
}

.newsroom-btn:hover {
    background-color: #2f5538;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 107, 71, 0.3);
}

/* ===== Shape Your Future Section ===== */
.shape-future-section {
    background-color: #E59D00;
    padding: 100px 60px;
}

.shape-image-container {
    text-align: center;
}

.shape-image {
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: 839px;
}

.shape-content {
    color: #24254F;
    padding: 20px;
    position: relative;
}

.airplane-icons1 {
    margin-bottom: 30px;
    display: flex;
    position: absolute;
    bottom: 95%;
    width: 75px;
    height: 75px;
    right: 60%;
    gap: 15px;
}

.airplane-icons2 {
    margin-bottom: 30px;
    display: flex;
    position: absolute;
    bottom: 110%;
    right: 70%;
    gap: 15px;
}

.airplane-icon {
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.shape-title {
    font-family: 'Lyon Arabic Display';
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -3px;
}

.shape-description {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
}

.shape-btn {
    background-color: #FFF6E3;
    color: #21211B;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    font-size: 20px;
    transition: all 0.3s;
    margin-top: 20px;
}

.shape-btn:hover {
    background-color: #1E3A5F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background: #2F306B;
    padding: 56px 60px;
    position: relative;
    overflow: hidden;
}

.newsletter-section .container {
    max-width: 1440px;
}

.dotted-pattern-top,
.dotted-pattern-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url('images/circle.svg');
    /* background-size: 100% 100%; */
}

.dotted-pattern-top {
    top: 0;
}

.dotted-pattern-bottom {
    bottom: 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.newsletter-contact-form {
    background: #FFFCF5;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 1;
    text-align: left;
}

.newsletter-contact-title {
    font-family: 'Lyon Arabic Display';
    font-size: 48px;
    font-weight: 900;
    color: #21211B;
    margin-bottom: 0;
}

.newsletter-contact-intro {
    font-family: var(--font-body);
    color: #5C5C5A;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-row {
    display: flex;
    gap: 24px;
}

.newsletter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.newsletter-field label {
    color: #21211B;
    font-size: 14px;
}

.newsletter-field input,
.newsletter-field select,
.newsletter-field textarea {
    width: 100%;
    border: 1px solid #CCCCCA;
    background: #FFFCF5;
    color: #21211B;
    font-family: 'Graphik Arabic';
    font-size: 15px;
    padding: 10px 14px;
}

.newsletter-field textarea {
    min-height: 86px;
    resize: vertical;
}

.newsletter-field input::placeholder,
.newsletter-field textarea::placeholder,
.newsletter-field select {
    color: #949492;
}

.newsletter-field input:focus,
.newsletter-field select:focus,
.newsletter-field textarea:focus {
    outline: none;
    border-color: #B3524A;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.newsletter-phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #CCCCCA;
    background: #FFFCF5;
}

.newsletter-phone-field input {
    border: 0;
}

.newsletter-phone-field input:focus {
    box-shadow: none;
}

.newsletter-phone-flag {
    width: 26px;
    height: 18px;
    margin-inline-start: 14px;
    flex: 0 0 auto;
    background:
        linear-gradient(to right, #D71920 0 25%, transparent 25%),
        linear-gradient(to bottom, #00732F 0 33.33%, #FFFFFF 33.33% 66.66%, #000000 66.66%);
    border: 1px solid #E0E0DE;
}

.newsletter-file-upload {
    min-height: 88px;
    border: 1px solid #D6D2CA;
    background: #FFFCF5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    cursor: pointer;
    color: #21211B;
}

.newsletter-file-upload input {
    display: none;
}

.newsletter-file-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    color: #21211B;
}

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

.newsletter-file-upload strong,
.newsletter-file-upload small {
    display: block;
}

.newsletter-file-upload strong {
    font-size: 16px;
}

.newsletter-file-upload small {
    color: #787876;
    font-size: 13px;
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #787876;
    font-size: 13px;
}

.newsletter-privacy input {
    accent-color: #37573A;
}

.newsletter-privacy a {
    color: #E59D00;
}

.newsletter-contact-btn {
    background: #2E4730;
    color: #FFF6E3;
    border: 0;
    padding: 18px;
    font-family: 'Lyon Arabic Display';
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-contact-btn:hover {
    background: #233B25;
}

.newsletter-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.newsletter-info-card {
    background: #5254A8;
    color: #FFFFFF;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.newsletter-info-card h3 {
    font-family: 'Lyon Arabic Display';
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 22px;
}

.newsletter-info-card p {
    color: #FFF6E3;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.newsletter-contact-link {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #FFF6E3;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
}

.newsletter-contact-link a {
    color: #E59D00;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    white-space: nowrap;
}

.newsletter-contact-link img {
    width: 16px;
    height: 16px;
}

/* ===== Footer ===== */
.footer {
    background-color: #21211B;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 60px;
}

.footer-separator {
    width: 2px;
    height: 60px;
    background-color: #444;
}

.header-separator {
    width: 0.5px;
    height: 32px;
    background-color: #B0B0AE;
}

.footer-logo-uae {
    height: 60px;
}

.footer-description {
    font-size: 16px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 30px;
    max-width: 400px;
}

.icon-16 {
    width: 18px;
    height: 18px;
    opacity: 1;
    transform: rotate(0deg);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #3a3a3a;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 24px;
    font-family: 'Lyon Arabic Display';
    font-weight: 900;
    color: #E59D00;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #ccc;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 3px;
}

.contact-info-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {

    .hero-content,
    .newsletter-content {
        gap: 72px;
    }

    .hero-text h1 {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }

    .hero {
        padding: 60px 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-section {
        height: 450px;
    }

    .photo-frame {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-section,
    .what-we-do,
    .news-section,
    .shape-future-section,
    .newsletter-section,
    .footer {
        padding-left: 30px;
        padding-right: 30px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        transform: translateX(0);
    }

    .cat-illustration {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .search-box {
        width: 200px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section-title,
    .news-title,
    .about-title,
    .newsletter-title,
    .shape-title {
        font-size: 32px;
    }

    .news-cards-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .navbar {
        padding: 15px 20px;
    }

    .search-box {
        display: none;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .about-section,
    .what-we-do,
    .news-section,
    .shape-future-section,
    .newsletter-section {
        padding: 60px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer {
        padding: 60px 20px 30px;
    }
}

/* ===== Responsive Design ===== */

/* Tablets and Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 40px;
    }

    .hero {
        padding: 60px 40px;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text>p,
    .mission-text {
        font-size: 20px;
    }

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

    .photo-frame {
        width: 400px;
        height: 500px;
    }

    .about-section,
    .what-we-do,
    .news-section,
    .shape-future-section,
    .newsletter-section {
        padding: 80px 40px;
    }

    .about-title,
    .section-title,
    .news-title,
    .newsletter-title,
    .shape-title {
        font-size: 52px;
    }

    .about-text,
    .section-description,
    .shape-description,
    .newsletter-description {
        font-size: 20px;
    }

    .about-image {
        max-width: 500px;
    }

    .shape-image {
        height: 650px;
    }

    .footer {
        padding: 60px 40px 40px;
    }

    .footer-content {
        gap: 50px;
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }

    .hero {
        padding: 50px 30px;
        min-height: auto;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text>p,
    .mission-text,
    .mission-title {
        font-size: 18px;
    }

    .learn-btn {
        font-size: 20px;
        padding: 12px 30px;
    }

    .image-section {
        height: auto;
        margin: 40px 0;
    }

    .photo-frame {
        width: 100%;
        max-width: 450px;
        height: auto;
        margin: 0 auto;
    }

    .about-section {
        padding: 70px 30px;
    }

    .about-section .row {
        flex-direction: column;
    }

    .about-title {
        font-size: 44px;
    }

    .about-text {
        font-size: 18px;
    }

    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .wave-decoration {
        left: 5%;
        width: 120px;
    }

    .what-we-do {
        padding: 70px 30px;
    }

    .section-title {
        font-size: 44px;
    }

    .section-description {
        font-size: 18px;
    }

    .service-card-body {
        padding: 25px;
    }

    .service-title {
        font-size: 18px;
        min-height: auto;
    }

    .service-description {
        font-size: 13px;
        height: auto;
    }

    .apply-btn,
    .explore-btn {
        font-size: 20px;
        padding: 14px 40px;
    }

    .news-section {
        padding: 70px 30px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .news-title {
        font-size: 44px;
    }

    .nav-arrows {
        align-self: flex-end;
    }

    .news-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .newsroom-btn {
        font-size: 20px;
        padding: 14px 40px;
    }

    .shape-future-section {
        padding: 70px 30px;
    }

    .shape-future-section .row {
        flex-direction: column-reverse;
    }

    .shape-image {
        height: auto;
        max-width: 100%;
    }

    .shape-title {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .shape-description {
        font-size: 18px;
    }

    .shape-btn {
        font-size: 20px;
        padding: 12px 30px;
    }

    .airplane-icons1,
    .airplane-icons2 {
        display: none;
    }

    .newsletter-section {
        padding: 100px 30px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 50px;
        transform: translateX(0);
    }

    .newsletter-title {
        font-size: 44px;
    }

    .newsletter-description {
        font-size: 18px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .cat-illustration {
        text-align: center;
        order: -1;
    }

    .cat-illustration img {
        width: 200px;
    }

    .footer {
        padding: 50px 30px 30px;
    }

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

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .footer-heading {
        font-size: 20px;
    }
}

/* Mobile Landscape and Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .search-box {
        width: 200px;
        padding: 8px 15px !important;
        font-size: 12px;
    }

    .lang-btn {
        font-size: 16px;
        padding: 8px 16px;
    }

    .menu-btn {
        font-size: 24px;
        padding: 4px 12px;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text>p,
    .mission-text,
    .mission-title {
        font-size: 16px;
    }

    .learn-btn {
        font-size: 18px;
        padding: 10px 25px;
    }

    .photo-frame {
        max-width: 350px;
    }

    .dots-container {
        margin-top: 40px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text {
        font-size: 16px;
    }

    .what-we-do {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-card-footer {
        padding: 0 20px 20px;
    }

    .apply-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .explore-btn {
        font-size: 18px;
        padding: 12px 35px;
    }

    .news-section {
        padding: 60px 20px;
    }

    .news-title {
        font-size: 36px;
    }

    .arrow-btn {
        width: 45px;
        height: 45px;
    }

    .news-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-title {
        font-size: 17px;
    }

    .news-card-description {
        font-size: 13px;
    }

    .newsroom-btn {
        font-size: 18px;
        padding: 12px 35px;
    }

    .shape-future-section {
        padding: 60px 20px;
    }

    .shape-title {
        font-size: 36px;
    }

    .shape-description {
        font-size: 16px;
    }

    .shape-btn {
        font-size: 18px;
        padding: 10px 25px;
    }

    .newsletter-section {
        padding: 80px 20px;
    }

    .newsletter-title {
        font-size: 36px;
    }

    .newsletter-description {
        font-size: 16px;
    }

    .newsletter-input {
        padding: 12px 16px;
        font-size: 14px;
        width: 200px;
    }

    .newsletter-btn {
        padding: 12px 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-social {
        margin-top: 30px;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .navbar {
        padding: 12px 15px;
    }

    .footer-logo-img,
    .footer-logo-uae {
        height: 40px;
    }

    .search-box {
        display: none;
    }

    .lang-btn {
        font-size: 14px;
        padding: 6px 12px;
    }

    .menu-btn {
        font-size: 20px;
        padding: 3px 10px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-text>p,
    .mission-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .mission-title {
        font-size: 14px;
    }

    .mission-block {
        margin-bottom: 25px;
    }

    .learn-btn {
        font-size: 16px;
        padding: 10px 22px;
    }

    .photo-frame {
        max-width: 100%;
        height: auto;
    }

    .dots-container {
        margin-top: 30px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .wave-decoration {
        width: 100px;
        left: 3%;
    }

    .what-we-do {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .service-card {
        margin-bottom: 15px;
    }

    .service-card-body {
        padding: 18px;
    }

    .service-title {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .service-link {
        font-size: 12px;
    }

    .service-card-footer {
        padding: 0 18px 18px;
    }

    .apply-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .explore-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .news-section {
        padding: 50px 15px;
    }

    .news-header {
        margin-bottom: 30px;
        gap: 20px;
    }

    .news-title {
        font-size: 30px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .news-cards-container {
        gap: 18px;
        margin-bottom: 40px;
    }

    .news-card-tags {
        padding: 15px 15px 8px;
    }

    .news-tag {
        font-size: 9px;
        padding: 5px 12px;
    }

    .news-card-date {
        font-size: 11px;
        padding: 0 15px;
        margin-bottom: 10px;
    }

    .news-card-title {
        font-size: 15px;
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .news-card-description {
        font-size: 12px;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .news-card-link {
        font-size: 12px;
        padding: 0 15px 15px;
    }

    .news-card-image {
        height: 180px;
    }

    .newsroom-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .shape-future-section {
        padding: 50px 15px;
    }
    .shape-content {
        padding: 15px;
        margin-top: 30px;
    }

    .shape-title {
        font-size: 28px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .shape-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .shape-btn {
        font-size: 16px;
        padding: 10px 22px;
        margin-top: 10px;
    }

    .newsletter-section {
        padding: 60px 15px;
    }

    .newsletter-container{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .newsletter-content {
        gap: 35px;
    }

    .newsletter-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .newsletter-description {
        font-size: 14px;
    }

    .newsletter-form {
        margin-top: 30px;
        flex-direction: row;
        margin-bottom: 10px;
    }

    .newsletter-input {
        padding: 12px 16px;
        font-size: 13px;
    }

    .newsletter-btn {
        padding: 5px 25px;
        font-size: 13px;
        width: 150px;
    }

    .cat-illustration img {
        width: 150px;
    }

    .dotted-pattern-top,
    .dotted-pattern-bottom {
        height: 60px;
    }

    .footer {
        padding: 35px 15px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo {
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-separator,
    .header-separator {
        height: 45px;
    }

    .footer-logo-uae {
        height: 45px;
    }

    .footer-description {
        font-size: 14px;
        color: #FFF6E3;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 18px;
    }

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

    .footer-links a {
        font-size: 13px;
    }

    .contact-info-item {
        font-size: 12px;
        gap: 10px;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Devices (max-width: 400px) */
@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 22px;
    }

    .about-title,
    .section-title,
    .news-title,
    .newsletter-title,
    .shape-title {
        font-size: 26px;
    }

    .hero-text>p,
    .mission-text,
    .about-text,
    .section-description,
    .shape-description,
    .newsletter-description {
        font-size: 13px;
    }

    .photo-frame {
        border-radius: 0;
    }

    .service-card {
        border-radius: 0;
    }

    .news-card {
        border-radius: 0;
    }
}

@media (max-width: 992px) {
    .newsletter-section {
        padding: 56px 30px;
    }

    .newsletter-contact-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .newsletter-contact-form,
    .newsletter-contact-cards {
        order: initial;
    }

    .newsletter-contact-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 28px;
    }

    .newsletter-info-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 56px 20px;
    }

    .newsletter-contact-form {
        padding: 24px;
    }

    .newsletter-contact-title {
        font-size: 38px;
    }

    .newsletter-form-row,
    .newsletter-contact-link {
        flex-direction: column;
    }

    .newsletter-contact-cards {
        grid-template-columns: 1fr;
    }

    .newsletter-info-card {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 52px 15px;
    }

    .newsletter-contact-content {
        gap: 18px;
    }

    .newsletter-contact-cards {
        gap: 18px;
    }

    .newsletter-contact-form {
        padding: 18px;
    }

    .newsletter-contact-title,
    .newsletter-info-card h3 {
        font-size: 30px;
    }

    .newsletter-contact-intro,
    .newsletter-info-card p,
    .newsletter-contact-link {
        font-size: 15px;
    }

    .newsletter-contact-btn {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .newsletter-section {
        padding: 48px 12px;
    }

    .newsletter-contact-form,
    .newsletter-info-card {
        padding: 16px;
    }

    .newsletter-contact-title,
    .newsletter-info-card h3 {
        font-size: 26px;
    }

    .newsletter-field input,
    .newsletter-field select,
    .newsletter-field textarea {
        font-size: 13px;
        padding: 9px 10px;
    }

    .newsletter-file-upload {
        min-height: 76px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .what-we-do .services-grid {
        grid-template-columns: 1fr;
    }
}
