* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 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;
}

body {
    font-family: 'Graphik Arabic';
    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;
}

/* 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';
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.menu:hover {
    color: #d4a03f;
}

/* القائمة الجانبية */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -450px;
    /* مخفية خارج الشاشة */
    width: 400px;
    height: 100vh;
    background-color: #3d5a4d;
    padding: 40px 30px;
    transition: right 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    text-align: left;
}

.sidebar-menu.active {
    left: 0;
    /* تظهر عند إضافة class active */
}

/* زر الإغلاق */
.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: left;
    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 {
    text-decoration: underline;
    text-decoration-color: #d4a03f;
    text-decoration-thickness: 3px;
}

/* أيقونات التواصل الاجتماعي */
.social-links {
    display: flex;
    justify-content: end;
    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;
}

.search-box::placeholder {
    color: #999;
}

.lang-btn {
    background-color: #FFE49B;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.lang-btn:hover {
    background-color: #FBC02D;
}

.menu-btn {
    background: #FFE49B;
    border: none;
    border-radius: 0;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    padding: 5px 15px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 80px 60px;
    background-color: #FFF8E7;
    min-height: 85vh;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    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-size: 24px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mission-block {
    margin-bottom: 35px;
}

.mission-title {
    font-weight: bold;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.mission-text {
    font-size: 24px;
    color: #444;
    line-height: 1.2;
}

.learn-btn {
    background-color: #37573A;
    color: #FFF6E3;
    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: cover;
}

@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;
}

/* Zigzag border */
.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: 64px;
    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 {
    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;
}

.section-title {
    font-family: 'Lyon Arabic Display';
    font-size: 64px;
    font-weight: 900;
    color: #21211B;
    margin-bottom: 20px;
}

.section-description {
    font-size: 24px;
    color: #5C5C5A;
    margin-bottom: 60px;
    max-width: 700px;
}

.service-card {
    background-color: #FFF6E3;
    border: 1px solid #f0ebe0;
    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;
    /* عدد الأسطر (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: 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: #FFF8E7;
    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;
    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 {
    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: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -3px;
}

.shape-description {
    font-size: 24px;
    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: 200px 60px;
    position: relative;
    overflow: hidden;
}

.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: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.newsletter-title {
    font-family: 'Lyon Arabic Display';
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
}

.newsletter-description {
    font-size: 24px;
    color: #FFF6E3;
    font-weight: 400;
    line-height: 1;
}

.newsletter-form {
    display: flex;
    margin-top: 40px;
    max-width: 60%;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #B3524A;
    background-color: #2F306B;
    color: #F5E8D4;
    width: 300px;
    font-size: 18px;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
    background-color: #B3524A;
    color: white;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #2f5538;
    box-shadow: 0 6px 20px rgba(61, 107, 71, 0.4);
}

.cat-illustration img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* ===== 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: 14px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 30px;
    max-width: 450px;
}

.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: 60px;
    }

    .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;
    }

    .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-reverse;
    }

    .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;
    }

    .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;
    }

    .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;
    }

    .newsletter-btn {
        padding: 12px 25px;
    }

    .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-image {
        border-radius: 0;
    }

    .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-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;
        width: 200px;
    }

    .newsletter-btn {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
    }

    .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;
    }
}
