@font-face {
    font-family: 'Avenir-light';
    src: url('../fonts/avenir-arabic-light.otf') format('opentype');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Avenir-heavy';
    src: url('../fonts/Avenir-Black.woff2') format('woff2');
    font-display: swap;
    font-weight: 800;
}


:root {
    --font-main-light: 'Avenir-light';
    --font-main-heavy: 'Avenir-heavy';
}

.main-font {
    font-family: var(--font-main-light);
}

.main-font-bold {
    font-family: var(--font-main-heavy);
}

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

body {
    margin: 0;
    font-family: var(--font-main-light), sans-serif;
    font-size: 16px;
}


a {
    text-decoration: none;
    color: inherit;
}

.top-header {
    position: fixed;
    background-position: center;
    background: transparent;
    z-index: 999;
    width: 100%;
    padding-block: 16px;
    transition: 0.4s ease-in-out;
}

.top-header .logo img {
    transition: 0.4s ease-in-out;
}

.top-header .logo img:nth-of-type(2) {
    display: none;
}

/* overlay */
.header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* content */
.header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    color: var(--white-color);
    transition: 0.4s ease-in-out;
}

/* nav */
.header-content a {
    color: var(--white-color);
    text-decoration: none;
    opacity: .9;
    transition: 0.4s ease-in-out;
}

.header-content a:hover {
    opacity: 1;
}

/* button */
.contact-btn {
    background: var(--primary-color-dark);
    color: var(--white-color);
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-main-light), sans-serif;
}

.lang {
    font-weight: 600;
    cursor: pointer;
}

/* logo */
.top-logo {
    max-width: 72px;
    max-height: 42px;
    width: 100%;
    height: 100%;
}

.top-header.white-bg,
.top-header.active {
    background-color: white;
    box-shadow: 0 4px 20px #0000001A;
}

.top-header.white-bg .main-menu a,
.top-header.white-bg .lang,
.top-header.active .main-menu a,
.top-header.active .lang {
    color: var(--primary-color-dark);
}

.top-header.white-bg .logo img:nth-of-type(1),
.top-header.active .logo img:nth-of-type(1) {
    display: none;
}

.top-header.white-bg .logo img:nth-of-type(2),
.top-header.active .logo img:nth-of-type(2) {
    display: flex;
}

/* Hero Slider Styling */
.hero-slider {
    width: 100%;
    height: 80vh;
    position: relative;
    min-height: 500px;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make image fill slide */
.hero-slider .slide-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.5);
    min-height: 500px;
}

/* Keep text above image */
.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    max-width: 700px;
}



@media (max-width: 991px) {
    .hero-slider .hero-content {
        max-width: 550px;
    }
}



.hero-slider .swiper-button-prev,
.hero-slider .swiper-rtl .swiper-button-next,
.hero-slider .swiper-button-next,
.hero-slider .swiper-rtl .swiper-button-prev {
    left: 0;
    right: auto;
    border-radius: 35px;
    padding: 30px;
    background: rgb(250 252 244 / .2);
    backdrop-filter: blur(5px);
    transition: 0.3s ease-in-out;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-rtl .swiper-button-next:hover,
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-rtl .swiper-button-prev:hover {
    background: var(--primary-color);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-rtl .swiper-button-prev {
    position: absolute;
    transform: rotate(180deg);
    top: 92%;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-rtl .swiper-button-next {
    position: absolute;
    top: 0;
}

.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-rtl .swiper-button-next::after,
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-rtl .swiper-button-prev::after {
    display: none;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .7);
    height: 24px;
    border-radius: 0;
    width: 2px;
}

.control-swiper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    height: auto;
    padding-bottom: calc(var(--dots) * 40px);
}



.hero-slider .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--white-color);
}

.hero-slider .swiper-pagination-vertical.swiper-pagination-bullets,
.hero-slider .swiper-vertical>.swiper-pagination-bullets {
    left: var(--swiper-pagination-right, 29px);
    right: var(--swiper-pagination-left, auto);
}

/* Animated Text */
.animated-text {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms ease;
    will-change: opacity, transform;
}

.animated-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-group {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .control-swiper {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        height: auto;
        padding-bottom: calc(var(--dots) * 40px);
    }

    .hero-slider .swiper-pagination-bullets {
        display: flex;
        gap: 5px;
        left: 50% !important;
        transform: translateX(-50%);
    }

    .hero-slider .swiper-pagination-bullet {
        height: 2px;
        width: 24px;
        margin: 0 var(--swiper-pagination-bullet-vertical-gap, 6px);
    }
}

/* Swiper buttons color */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white-color);
}



.th-btn.style2 {
    background-color: var(--white-color)0;
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.th-btn.style2:hover {
    color: var(--black-color2);
    border: 1px solid var(--white-color);
}


.elementor a {
    box-shadow: none;
    text-decoration: none;
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-family: var(--body-font);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    border: none;
    font-size: 16px;
    font-weight: 400;
    padding: clamp(12px, 2.5vw, 18.8px) clamp(20px, 5vw, 35px);
    border-radius: 48px;
    -webkit-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    gap: 8px;
}

.th-btn:before {
    content: '';
    width: 0;
    height: 100%;
    border-radius: 30em;
    position: absolute;
    top: 0;
    right: -5%;
    background-color: var(--title-color);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.th-btn:hover:before,
.th-btn.active:before {
    width: 110%;
}

.th-btn.style2:before {
    background-color: var(--white-color);
}

.th-btn.style2:hover {
    color: var(--black-color2);
    border: 1px solid var(--white-color);
}


.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}


.local-experts-swiper {
    padding-bottom: 120px;
}

.local-experts-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.local-experts-card img {
    aspect-ratio: 1/1;
    border-radius: 24px;
    max-width: 312px;
}

.content-card-local-experts {
    max-width: 290px;
}

.travelers-swiper .swiper-pagination-bullet,
.local-experts-swiper .swiper-pagination-bullet {
    border: 1px solid #E1E4E5;
    background-color: transparent;
    width: 16px;
    height: 16px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.travelers-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,
.local-experts-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color-darker);
    border: 1px solid var(--primary-color-darker);
}

.destinations-card img {
    border-radius: 24px;
    aspect-ratio: 1/1;
}

.destinations-title {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - clamp(16px, 1.5vw, 24px));
}

.travelers-swiper {
    padding: 64px 0;
}


.global-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    border-radius: 24px;
}

.global-img:after {
    background: rgb(255 255 255 / .5);
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9
}

.global-img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease
}



.global-img:hover:after {
    height: 100%;
    opacity: 0;
    -webkit-transition: all .4s linear;
    transition: all .4s linear
}

.global-img:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3)
}

.travel-bg {
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .travel-bg {
        width: auto;
        height: 100%;
    }

    .header-title {
        font-family: var(--font-main-heavy);
    }
}

.travelers-swiper .swiper-slide {
    margin-top: 98px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.travelers-swiper .swiper-slide.swiper-slide-active {
    margin-top: 0 !important;
    margin-bottom: 80px !important;
}

/* styles.css */
.testimonial-card {
    position: relative;
    padding: 40px 40px 64px;
    border-radius: 24px;
    background: #edf1f5bf;
}

.stars {
    display: flex;
    gap: 10px;
}

.star {
    font-size: 22px;
    line-height: 1;
    color: #d7dde5;
    /* empty */
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.02));
}

.star.is-filled {
    color: #f5b044;
    /* filled */
}

/* top-right block (avatar + name) */
.top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-info .name {
    font-size: 32px;
    font-weight: 700;
    color: #0e1a2b;
    line-height: 1.1;
}

.user-info .role {
    margin-top: 6px;
    color: #6E7070;
}

.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
}

.quote {
    position: relative;
    margin: clamp(16px, 2vw, 32px) 0 0;
    font-size: 20px;
    line-height: 1.9;
    color: #0D0D0C;
}

/* bottom circle */
.badge {
    position: absolute;
    left: 50%;
    bottom: -41px;
    transform: translateX(-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #EDF1F5;
    color: var(--primary-color-dark);
    display: grid;
    place-items: center;
    border: 4px solid white;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.badge svg {
    stroke: var(--primary-color-dark);
}

.swiper-slide.swiper-slide-active .badge {
    background: var(--primary-color-dark);
}

.swiper-slide.swiper-slide-active .badge svg {
    stroke: var(--white-color);
}

/* responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 28px;
    }

    .user-info .name {
        font-size: 24px;
    }

    .quote {
        font-size: 20px;
    }

    .stars {
        left: 22px;
        top: 22px;
        gap: 8px;
    }
}

.site-footer {
    background: #003C71;
    color: var(--white-color);
    padding: 48px 0 16px;
}


.footer-top {
    padding-bottom: 48px;
}

.footer-col {
    min-width: 260px;
    flex: 1;
}

.footer-about {
    flex: 1.4;
}

.footer-logo {
    height: 34px;
    width: auto;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
}

.footer-text {
    opacity: .9;
    line-height: 1.9;
    margin: 0;
    max-width: 420px;
}

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

.footer-links a {
    color: var(--white-color);
    text-decoration: none;
    opacity: .9;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social .social-btn {
    width: 36px;
    height: 36px;
    box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, .75);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    opacity: .95;
    transition: 0.3s ease;
}

.footer-social .social-btn img {
    width: auto;
    height: auto;
    max-width: 18.8px;
    max-height: 18.8px;
}

.footer-social .social-btn:hover {
    box-shadow: inset 0 0 2px 30px rgba(255, 255, 255, .15);
}

.footer-bottom {
    padding-top: 16px;
    font-size: 14px;
    opacity: .95;
}

.footer-bottom-link {
    color: var(--white-color);
    text-decoration: none;
    opacity: .9;
    padding-left: 10px;
    border-left: 1px solid white;
}

.footer-bottom-link:last-child {
    border-left: 0;
}

.footer-bottom-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-about {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }

    .footer-text {
        max-width: 100%;
    }
}

.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li a {
    padding: 16px;
    font-size: 16px;
}

.main-menu li a:hover {
    background-color: #0016291A;
}

/* Mobile Navigation */
.burger-menu-lines {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}

.burger-menu-lines span {
    display: block;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease;
    width: 20px;
}

.burger-menu-lines.active span {
    background-color: var(--primary-color-darker);
}

.white-bg .burger-menu-lines {
    color: var(--primary-color-darker);
}

.main-menu .li:focus-visible,
.main-menu a:focus-visible {
    outline-width: 0;
}

@media (max-width: 992px) {
    .burger-menu-lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }

    .burger-menu-lines.active span:nth-child(2) {
        transform: translateY(-4.5px) rotate(45deg);
    }

    .burger-menu-lines.active span:first-child {
        transform: translateY(3px) rotate(-45deg);
    }

    .main-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        background: var(--white-color);
        z-index: 999;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        height: calc(100vh - 108px);
        padding: clamp(16px, 4vw, 40px);
        transition: 0.3s ease;
    }

    .navbar.active .main-menu {
        left: 0;
    }

    .main-menu li a {
        padding: 12px 0;
        font-size: 20px;
        display: block;
        position: relative;
        color: var(--primary-color-darker) !important;
    }

    .main-menu li a::after {
        content: "";
        position: absolute;
        border-top: 2px solid var(--primary-color-darker);
        border-left: 2px solid var(--primary-color-darker);
        width: 7px;
        height: 7px;
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(-45deg);

    }

    .navbar .container {
        max-width: none;
        padding: 0;
    }

    .navbar .logo {
        padding-right: clamp(16px, 4vw, 40px);
    }

    .navbar .action-nav {
        padding-left: clamp(16px, 4vw, 40px);
    }

    .top-header.white-bg .main-menu a,
    .top-header.white-bg .lang,
    .top-header.active .main-menu a,
    .top-header.active .lang {
        background-color: transparent;
    }


}

.topbarWithContent {
    height: 50vh;
}

.overlayout-topbar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(20 35 50 / 70%);
    box-shadow: 0 4px 30px rgba(20 35 50 / 70%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.content-topbar {
    position: absolute;
    bottom: clamp(32px, 4vw, 64px);
    left: 50%;
    transform: translateX(-50%);
}

.card-our-services {
    border-radius: 16px;
    width: calc(25% - 12px);
    overflow: hidden;
}

@media (max-width:992px) {
    .card-our-services {
        width: calc(50% - 16px);
    }
}

@media (max-width:768px) {
    .card-our-services {
        width: 100%;
    }
}

.content-ourservices {
    padding: 32px 25px 53px;
    background: #013C700D;
}

.btn-services {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}

.btn-services:hover {
    background: #013C700D;
}

.img-card {
    height: 274px;
}

.text-404 {
    color: #013C7099;
    font-size: 192px;
    font-family: var(--main-font-heavy);
    margin-bottom: 24px;
}


.image-box {
    border-radius: 16px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-box:nth-child(4n+1),
.image-box:nth-child(4n+4) {
    width: calc(66.6% - 8px);
    height: 300px;
    flex-grow: 1;
}

.image-box:nth-child(4n+2),
.image-box:nth-child(4n+3) {
    width: calc(33.3% - 8px);
    height: 300px;
    flex-grow: 1;
}


.left-section-service {
    max-width: 300px;
}

.help-section {
    padding: clamp(20px, 3vw, 48px) 16px;
    align-items: center;
    background: #013C700D;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 125px;
}

@media (max-width: 992px) {
    .left-section-service {
        max-width: none;
    }
}

/* Logo */
.help-logo {
    max-width: 140px;
    margin: 16px 0;
}

/* Button (your exact styles) */
.btn-contact {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
    margin: 0 auto;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.btn-contact img {
    width: 20px;
    height: 20px;
}

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

.btn-contact:hover img {
    filter: brightness(0) invert(1);
}

/* Apply styles only inside this component */
.flight-content h2,
.flight-content h3,
.flight-content h4,
.flight-content h5,
.flight-content h6 {
    font-size: clamp(32px, 3vw, 40px);
    font-family: var(--font-main-heavy);
    font-weight: 700;
    /* main-font-bold */
    color: #000;
    /* black */
    margin-bottom: 40px;
    line-height: 1.2;
}

.flight-content p,
.flight-content span,
.flight-content a {
    font-size: clamp(14px, 1vw, 18px);
    font-family: var(--font-main-light);
    font-weight: 700;
    /* main-font-bold */
    color: #000;
    /* black */
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Optional: keep links looking like text unless you want underline */
.flight-content a {
    text-decoration: none;
}

.flight-content a:hover {
    text-decoration: underline;
}

/* Optional: prevent extra spacing at the end */
.flight-content p:last-child,
.flight-content h2:last-child,
.flight-content h3:last-child,
.flight-content h4:last-child,
.flight-content h5:last-child,
.flight-content h6:last-child,
.flight-content span:last-child,
.flight-content a:last-child {
    margin-bottom: 0;
}


.contact-card {
    border: 1px solid #E1E4E5;
    border-radius: 8px;
    padding: 27px 32px;
    flex-grow: 1;
    min-width: 280px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content a {
    transition: opacity 0.3s ease;
}

.contact-content a:hover {
    opacity: 0.7;
}

.map-section {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 48px;
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
    }

    .contact-card {
        max-width: 100%;
    }
}


.travel {
    padding-block: 40px;
    /* like screenshot top/bottom */
}

.section-travel .travel:nth-of-type(even) {
    flex-direction: row-reverse;
}

.travel-img-wrap {
    flex: 0 0 46%;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
}

.travel-img {
    width: 100%;
    height: clamp(350px, 60vw, 525px);
    display: block;
    object-fit: cover;
}

.travel-content {
    flex: 1;
    min-width: 0;
}

.travel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #4b4b4b;
    line-height: 1.9;
}

/* keep same feel on tablet/mobile */
@media (max-width: 992px) {
    .travel-img-wrap {
        width: 100%;
        flex-basis: auto;
    }

    .section-travel .travel:nth-of-type(even) {
        flex-direction: column;
    }
}