/* =========================================================
   AEONIK
========================================================= */

@font-face {

    font-family: "Aeonik";

    src:
        url("assets/fonts/Aeonik-Regular.ttf") format("truetype");

    font-weight: 400;

    font-style: normal;

    font-display: swap;

}


@font-face {

    font-family: "Aeonik";

    src:
        url("assets/fonts/Aeonik-Medium.ttf") format("truetype");

    font-weight: 500;

    font-style: normal;

    font-display: swap;

}


@font-face {

    font-family: "Aeonik";

    src:
        url("assets/fonts/Aeonik-Bold.ttf") format("truetype");

    font-weight: 700;

    font-style: normal;

    font-display: swap;

}


@font-face {

    font-family: "Aeonik";

    src:
        url("assets/fonts/Aeonik-Black.ttf") format("truetype");

    font-weight: 900;

    font-style: normal;

    font-display: swap;

}



/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Aeonik",
        Arial,
        sans-serif;

    background: #ffffff;

    color: #171717;

    overflow-x: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


img {

    display: block;

    max-width: 100%;

}



/* =========================================================
   VARIABLES
========================================================= */

:root {

    --primary: #0cc4c9;

    --primary-dark: #08afb4;

    --black: #171717;

    --gray: #626262;

    --light-bg: #f5fafb;

    --white: #ffffff;

    --container: 1160px;

    --navbar-height: 76px;

}



/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.nav-container,
.hero-container,
.section-container {

    width:
        min(calc(100% - 72px),
            var(--container));

    margin-left: auto;

    margin-right: auto;

}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height:
        var(--navbar-height);

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.025);

}


.nav-container {

    position: relative;

    height: 100%;

}



/* =========================================================
   LOGO
========================================================= */

.logo {

    position: absolute;

    left: 0;

    top: 50%;

    transform:
        translateY(-50%);

    width: 84px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

}


.logo:hover {

    opacity: .85;

    transform:
        translateY(-50%) scale(1.02);

}


.logo img {

    width: 100%;

}



/* =========================================================
   DESKTOP NAV
========================================================= */

.nav-links {

    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    gap:
        clamp(22px,
            2.5vw,
            34px);

    white-space: nowrap;

}


.nav-link {

    position: relative;

    padding: 8px 0;

    color: #292929;

    font-size: 15px;

    font-weight: 500;

    transition:
        color .25s ease;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background:
        var(--primary);

    border-radius: 10px;

    transition:
        width .3s ease;

}


.nav-link:hover,
.nav-link.active {

    color:
        var(--primary);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}



/* =========================================================
   NAV RIGHT
========================================================= */

.nav-right {

    position: absolute;

    right: 0;

    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

}


.nav-cta {

    min-width: 165px;

    height: 42px;

    padding:
        0 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 11px;

    background:
        var(--primary);

    color:
        white;

    font-size: 15px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(12, 196, 201, .14);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;

}


.nav-cta:hover {

    background:
        var(--primary-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px rgba(12, 196, 201, .24);

}


.booking-icon {

    width: 17px;

    height: 17px;

}



/* =========================================================
   HAMBURGER
========================================================= */

.menu-toggle {

    display: none;

    width: 40px;

    height: 40px;

    padding: 7px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}


.menu-toggle span {

    width: 23px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--black);

    transition:
        transform .3s ease,
        opacity .3s ease;

}


.menu-toggle.open span:nth-child(1) {

    transform:
        translateY(7px) rotate(45deg);

}


.menu-toggle.open span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.open span:nth-child(3) {

    transform:
        translateY(-7px) rotate(-45deg);

}



/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    position: absolute;

    top:
        var(--navbar-height);

    left: 0;

    width: 100%;

    background:
        rgba(255, 255, 255, .98);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid #eeeeee;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .06);

}


.mobile-nav-links {

    display: flex;

    flex-direction: column;

    padding:
        8px 24px 18px;

}


.mobile-nav-link {

    padding: 15px 5px;

    border-bottom:
        1px solid #eeeeee;

    font-size: 16px;

    font-weight: 500;

    transition:
        color .25s ease,
        padding-left .25s ease;

}


.mobile-nav-link:last-child {

    border-bottom: 0;

}


.mobile-nav-link:hover,
.mobile-nav-link.active {

    color:
        var(--primary);

    padding-left: 10px;

}


.mobile-menu.open {

    display: block;

    animation:
        mobileMenuIn .25s ease both;

}


@keyframes mobileMenuIn {

    from {

        opacity: 0;

        transform:
            translateY(-10px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top:
        var(--navbar-height);

    overflow: hidden;

    display: flex;

    align-items: center;

}


.hero-container {

    min-height:
        calc(100vh - var(--navbar-height));

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap:
        clamp(25px,
            4vw,
            65px);

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero h1 {

    font-size:
        clamp(40px,
            4.2vw,
            56px);

    line-height: 1.08;

    letter-spacing:
        -1.8px;

    font-weight: 700;

}


.hero h1 span {

    color:
        var(--primary);

}


.hero-description {

    margin-top: 24px;

    color:
        var(--gray);

    font-size:
        clamp(16px,
            1.5vw,
            19px);

    line-height: 1.45;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 27px;

}


.primary-button,
.secondary-button {

    min-height: 49px;

    padding:
        0 25px;

    border-radius: 8px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    font-size: 15.5px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;

}


.primary-button {

    background:
        var(--primary);

    color:
        white;

    box-shadow:
        0 8px 18px rgba(12, 196, 201, .13);

}


.primary-button:hover {

    background:
        var(--primary-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 13px 25px rgba(12, 196, 201, .23);

}


.arrow-icon {

    width: 18px;

    height: 18px;

    transition:
        transform .3s ease;

}


.primary-button:hover .arrow-icon {

    transform:
        translateX(4px);

}


.secondary-button {

    border:
        1.5px solid var(--primary);

    color:
        var(--primary);

    background:
        white;

}


.secondary-button:hover {

    background:
        var(--primary);

    color:
        white;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 22px rgba(12, 196, 201, .16);

}



/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {

    display: flex;

    align-items: center;

    gap:
        clamp(20px,
            3vw,
            38px);

    margin-top: 35px;

}


.stat {

    display: flex;

    align-items: center;

    gap: 10px;

}


.stat-icon {

    width: 29px;

    height: 29px;

    color:
        var(--primary);

}


.stat-icon svg {

    width: 100%;

    height: 100%;

}


.stat-text {

    display: flex;

    flex-direction: column;

    gap: 2px;

}


.stat-text strong {

    font-size: 15px;

    font-weight: 700;

}


.stat-text span {

    font-size: 15px;

    color:
        #4e4e4e;

}



/* =========================================================
   HERO IMAGE
========================================================= */

.hero-visual {

    display: flex;

    justify-content: center;

    align-items: center;

}


.hero-image {

    width: 100%;

    max-width: 550px;

    height: auto;

}



/* =========================================================
   COMMON SECTION
========================================================= */

.section-container {

    position: relative;

}


.section-heading {

    text-align: center;

}


.section-label {

    display: block;

    margin-bottom: 6px;

    color:
        #ff5d5d;

    font-size: 10px;

    font-weight: 700;

}


.section-heading h2 {

    font-size:
        clamp(25px,
            2.6vw,
            34px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing:
        -.7px;

}


.section-heading h2 span {

    color:
        var(--primary);

}


.section-heading p {

    margin-top: 8px;

    color:
        #696969;

    font-size:
        clamp(12px,
            1.2vw,
            14px);

    line-height: 1.35;

}



/* =========================================================
   PROBLEMS SECTION
========================================================= */

.problems-section {

    background:
        var(--light-bg);

    padding:
        47px 0 48px;

}


.problems-grid {

    margin-top: 27px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        25px;

}


.problem-card {

    text-align: center;

    transition:
        transform .35s ease;

}


.problem-card:hover {

    transform:
        translateY(-6px);

}


.problem-icon {

    width: 46px;

    height: 46px;

    margin:
        0 auto 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        #b6e5e7;

    color:
        #079ca2;

    transition:
        transform .35s ease,
        background .35s ease;

}


.problem-icon svg {

    width: 25px;

    height: 25px;

}


.problem-card:hover .problem-icon {

    transform:
        scale(1.1) rotate(-3deg);

    background:
        #a5dfe2;

}


.problem-card h3 {

    min-height: 34px;

    font-size:
        clamp(11px,
            1.15vw,
            14px);

    line-height: 1.2;

    font-weight: 700;

}


.problem-card p {

    max-width: 215px;

    margin:
        7px auto 0;

    color:
        #707070;

    font-size:
        clamp(9px,
            .9vw,
            11px);

    line-height: 1.35;

}



/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {

    background:
        #ffffff;

    padding:
        48px 0 58px;

}


.services-grid {

    width: min(100%, 1000px);

    margin:
        28px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        25px;

}


.service-card {

    min-height: 220px;

    padding:
        22px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border:
        1px solid #dedede;

    border-radius: 5px;

    background:
        white;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, .03);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.service-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 13px 30px rgba(0, 0, 0, .08);

    border-color:
        #bdecef;

}


.service-card.featured {

    border:
        1.5px solid var(--primary);

}


.service-icon {

    width: 52px;

    height: 52px;

    margin-bottom: 15px;

    color:
        #079ca2;

    transition:
        transform .35s ease;

}


.service-icon svg {

    width: 100%;

    height: 100%;

}


.service-card:hover .service-icon {

    transform:
        translateY(-3px) scale(1.06);

}


.service-card h3 {

    font-size:
        clamp(12px,
            1.2vw,
            15px);

    line-height: 1.2;

    font-weight: 700;

}


.service-card p {

    max-width: 190px;

    margin-top: 12px;

    color:
        #686868;

    font-size:
        clamp(9px,
            .95vw,
            11px);

    line-height: 1.4;

}



/* =========================================================
   REVEAL MOTION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);

    transition-delay:
        var(--delay, 0s);

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}



/* =========================================================
   FUTURE SECTIONS
========================================================= */

.future-section {

    min-height: 20px;

}



/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-container,
    .hero-container,
    .section-container {

        width:
            calc(100% - 48px);

    }


    .hero h1 {

        font-size:
            clamp(38px,
                4.6vw,
                50px);

    }


    .hero-image {

        max-width:
            500px;

    }


    .problems-grid,
    .services-grid {

        gap: 18px;

    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    :root {

        --navbar-height: 70px;

    }


    .hero {

        padding-top:
            var(--navbar-height);

    }


    .hero-container {

        min-height:
            calc(100vh - var(--navbar-height));

        grid-template-columns:
            1fr;

        gap: 25px;

        padding-top: 45px;

        padding-bottom: 50px;

    }


    .hero-content {

        text-align: center;

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .hero h1 {

        font-size:
            clamp(40px,
                7vw,
                52px);

    }


    .hero-visual {

        order: 2;

    }


    .hero-image {

        max-width:
            520px;

    }


    .problems-section {

        padding:
            42px 0 44px;

    }


    .problems-grid {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 30px;

    }


    .problem-card p {

        max-width: 240px;

        font-size: 11px;

    }


    .services-section {

        padding:
            44px 0 50px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 700px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    :root {

        --navbar-height: 66px;

    }


    .nav-container,
    .hero-container,
    .section-container {

        width:
            calc(100% - 28px);

    }


    .nav-links {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .mobile-menu {

        top:
            var(--navbar-height);

    }


    .logo {

        width: 72px;

    }


    .nav-right {

        gap: 4px;

    }


    .nav-cta {

        min-width: auto;

        height: 39px;

        padding:
            0 11px;

        font-size: 12px;

        border-radius: 9px;

    }


    .booking-icon {

        width: 15px;

        height: 15px;

    }


    .hero-container {

        min-height:
            calc(100vh - var(--navbar-height));

        padding-top: 30px;

        padding-bottom: 40px;

        gap: 15px;

    }


    .hero h1 {

        font-size:
            clamp(32px,
                9.5vw,
                42px);

        line-height: 1.08;

        letter-spacing:
            -1px;

    }


    .hero-description {

        margin-top: 18px;

        font-size: 15px;

    }


    .hero-description br {

        display: none;

    }


    .hero-buttons {

        width: 100%;

        flex-direction: column;

        gap: 10px;

        margin-top: 24px;

    }


    .primary-button,
    .secondary-button {

        width:
            min(100%,
                290px);

        min-height: 47px;

    }


    .hero-stats {

        width: 100%;

        justify-content: center;

        gap: 20px;

        margin-top: 28px;

    }


    .stat-icon {

        width: 25px;

        height: 25px;

    }


    .stat-text strong,
    .stat-text span {

        font-size: 12px;

    }


    .hero-image {

        max-width:
            460px;

    }


    /* Problems */

    .problems-section {

        padding:
            42px 0 44px;

    }


    .section-label {

        font-size: 9px;

    }


    .section-heading h2 {

        font-size: 25px;

    }


    .section-heading p {

        font-size: 11px;

    }


    .desktop-break {

        display: none;

    }


    .problems-grid {

        margin-top: 27px;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            30px 15px;

    }


    .problem-icon {

        width: 43px;

        height: 43px;

        margin-bottom: 12px;

    }


    .problem-icon svg {

        width: 23px;

        height: 23px;

    }


    .problem-card h3 {

        font-size: 11px;

    }


    .problem-card p {

        max-width: 145px;

        margin-top: 6px;

        font-size: 9px;

    }


    /* Services */

    .services-section {

        padding:
            44px 0 50px;

    }


    .services-grid {

        margin-top: 25px;

        grid-template-columns:
            1fr;

        gap: 15px;

        max-width: 360px;

    }


    .service-card {

        min-height: 190px;

        padding:
            22px 20px;

    }


    .service-icon {

        width: 48px;

        height: 48px;

    }


    .service-card h3 {

        font-size: 13px;

    }


    .service-card p {

        max-width: 230px;

        font-size: 10px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .nav-container {

        width:
            calc(100% - 20px);

    }


    .logo {

        width: 68px;

    }


    .nav-cta {

        padding:
            0 9px;

    }


    .nav-cta span {

        font-size: 11px;

    }


    .menu-toggle {

        width: 36px;

        height: 36px;

    }


    .menu-toggle span {

        width: 21px;

    }


    .hero-container {

        width:
            calc(100% - 22px);

    }


    .hero h1 {

        font-size:
            clamp(30px,
                9.8vw,
                37px);

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-stats {

        gap: 12px;

    }


    .stat-icon {

        width: 23px;

        height: 23px;

    }


    .stat-text strong,
    .stat-text span {

        font-size: 11px;

    }


    .problem-card h3 {

        font-size: 10px;

    }


    .problem-card p {

        max-width: 135px;

        font-size: 8.5px;

    }

}



/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

    .nav-cta span {

        display: none;

    }


    .nav-cta {

        width: 38px;

        min-width: 38px;

        padding: 0;

    }


    .booking-icon {

        width: 17px;

        height: 17px;

    }


    .hero h1 {

        font-size: 29px;

    }


    .hero-stats {

        flex-direction: column;

        align-items: flex-start;

    }


    .problems-grid {

        gap:
            25px 10px;

    }


    .problem-card p {

        max-width: 125px;

    }

}

/* =========================================================
   OUR WORK SECTION
========================================================= */

.work-section {

    background: #f5fafb;

    padding:
        47px 0 55px;

}


.work-heading {

    margin-bottom: 0;

}



/* =========================================================
   WORK FILTERS
========================================================= */

.work-filters {

    width: fit-content;

    margin:
        23px auto 21px;

    padding: 2px;

    display: flex;

    align-items: center;

    gap: 2px;

    background: #ffffff;

    border:
        1px solid #e4eeee;

    border-radius: 30px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, .04);

}


.work-filter {

    min-width: 67px;

    height: 28px;

    padding:
        0 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border: 0;

    border-radius: 20px;

    background: transparent;

    color: #178e92;

    font-family: inherit;

    font-size: 10px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .2s ease;

}


.work-filter svg {

    width: 12px;

    height: 12px;

}


.work-filter:hover {

    background:
        #e8f8f9;

}


.work-filter:active {

    transform:
        scale(.96);

}


.work-filter.active {

    background:
        #079ca2;

    color:
        white;

    box-shadow:
        0 3px 8px rgba(7, 156, 162, .18);

}



/* =========================================================
   WORK GRID
========================================================= */

.work-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    width: 100%;

}



/* =========================================================
   WORK ITEM
========================================================= */

.work-item {

    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 4px;

    background:
        #dfeff0;

    cursor: pointer;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, .08);

    opacity: 0;

    transform:
        translateY(15px);

    animation:
        workItemIn .5s cubic-bezier(.22, 1, .36, 1) forwards;

}


@keyframes workItemIn {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



/* =========================================================
   WORK IMAGE / VIDEO
========================================================= */

.work-item img,
.work-item video {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .55s cubic-bezier(.22, 1, .36, 1),
        filter .4s ease;

}


.work-item:hover img,
.work-item:hover video {

    transform:
        scale(1.07);

    filter:
        brightness(.78);

}



/* =========================================================
   WORK OVERLAY
========================================================= */

.work-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 10px;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .42),
            rgba(0, 0, 0, 0) 45%);

    opacity: 0;

    transition:
        opacity .3s ease;

}


.work-item:hover .work-overlay {

    opacity: 1;

}


.work-type {

    padding:
        3px 7px;

    border-radius: 3px;

    background:
        #079ca2;

    color:
        white;

    font-size: 8px;

    font-weight: 700;

}


.work-view {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .95);

    color:
        #079ca2;

}


.work-view svg {

    width: 14px;

    height: 14px;

}



/* =========================================================
   VIDEO INDICATOR
========================================================= */

.work-video-indicator {

    position: absolute;

    top: 9px;

    right: 9px;

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, .55);

    color:
        white;

    backdrop-filter:
        blur(5px);

    z-index: 2;

}


.work-video-indicator svg {

    width: 12px;

    height: 12px;

}



/* =========================================================
   MORE BUTTON
========================================================= */

.work-more-container {

    display: flex;

    justify-content: center;

    margin-top: 28px;

}


.work-more-button {

    min-width: 160px;

    height: 40px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border:
        1.5px solid var(--primary);

    border-radius: 7px;

    background:
        white;

    color:
        var(--primary);

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.work-more-button:hover {

    background:
        var(--primary);

    color:
        white;

    transform:
        translateY(-3px);

    box-shadow:
        0 9px 20px rgba(12, 196, 201, .16);

}


.work-more-arrow {

    width: 15px;

    height: 15px;

    transition:
        transform .35s ease;

}


.work-more-button:hover .work-more-arrow {

    transform:
        translateY(3px);

}


.work-more-button.expanded .work-more-arrow {

    transform:
        rotate(180deg);

}


.work-more-button.expanded:hover .work-more-arrow {

    transform:
        rotate(180deg) translateY(3px);

}



/* =========================================================
   LIGHTBOX
========================================================= */

.work-lightbox {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(0, 0, 0, .86);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


.work-lightbox.open {

    opacity: 1;

    visibility: visible;

}


.lightbox-content {

    position: relative;

    width: auto;

    max-width:
        min(90vw,
            1000px);

    max-height:
        90vh;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        scale(.94);

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);

}


.work-lightbox.open .lightbox-content {

    transform:
        scale(1);

}


.lightbox-content img {

    display: block;

    max-width:
        90vw;

    max-height:
        88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 4px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .4);

}


.lightbox-content video {

    display: block;

    max-width:
        90vw;

    max-height:
        88vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 4px;

    background:
        #000;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .4);

}



/* =========================================================
   LIGHTBOX CLOSE
========================================================= */

.lightbox-close {

    position: fixed;

    top: 22px;

    right: 25px;

    z-index: 2010;

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .13);

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;

}


.lightbox-close:hover {

    background:
        var(--primary);

    transform:
        rotate(90deg);

}


.lightbox-close span {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 19px;

    height: 2px;

    background:
        white;

    border-radius: 5px;

}


.lightbox-close span:first-child {

    transform:
        translate(-50%, -50%) rotate(45deg);

}


.lightbox-close span:last-child {

    transform:
        translate(-50%, -50%) rotate(-45deg);

}



/* =========================================================
   LIGHTBOX BODY LOCK
========================================================= */

body.lightbox-open {

    overflow: hidden;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .work-section {

        padding:
            44px 0 50px;

    }


    .work-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .work-section {

        padding:
            42px 0 48px;

    }


    .work-filters {

        margin-top: 21px;

        margin-bottom: 20px;

    }


    .work-filter {

        height: 29px;

        min-width: 64px;

        font-size: 9px;

    }


    .work-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .work-overlay {

        opacity: 1;

        padding: 7px;

    }


    .work-type {

        font-size: 7px;

        padding:
            3px 6px;

    }


    .work-view {

        width: 23px;

        height: 23px;

    }


    .work-video-indicator {

        width: 24px;

        height: 24px;

        top: 7px;

        right: 7px;

    }


    .work-more-container {

        margin-top: 24px;

    }


    .work-more-button {

        height: 39px;

        font-size: 11px;

    }


    .work-lightbox {

        padding: 20px;

    }


    .lightbox-content img,
    .lightbox-content video {

        max-width:
            94vw;

        max-height:
            84vh;

    }


    .lightbox-close {

        top: 13px;

        right: 13px;

        width: 38px;

        height: 38px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .work-grid {

        gap: 9px;

    }


    .work-filter {

        min-width: 58px;

        padding:
            0 8px;

    }


    .work-filter svg {

        width: 11px;

        height: 11px;

    }

}

/* =========================================================
   CASE STUDIES
========================================================= */

.case-studies-section {

    background: #ffffff;

    padding:
        47px 0 55px;

}



/* =========================================================
   HEADING
========================================================= */

.case-studies-heading {

    margin-bottom: 0;

}



/* =========================================================
   CASE STUDIES GRID
========================================================= */

.case-studies-grid {

    width:
        min(100%,
            1000px);

    margin:
        27px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}



/* =========================================================
   CASE STUDY CARD
========================================================= */

.case-study-card {

    min-height: 175px;

    padding:
        16px 18px 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        #ffffff;

    border:
        1px solid #dedede;

    border-radius: 6px;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, .035);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}



/* =========================================================
   SIMPLE HOVER
========================================================= */

.case-study-card:hover {

    transform:
        translateY(-4px);

    border-color:
        #c6ebed;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, .06);

}



/* =========================================================
   LOGO
========================================================= */

.case-study-logo {

    width: 100%;

    height: 47px;

    margin-bottom: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.case-study-logo img {

    max-width: 125px;

    max-height: 43px;

    width: auto;

    height: auto;

    object-fit: contain;

    transition:
        transform .3s ease;

}



/* Small logo movement on hover */

.case-study-card:hover .case-study-logo img {

    transform:
        scale(1.03);

}



/* =========================================================
   TITLE
========================================================= */

.case-study-card h3 {

    margin-top: 2px;

    font-size:
        clamp(11px,
            1.15vw,
            14px);

    line-height: 1.2;

    font-weight: 700;

}



/* =========================================================
   DESCRIPTION
========================================================= */

.case-study-card p {

    max-width: 250px;

    margin-top: 7px;

    color:
        #626262;

    font-size:
        clamp(9px,
            .9vw,
            11px);

    line-height: 1.35;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .case-studies-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;

    }


    .case-study-card {

        padding:
            15px 12px 16px;

    }


    .case-study-logo img {

        max-width: 110px;

        max-height: 40px;

    }


    .case-study-card p {

        max-width: 200px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .case-studies-section {

        padding:
            42px 0 48px;

    }


    .case-studies-grid {

        grid-template-columns:
            1fr;

        max-width: 360px;

        gap: 14px;

        margin-top: 25px;

    }


    .case-study-card {

        min-height: 175px;

        padding:
            18px 20px;

    }


    .case-study-logo {

        height: 50px;

    }


    .case-study-logo img {

        max-width: 135px;

        max-height: 45px;

    }


    .case-study-card h3 {

        font-size: 13px;

    }


    .case-study-card p {

        max-width: 270px;

        font-size: 10px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .case-studies-grid {

        max-width: 100%;

    }


    .case-study-card {

        min-height: 170px;

    }

}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {

    background:
        #f5fafb;

    padding:
        47px 0 48px;

}


/* =========================================================
   TESTIMONIALS GRID
========================================================= */

.testimonials-grid {

    width:
        min(100%,
            1000px);

    margin:
        27px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        15px;

}



/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {

    min-height:
        120px;

    padding:
        12px 18px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background:
        #ffffff;

    border:
        1px solid #dedede;

    border-radius:
        6px;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, .035);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.testimonial-card:hover {

    transform:
        translateY(-4px);

    border-color:
        #c4e9eb;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .06);

}



/* =========================================================
   QUOTE ICON
========================================================= */

.quote-icon {

    width:
        30px;

    height:
        30px;

    margin-bottom:
        7px;

    color:
        #079ca2;

}


.quote-icon svg {

    width:
        100%;

    height:
        100%;

}



/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-card p {

    max-width:
        275px;

    color:
        #505050;

    font-size:
        clamp(9px,
            .9vw,
            11px);

    line-height:
        1.35;

}



/* =========================================================
   CTA
========================================================= */

.cta-section {

    position:
        relative;

    min-height:
        139px;

    padding:
        72px 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:
        #0c9fa5 url("assets/cta-background.png") center center / cover no-repeat;

    color:
        #ffffff;

}



/* =========================================================
   CTA OVERLAY
========================================================= */

.cta-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(4, 139, 145, .48);

    z-index:
        0;

}



/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {

    position:
        relative;

    z-index:
        1;

    text-align:
        center;

}


.cta-content h2 {

    font-size:
        clamp(21px,
            2.3vw,
            29px);

    line-height:
        1.15;

    font-weight:
        700;

}


.cta-content p {

    margin-top:
        8px;

    color:
        rgba(255, 255, 255, .9);

    font-size:
        10px;

    line-height:
        1.35;

}



/* =========================================================
   CTA BUTTON
========================================================= */

.cta-button {

    margin-top:
        14px;

    min-width:
        170px;

    height:
        38px;

    padding:
        0 16px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        6px;

    border-radius:
        6px;

    background:
        #ff5b4d;

    color:
        #ffffff;

    font-size:
        11px;

    font-weight:
        700;

    box-shadow:
        0 7px 18px rgba(255, 91, 77, .18);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


.cta-button svg {

    width:
        14px;

    height:
        14px;

    transition:
        transform .3s ease;

}


.cta-button:hover {

    background:
        #f34c3e;

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 23px rgba(255, 91, 77, .3);

}


.cta-button:hover svg {

    transform:
        translateX(3px);

}



/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #ffffff;

    padding:
        42px 0 18px;

}


.footer-container {

    width:
        min(calc(100% - 40px),
            700px);

    margin:
        0 auto;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    text-align:
        center;

}



/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {

    width:
        105px;

    display:
        block;

    transition:
        opacity .25s ease,
        transform .25s ease;

}


.footer-logo:hover {

    opacity:
        .82;

    transform:
        scale(1.03);

}


.footer-logo img {

    width:
        100%;

    height:
        auto;

}



/* =========================================================
   FOOTER DESCRIPTION
========================================================= */

.footer-description {

    max-width:
        470px;

    margin-top:
        15px;

    color:
        #686868;

    font-size:
        12px;

    line-height:
        1.5;

}



/* =========================================================
   SOCIAL LINKS
========================================================= */

.social-links {

    margin-top:
        20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        11px;

}


.social-link {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid #dceced;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        #079ca2;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.social-link svg {

    width:
        17px;

    height:
        17px;

}


.social-link:hover {

    transform:
        translateY(-4px);

    background:
        #079ca2;

    border-color:
        #079ca2;

    color:
        #ffffff;

    box-shadow:
        0 7px 16px rgba(7, 156, 162, .18);

}



/* =========================================================
   FOOTER DIVIDER
========================================================= */

.footer-divider {

    width:
        100%;

    height:
        1px;

    margin-top:
        28px;

    background:
        #e7e7e7;

}



/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {

    margin-top:
        13px;

    color:
        #888888;

    font-size:
        10px;

    line-height:
        1.4;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .testimonials-grid {

        gap:
            12px;

    }


    .testimonial-card {

        padding:
            12px 13px 15px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .testimonials-section {

        padding:
            42px 0 44px;

    }


    .testimonials-grid {

        grid-template-columns:
            1fr;

        width:
            min(100%,
                360px);

        gap:
            12px;

        margin-top:
            25px;

    }


    .testimonial-card {

        min-height:
            125px;

        padding:
            14px 20px 16px;

    }


    .testimonial-card p {

        max-width:
            290px;

        font-size:
            10px;

    }


    .cta-section {

        min-height:
            165px;

        padding:
            72px 18px;

    }


    .cta-content h2 {

        font-size:
            23px;

    }


    .cta-content p {

        font-size:
            10px;

    }


    .cta-content p br {

        display:
            none;

    }


    .footer {

        padding:
            38px 0 17px;

    }


    .footer-description {

        max-width:
            340px;

        font-size:
            11px;

    }


    .social-links {

        margin-top:
            18px;

        gap:
            9px;

    }


    .social-link {

        width:
            33px;

        height:
            33px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-description {

        max-width:
            300px;

    }


    .cta-section {

        min-height:
            170px;

    }

}

/* =========================================================
   ARABIC FONT
========================================================= */

@font-face {
    font-family: "Madani Arabic";
    src: url("assets/fonts/alfont_com_Madani-Arabic-Regular-1.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Madani Arabic";
    src: url("assets/fonts/alfont_com_Madani-Arabic-Medium-1.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Madani Arabic";
    src: url("assets/fonts/alfont_com_Madani-Arabic-Bold-2.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Madani Arabic";
    src: url("assets/fonts/alfont_com_Madani-Arabic-Extra-Bold-1.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Madani Arabic";
    src: url("assets/fonts/alfont_com_Madani-Arabic-Black-1.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   LANGUAGE SWITCH
========================================================= */

.language-switch {
    height: 34px;
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 1px;
    border: 1px solid #e1eeee;
    border-radius: 20px;
    background: #f7fbfb;
}

.language-option {
    height: 26px;
    padding: 0 7px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    color: #8a8f90;
    font-family: "Aeonik", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}

.language-option.active {
    background: #ffffff;
    color: #079ca2;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .06);
}

.language-option:hover {
    color: #079ca2;
}

.language-option:active {
    transform: scale(.96);
}

.language-flag {
    font-size: 13px;
    line-height: 1;
}

.language-divider {
    width: 1px;
    height: 15px;
    background: #dce9e9;
}

/* =========================================================
   RTL MODE
========================================================= */

html[dir="rtl"] body,
body.rtl-mode {
    font-family: "Madani Arabic", Arial, sans-serif;
    direction: rtl;
}

html[dir="rtl"] .logo {
    left: auto;
    right: 0;
}

html[dir="rtl"] .nav-right {
    right: auto;
    left: 0;
}

html[dir="rtl"] .nav-links {
    direction: rtl;
}

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .hero-container {
    direction: rtl;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .hero-buttons {
    flex-direction: row;
}

html[dir="rtl"] .hero-stats {
    flex-direction: row;
}

html[dir="rtl"] .stat-text {
    text-align: right;
}

html[dir="rtl"] .arrow-icon {
    transform: scaleX(-1);
}

html[dir="rtl"] .primary-button:hover .arrow-icon {
    transform: scaleX(-1) translateX(4px);
}

html[dir="rtl"] .mobile-nav-link:hover,
html[dir="rtl"] .mobile-nav-link.active {
    padding-left: 5px;
    padding-right: 10px;
}

html[dir="rtl"] .work-filter,
html[dir="rtl"] .work-more-button,
html[dir="rtl"] .cta-button {
    direction: rtl;
}

html[dir="rtl"] .work-more-arrow {
    transform: rotate(180deg);
}

html[dir="rtl"] .work-more-button:hover .work-more-arrow {
    transform: rotate(180deg) translateY(3px);
}

html[dir="rtl"] .work-more-button.expanded .work-more-arrow {
    transform: rotate(0deg);
}

html[dir="rtl"] .work-more-button.expanded:hover .work-more-arrow {
    transform: rotate(0deg) translateY(3px);
}

html[dir="rtl"] .case-study-card,
html[dir="rtl"] .testimonial-card,
html[dir="rtl"] .service-card,
html[dir="rtl"] .problem-card {
    direction: rtl;
}

html[dir="rtl"] .cta-button svg {
    transform: scaleX(-1);
}

html[dir="rtl"] .cta-button:hover svg {
    transform: scaleX(-1) translateX(3px);
}

html[dir="rtl"] .mobile-nav-links {
    text-align: right;
}

/* =========================================================
   RTL RESPONSIVE
========================================================= */

@media (max-width: 700px) {
    html[dir="rtl"] .hero-content {
        text-align: center;
    }

    html[dir="rtl"] .hero-buttons {
        flex-direction: column;
    }

    html[dir="rtl"] .hero-stats {
        flex-direction: row;
    }

    html[dir="rtl"] .stat-text {
        text-align: right;
    }

    .language-switch {
        height: 31px;
        padding: 2px;
    }

    .language-option {
        height: 25px;
        padding: 0 5px;
        font-size: 8px;
        gap: 3px;
    }

    .language-flag {
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .language-switch {
        display: none;
    }
}


/* =========================================================
   MINIMAL LANGUAGE TOGGLE
   EN = thumb on the left
   AR = thumb on the right
========================================================= */

.language-toggle {
    position: relative;
    width: 64px;
    height: 34px;
    padding: 0;
    border: 1px solid #dceced;
    border-radius: 20px;
    background: #f4f9f9;
    cursor: pointer;
    flex: 0 0 auto;
    direction: ltr;
    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.language-toggle:hover {
    border-color: #bfe4e6;
    background: #eef8f8;
    box-shadow: 0 4px 12px rgba(7, 156, 162, .08);
}

.language-track {
    position: absolute;
    inset: 0;
    display: block;
}

.language-toggle .language-flag {
    display: none;
}

.language-thumb {

    position: absolute;

    top: 3px;

    left: 3px;

    width: 26px;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, .12);

    overflow: hidden;

    transform: translateX(0);

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),

        box-shadow .25s ease;

}


.language-thumb img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

}


.language-toggle.is-ar .language-thumb {

    transform:
        translateX(30px);

}


.language-toggle:active .language-thumb {

    box-shadow:
        0 2px 4px rgba(0, 0, 0, .12);

}

/* Desktop switch */
.nav-right>.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile switch lives below the mobile navigation links */
.mobile-language-toggle {
    display: none;
    margin: 15px auto 4px;
}

@media (max-width: 700px) {
    .nav-right>.language-toggle {
        display: none;
    }

    .mobile-language-toggle {
        display: block;
    }

    .mobile-nav-links {
        align-items: center;
    }

    .mobile-language-toggle {
        margin-top: 16px;
        margin-bottom: 4px;
    }
}

@media (max-width: 430px) {

    .language-toggle {

        width: 62px;

        height: 32px;

    }


    .language-thumb {

        top: 2px;

        left: 2px;

        width: 26px;

        height: 26px;

    }


    .language-toggle.is-ar .language-thumb {

        transform:
            translateX(28px);

    }

}