* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --secondary: #1CC0F7;
    --secondary-3: #111755;
    --BG-Gradient: linear-gradient(132deg, rgba(17, 23, 85, 0.06) 0%, rgba(28, 192, 247, 0.06) 96.87%);
    --transition: all 0.45s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
}

.btn {
    display: inline-flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(2px);
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    /* 168.75% */
    text-transform: uppercase;
    transition: var(--transition);
}

.btn:hover {
    background: var(--secondary, #1CC0F7);
}

.btn-primary {
    background: #1CC0F7;
}

.btn-primary:hover {
    background: rgba(28, 192, 247, 0.24);
    color: #111755;
}

.btn-secondary {
    background: rgba(28, 192, 247, 0.24);
    color: var(--secondary-3, #111755);
}

.btn-secondary:hover {
    background: #1CC0F7;
    color: #FFF;
}

/* Navigation */
.header-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 235px 1fr;
    align-items: center;
    gap: 40px;
    position: absolute;
    z-index: 99;
    padding: 18px 30px 18px 50px;
}

.navbar ul {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.navbar {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 100%;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.navbar li a {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 168.75% */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.navbar-right {
    justify-content: flex-end;
}

/* ==========================
    Mobile Navigation
========================== */

.menu-toggle {
    display: none;
    width: 24px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: transform .35s ease, opacity .25s ease;
    transform-origin: center;
}

body.menu-open .menu-toggle {
    justify-content: center;
    gap: 0;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(2px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 23, 85, .45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background: var(--secondary-3);
    padding: 30px;
    overflow-y: auto;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.mobile-menu ul {
    list-style: none;
    padding: 70px 0 30px;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.mobile-menu li:last-child {
    border: none;
}

.mobile-menu a:not(.btn):not(.social-icons a) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 168.75% */
    text-transform: uppercase;
}

.mobile-menu img {
    width: 18px;
}

.mobile-menu .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.menu-open .mobile-menu {
    right: 0;
}

.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.mobile-burger-menu {
    display: none;
}

@media(max-width:1200px) {
    .logo {
        max-width: 200px;
        position: relative;
        z-index: 9999;
    }

    .mobile-burger-menu {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-burger-menu>a {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        color: #FFF;
        font-family: "Noto Sans Arabic";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 27px;
        /* 150% */
    }

    .mobile-burger-menu>a img {
        width: 21px;
        height: 21px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

}

@media(min-width:1201px) {

    .mobile-menu,
    .menu-overlay,
    .menu-toggle {
        display: none;
    }

}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    padding: 130px 40px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    pointer-events: none;

    background: linear-gradient(to top,
            rgba(28, 192, 247, 0.45) 0%,
            rgba(28, 192, 247, 0.25) 40%,
            rgba(28, 192, 247, 0.10) 70%,
            rgba(28, 192, 247, 0) 100%);
    z-index: 9;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    /* 129.167% */
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content p {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 35px;
    max-width: 610px;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

/* Text Slider */
.text-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 15px;
    background: var(--BG-Gradient, linear-gradient(132deg, rgba(17, 23, 85, 0.06) 0%, rgba(28, 192, 247, 0.06) 96.87%));
}

.text-slider-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.text-slider {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 32px;
}

.text-slider span {
    color: var(--secondary-3, #111755);
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.text-slider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-slider-icon img {
    display: block;
    width: 16px;
    height: auto;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 70px 50px;
}

.stat-card {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 34px 37px;
    border-radius: 50px;
    border-top: 10px solid #111755;
    background: var(--BG-Gradient, linear-gradient(132deg, rgba(17, 23, 85, 0.06) 0%, rgba(28, 192, 247, 0.06) 96.87%));
}

.stat-number {
    color: var(--secondary-3, #111755);
    font-family: "Noto Sans Arabic";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 80.556% */
    text-transform: uppercase;
}

.stat-text {
    color: var(--secondary-3, #111755);
    font-family: "Noto Sans Arabic";
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 29px;
    /* 103.571% */
    text-transform: uppercase;
}

.stat-label {
    color: var(--secondary-3, #111755);
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 181.25% */
    text-transform: uppercase;
    margin: 7px 0 24px;
    position: relative;
}

.stat-label::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--secondary, #1CC0F7);
    margin: 23px auto 0;
}

.stat-card p {
    color: var(--secondary-3, #111755);
    text-align: center;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 252px;
}

/* Section Labels */
.section-label {
    color: var(--secondary, #1CC0F7);
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    /* 181.25% */
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    /* 129.167% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* About Section */
.about-section {
    width: 100%;
    gap: 80px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9F9F9;
}

.about-section>div {
    width: 100%;
    max-width: 630px;
}

.about-content .section-title {
    margin-bottom: 16px;
}

.about-content p {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.about-content p+p {
    margin-top: 24px;
}

.about-content .btn {
    margin-top: 36px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Procedures */
.procedures-section {
    width: 100%;
    padding: 70px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedures-section p {
    color: #111755;
    text-align: center;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 906px;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.procedure-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.procedure-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: linear-gradient(to top,
            rgba(17, 23, 85, 0.75) 0%,
            rgba(17, 23, 85, 0.45) 45%,
            rgba(17, 23, 85, 0.25) 75%,
            rgba(17, 23, 85, 0) 100%);
    transition: var(--transition);
}

.procedure-card:hover::after {
    top: 0;
}

.procedure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.procedure-card:hover img {
    transform: scale(1.08);
}

.procedure-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(17, 23, 85, 0.30);
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    transition: var(--transition);
}

.procedure-name {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans Arabic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    margin-bottom: 16px;
}

.procedure-overlay p {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 307px;
    max-height: 0;
    transition: var(--transition);
    visibility: hidden;
    opacity: 0;
}

.procedure-card:hover p {
    max-height: 200px;
    visibility: visible;
    opacity: 1;
}

/* Gallery */
.gallery-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 70px 50px;
    background: #F9F9F9;
}

.gallery-section .section-title {
    text-align: center;
    margin-bottom: 36px;
}

.gallery-slider .splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
}

.gallery-arrows .splide__arrow {
    width: auto;
    height: auto;
    background: transparent;
}

.gallery-arrows .splide__arrow svg {
    width: 30px;
    height: auto;
}

.gallery-arrows .splide__arrow--next {
    right: -3em;
}

.gallery-arrows .splide__arrow--prev {
    left: -3em;
}

.gallery-section .btn {
    margin: 36px auto 0;
}

/* Insights */
.insights-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
}

.insights-section .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.insights-section .section-label {
    text-align: center;
}



.video-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.video-list::after {
    content: '';
    width: 100%;
    height: 110px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.75) 35%,
            rgba(255, 255, 255, 0.5) 70%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 9;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    background: #F9F9F9;
    cursor: pointer;
    transition: var(--transition);
}

.video-item img {
    width: 207px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.video-info {
    flex: 1;
    padding: 24px 20px 16px 0;
}

.video-info div {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
    margin-bottom: 12px;
    max-width: 372px;
}

.video-info span {
    color: rgba(17, 23, 85, 0.50);
    font-family: "Noto Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
    display: block;
}

.video-item.active {
    background: #E4F7FE;
}

.video-player {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 7px solid #1CC0F7;
    background: #F9F9F9;
}

.video-player img,
.video-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-poster {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: auto;
    border: none;
    cursor: pointer;
    background: transparent;
}

.play-btn img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Testimonials */
.testimonials-section {
    padding: 70px;
    text-align: center;
    background: #E4F7FE;
}

.testimonials-section .section-title {
    margin-bottom: 36px;
}

.testimonial-card {
    width: 100%;
    border-radius: 30px;
    background: #FFF;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars-wrapper img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.testimonial-card p {
    color: #111755;
    text-align: center;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    margin: 24px 0;
}

.testimonial-card>img {
    width: 60px;
    height: 60px;
    border-radius: 99px;
}

.author-name {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 125% */
    letter-spacing: 0.32px;
    margin: 12px 0 4px;
}

.author-time {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    /* 125% */
}

.testimonial-arrows {
    display: none;
}

/* Blogs */
.blogs-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blogs-section .section-title {
    margin-bottom: 36px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background:
        radial-gradient(ellipse at bottom,
            rgba(28, 192, 247, .35) 0%,
            rgba(28, 192, 247, .22) 35%,
            rgba(28, 192, 247, 0) 75%),
        linear-gradient(to top,
            rgba(28, 192, 247, .28) 0%,
            rgba(28, 192, 247, .18) 45%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.blog-card-img>span {
    position: absolute;
    bottom: 14px;
    left: 28px;
    display: block;
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 171.429% */
    text-transform: uppercase;
    z-index: 9;
}

.blog-content {
    padding-top: 20px;
}

.blog-title {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
    margin-bottom: 12px;
}

.blog-content p {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 20px;
}

.blog-date {
    color: rgba(17, 23, 85, 0.50);
    font-family: "Noto Sans Arabic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 171.429% */
}

/* Specializing */
.specializing-section {
    width: 100%;
    padding: 113px 50px;
    background: linear-gradient(139deg, #111755 0%, #1CC0F7 137.98%);
    position: relative;
    overflow: hidden;
}

.specializing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/specializing-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    pointer-events: none;
}

.specializing-section .section-title {
    color: #fff;
    max-width: 694px;
}

.specializing-section p {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 652px;
    margin: 16px 0 50px;
}

/* Social Wall */
.social-wall {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-wall .section-title {
    margin-bottom: 36px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.social-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.social-item:hover img {
    transform: scale(1.1);
}

.social-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 192, 247, 0.82);
    background-image: url('../images/insta-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 98px;
    opacity: 0;
    transition: var(--transition);
}

.social-item:hover::after {
    opacity: 1;
}

/* Contact */
.contact-section {
    padding: 70px 50px;
    background: #E4F7FE;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    width: 100%;
    max-width: 573px;
}

.contact-info p {
    color: #111755;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 510px;
    margin-top: 14px;
}

.contact-form {
    width: 100%;
}

.contact-form form {
    width: 100%;
    padding: 50px 50px 36px;
    border-radius: 30px;
    background: rgba(28, 192, 247, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 40px;
    background: transparent;
    outline: none;
    border-radius: 39px;
    border: 1px solid rgba(17, 23, 85, 0.50);
    color: rgba(17, 23, 85, 0.50);
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 23, 85, 0.50);
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(30, 91, 181, 0.08);
}

.form-group textarea {
    resize: none;
    min-height: 110px;
    border-radius: 20px;
}

.contact-form form .btn {
    margin-top: 14px;
    cursor: pointer;
}

/* Map */
.map-section {
    width: 100%;
    line-height: 0;
    padding: 70px 50px 0;
    margin-bottom: -100px;
}

.map-section iframe {
    width: 100%;
    border-radius: 20px;
}

/* Footer */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 174px 50px 44px;
    background: linear-gradient(180deg, #111755 0%, #1898EA 184.08%);
}

.footer-grid {
    max-width: 1273px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto 60px;
}

.footer-col {
    padding-left: 20px;
    border-left: 2px solid var(--secondary, #1CC0F7);
}

.footer-col:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-col span {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.footer-col span:nth-of-type(2) {
    margin-top: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col p {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    display: block;
}

.footer-col p {
    max-width: 201px;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24.5px;
    background: #FFF;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons a img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.footer-logo img {
    width: 275px;
    height: auto;
    object-fit: cover;
}

.footer-bottom {
    width: 100%;
    max-width: 647px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(249, 249, 249, 0.35);
}

.footer-bottom p {
    color: #FFF;
    font-family: "Noto Sans Arabic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-align: center;
}

.footer-bottom p+p {
    margin-top: 10px;
}