:root {
    --bg-dark: #071422;
    --primary-color: #f3957a;
    --primary-hover: #e07b62;
    --text-light: #ffffff;
    --text-muted: #ffffff99;
    --card-bg: #071422;
    --font-primary: "Poppins-cust", sans-serif;
    --transition-smooth: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);

    background-color: transparent;
}

.header.scrolled {
    background-color: #ffffff1f;
    backdrop-filter: blur(80px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--text-light);
    font-size: 24px;
    letter-spacing: 1px;
}

.header-container .logo img {
    width: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-profile:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-switch {

    font-size: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 745px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 17, 24, 0.8),
            rgba(10, 17, 24, 0.5),
            rgba(10, 17, 24, 0.9));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: -3rem;
    max-width: 800px;
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: -1;
    line-height: 1.2;
}

.subtitle {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    color: #cecdc6;
    font-size: 18px;
    max-width: 745px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(244, 140, 113, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .bg-watermark {
        font-size: 8vw;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
}

.clients-logos {
    background-color: var(--bg-dark);
    padding: 80px 0;
    overflow: hidden;
}

.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            black 15%,
            black 85%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 15%,
            black 85%,
            transparent);
}

.logos-track {
    display: flex;
    width: fit-content;
    animation: scroll-logos 35s linear infinite;
}

.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.logo-slide img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.logo-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logos-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .logo-slide {
        gap: 50px;
        padding: 0 25px;
    }

    .logo-slide img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .clients-logos {
        padding: 30px 0;
    }

    .logo-slide {
        gap: 40px;
        padding: 0 20px;
    }

    .logo-slide img {
        height: 25px;
        max-width: 120px;
    }

    .logos-slider {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.stats-section {
    padding: 120px 0;
    position: relative;
    text-align: center;

    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 70px;
}

.section-header .subtitle {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-header p {
    color: #eee9d6;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.stat-item .plus {
    font-size: 2.5rem;
    margin-left: 2px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    .stats-grid {
        flex-wrap: wrap;
        row-gap: 50px;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item:nth-child(odd)::after {
        display: block;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 30px;
    }
}

.services-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.service-card {
    background: #0d233b;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    background-image: url("../img/Ellipse 32.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 140, 113, 0.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(244, 140, 113, 0.05);
}

.icon-wrapper {
    height: 90px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.15) translateY(-5px);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #eee9d6;
    margin: 0;
    line-height: 1.4;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 25px 10px;
        border-radius: 15px;
    }

    .icon-wrapper {
        height: 50px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 13px;
    }
}

.projects-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.projects-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.project-card {
    position: relative;
    width: 100%;
    height: 450px;

    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top,
            rgba(10, 17, 24, 0.95) 0%,
            rgba(10, 17, 24, 0) 100%);
    pointer-events: none;
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 2;
}

.category-badge {
    display: inline-block;
    background-color: #ffffff;
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    border-radius: 20px;
    margin-bottom: 12px;

    background: var(--Glass-Bg, #ffffff14);
    backdrop-filter: blur(80px);
    border: 1px solid var(--Glass-strock, #ffffff14);
    color: #cecdc6;
}

.project-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.custom-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.custom-nav-btn::after {
    font-size: 18px;

    font-weight: bold;
}

.custom-nav-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.swiper-button-prev.custom-nav-btn {
    left: -20px;
}

.swiper-button-next.custom-nav-btn {
    right: -20px;
}

.view-all-wrapper {
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
}

@media (max-width: 768px) {
    .project-card {
        height: 380px;
    }

    .custom-nav-btn {
        display: none;
    }
}

.project-card {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.project-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.services-selected-swiper:hover .swiper-slide:not(:hover) .project-card,
.projectsdetails-swiper:hover .swiper-slide:not(:hover) .project-card,
.projects-swiper:hover .swiper-slide:not(:hover) .project-card {
    transform: scale(0.98);
}

.services-selected-swiper,
.projectsdetails-swiper,
.projects-swiper {
    padding: 30px 15px !important;
    margin: -30px -15px !important;
}

.cta-section {
    padding: 150px 0;
    position: relative;
    background-color: var(--bg-dark);

    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide {
    transition: width 1s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

@media (min-width: 1024px) {
    .swiper-slide {
        width: calc((100% - 90px) / 4) !important;
    }

    .services-selected-swiper:hover .swiper-slide,
    .projectsdetails-swiper:hover .swiper-slide,
    .projects-swiper:hover .swiper-slide {
        width: calc(((100% - 90px) / 4) * 0.7) !important;
    }

    .services-selected-swiper:hover .swiper-slide:hover,
    .projectsdetails-swiper:hover .swiper-slide:hover,
    .projects-swiper:hover .swiper-slide:hover {
        width: calc(((100% - 90px) / 4) * 1.9) !important;
        opacity: 1;
        z-index: 10;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .swiper-slide {
        width: calc((100% - 50px) / 3) !important;
    }

    .services-selected-swiper:hover .swiper-slide,
    .projectsdetails-swiper:hover .swiper-slide,
    .projects-swiper:hover .swiper-slide {
        width: calc(((100% - 50px) / 3) * 0.7) !important;
    }

    .services-selected-swiper:hover .swiper-slide:hover,
    .projectsdetails-swiper:hover .swiper-slide:hover,
    .projects-swiper:hover .swiper-slide:hover {
        width: calc(((100% - 50px) / 3) * 1.6) !important;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .swiper-slide {
        width: calc((100% - 20px) / 2) !important;
    }
}

.project-content h3,
.category-badge {
    transition: all 0.4s ease;
}

.services-selected-swiper:hover .swiper-slide:not(:hover) .project-content h3,
.projectsdetails-swiper:hover .swiper-slide:not(:hover) .project-content h3,
.projects-swiper:hover .swiper-slide:not(:hover) .project-content h3 {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 24, 0.3);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content .subtitle {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    color: #eee9d6;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 40px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    background: #ffffff1f;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    border: 1px solid var(--Glass-strock, #ffffff14);
    backdrop-filter: blur(80px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .cta-section {
        padding: 120px 0;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-content h2 br,
    .cta-content p br {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 80px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn-glass {
        padding: 12px 25px;
        font-size: 15px;
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.main-footer {
    background: linear-gradient(135deg, #26313e 0%, #24303c 100%);
    padding: 84px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.main-footer .container {
    max-width: 1365px;
    padding-inline: 22px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: 130px;
    height: auto;
}

.footer-brand .footer-subtitle {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-brand h3 {
    margin: 0 0 12px;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.footer-brand p {
    margin: 0;
    color: #cecdc6;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.footer-content {
    min-width: 0;
}

.footer-newsletter {
    margin-bottom: 67px;
}

.footer-newsletter h4,
.footer-social h4 {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-newsletter h4 {
    margin-bottom: 17px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
}

.newsletter-form input {
    width: 100%;
    height: 51px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 28px;
    outline: none;
    background-color: #0d233b;
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: #f2f2f2;
    opacity: 0.95;
}

.newsletter-form input:focus {
    border-color: rgba(243, 149, 122, 0.75);
    box-shadow: 0 0 0 3px rgba(243, 149, 122, 0.1);
}

.newsletter-email {
    position: relative;
    min-width: 0;
}

.newsletter-email input {
    padding-right: 104px;
}

.newsletter-email button {
    position: absolute;
    top: 6px;
    right: 7px;
    height: 39px;
    padding: 0 14px;
    border: 0;
    border-radius: 22px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-email button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
    align-items: start;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin: 0 0 22px;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul a {
    display: inline-block;
    color: #f5f5f5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social h4 {
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #cecdc6;
    transition: var(--transition-smooth);
}

.social-links img {
    display: block;
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 49px;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: #eee9d6;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.reveal-col {
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 1100px) {
    .main-footer {
        padding-top: 70px;
    }

    .footer-shell {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 40px;
    }

    .footer-links-grid {
        gap: 25px;
    }

    .social-links {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .footer-shell {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-newsletter {
        margin-bottom: 50px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 42px;
    }

    .footer-social {
        text-align: left;
    }
}

@media (max-width: 650px) {
    .main-footer {
        padding: 60px 0 24px;
    }

    .main-footer .container {
        padding-inline: 20px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        gap: 35px 24px;
    }

    .footer-bottom {
        margin-top: 42px;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul a:hover {
        transform: none;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.fadeInUp {
    transform: translateY(40px);
}

.fadeInLeft {
    transform: translateX(-40px);
}

.fadeInRight {
    transform: translateX(40px);
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shader-bg video,
.shader-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 24px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.btn-glass {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: block;
    text-align: left;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;

    background:
        linear-gradient(90deg,
            rgba(7, 20, 34, 0.94) 0%,
            rgba(7, 20, 34, 0.7) 27%,
            rgba(7, 20, 34, 0.38) 55%,
            rgba(7, 20, 34, 0.62) 100%),
        linear-gradient(180deg,
            rgba(7, 20, 34, 0.25) 0%,
            rgba(7, 20, 34, 0.1) 45%,
            rgba(7, 20, 34, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1360px;
    height: 90%;
    margin: 0 auto;

    padding: clamp(125px, 16vh, 175px) 60px clamp(50px, 8vh, 85px);

    display: grid;
    grid-template-rows: auto 1fr auto;
}

.hero-intro {
    position: relative;
    z-index: 3;
    grid-row: 1;
    justify-self: start;
}

.hero-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
}

.hero .hero-heading {
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-watermark {
    position: absolute;
    z-index: 0;
    top: 31%;
    left: 23%;

    width: max-content;
    pointer-events: none;
    user-select: none;
}

.watermark-top {
    display: block;
    margin-left: 10px;
    margin-bottom: -8px;

    color: rgba(255, 255, 255, 0.14);
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 300;
    line-height: 1;
}

.watermark-main {
    display: flex;
    align-items: center;
    line-height: 0.85;
    white-space: nowrap;
}

.watermark-live {
    color: rgba(255, 255, 255, 0.13);
    font-size: clamp(48px, 5.5vw, 88px);
    font-weight: 600;
    letter-spacing: -4px;
}

.watermark-vivid {
    margin-left: 15px;
    color: rgba(243, 149, 122, 0.33);
    font-size: clamp(75px, 9vw, 145px);
    font-weight: 400;
    letter-spacing: 5px;
}

.watermark-experience {
    display: block;
    margin-top: 7px;
    margin-left: 47%;

    color: rgba(255, 255, 255, 0.11);
    font-size: clamp(7px, 0.6vw, 10px);
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-bottom {
    position: relative;
    z-index: 3;
    grid-row: 3;

    display: grid;
    grid-template-columns: minmax(300px, 470px) minmax(360px, 490px);

    justify-content: space-between;
    align-items: end;
    gap: clamp(50px, 10vw, 160px);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 17px;
    max-width: 445px;
}

.hero-feature {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.hero-feature-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon img {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.hero .hero-feature p {
    width: 100%;
    max-width: 365px;
    margin: 0;

    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}

.hero-copy {
    width: 100%;
    max-width: 490px;
    justify-self: end;
}

.hero .hero-copy p {
    width: 100%;
    max-width: none;
    margin: 0 0 23px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.hero .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 13px;
}

.hero .hero-buttons .btn {
    min-height: 42px;
    padding: 15px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.hero .hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hero .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 850px;
    }

    .hero-content {
        min-height: 850px;
        padding: 125px 25px 55px;
    }

    .hero-watermark {
        top: 28%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero .hero-feature p {
        max-width: none;
        font-size: 13px;
    }

    .hero-kicker {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 900px;
    }

    .hero-content {
        min-height: 900px;
        padding: 115px 20px 45px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .hero-intro {
        width: 100%;
        margin-top: 50px;
    }

    .hero-watermark {
        top: 220px;
        left: 50%;
        width: 100%;
        padding: 0 20px;
        transform: translateX(-50%);
        text-align: center;
    }

    .watermark-top {
        margin-left: 0;
        font-size: 18px;
    }

    .watermark-main {
        justify-content: center;
    }

    .watermark-live {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .watermark-vivid {
        margin-left: 8px;
        font-size: 58px;
        letter-spacing: 2px;
    }

    .watermark-experience {
        margin-left: 40%;
    }

    .hero-bottom {
        width: 100%;
        margin-top: 150px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 35px;
    }

    .hero-features,
    .hero-copy {
        width: 100%;
        max-width: none;
    }

    .hero .hero-copy p {
        font-size: 12px;
    }

    .hero .hero-buttons {
        width: 100%;
    }

    .btn-profile {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 930px;
    }

    .hero-content {
        min-height: 930px;
        padding-inline: 18px;
    }

    .hero .hero-heading {
        font-size: 33px;
    }

    .watermark-main {
        flex-direction: column;
        gap: 8px;
    }

    .watermark-live {
        font-size: 35px;
    }

    .watermark-vivid {
        margin-left: 0;
        font-size: 65px;
    }

    .watermark-experience {
        margin-left: 0;
        text-align: center;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .hero-buttons .btn {
        width: 100%;
    }
}

.mailing-list-message {
    position: relative;
    width: 100%;
    margin-top: 12px !important;
    padding: 12px 12px 15px 45px !important;
    border-radius: 10px !important;
    direction: rtl;
    text-align: left;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.6;
    animation: alert-show 0.3s ease;
}

.mailing-list-message.show {
    display: block !important;
}

.mailing-list-message.alert-danger {
    color: #fff;

    background: linear-gradient(135deg,
            rgba(255, 88, 88, 0.18),
            rgba(255, 88, 88, 0.08));

    border: 1px solid rgba(255, 107, 97, 0.35);
    border-left: 4px solid #ff6b61;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.mailing-list-message.alert-success::before {
    content: "âœ“";

    position: absolute;
    top: 50%;
    left: 12px;
    right: unset;
    transform: translateY(-50%);

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #27c978;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;
}

.mailing-list-message.alert-danger::before {
    content: "!";

    position: absolute;
    top: 50%;
    left: 12px;
    right: unset;
    transform: translateY(-50%);

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #ff6b61;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}

.mailing-list-message.alert-success {
    color: #fff;

    background: linear-gradient(135deg,
            rgba(39, 201, 120, 0.18),
            rgba(39, 201, 120, 0.08));

    border: 1px solid rgba(39, 201, 120, 0.35);
    border-left: 4px solid #27c978;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 72px 20px 96px;
    background-color: #0d233b;
    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    isolation: isolate;
}

.contact-hero__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    text-align: center;
}

.contact-hero__title {
    margin: 0 0 45px;
    color: #ffffff;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.4px;
}

.contact-info-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 175px);
    align-items: stretch;
    justify-content: center;
    gap: 14px;
}

.contact-info-card {
    width: 175px;
    min-height: 135px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 21px 10px 15px;

    background-color: #eee9d6;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    color: #0d233b;
    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.contact-info-card__icon {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: #f3957a;
}

.contact-info-card__icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h2 {
    margin: 0 0 12px;

    color: #f3957a;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.contact-info-card p,
.contact-info-card address {
    margin: 0;

    color: #0d233b;

    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.45;
}

a.contact-info-card:hover {
    background-color: #eee9d6;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 20, 34, 0.18);
    backdrop-filter: blur(80px);
}

a.contact-info-card:focus-visible {
    outline: 3px solid rgba(243, 149, 122, 0.65);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: auto;
        padding: 65px 20px 75px;

        background-position: center;
    }

    .contact-hero__title {
        margin-bottom: 38px;
        font-size: 40px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(3, minmax(140px, 160px));
        gap: 12px;
    }

    .contact-info-card {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .contact-hero {
        padding: 55px 18px 65px;
        background-position: center;
        height: 100%;
        min-height: 80vh;
    }

    .contact-hero__title {
        margin-bottom: 32px;
        font-size: 36px;
    }

    .contact-info-grid {
        max-width: 320px;

        grid-template-columns: 1fr;
        gap: 14px;

        margin: 0 auto;
    }

    .contact-info-card {
        width: 100%;
        min-height: 125px;
        padding: 20px 15px 16px;
    }

    .contact-info-card h2 {
        font-size: 14px;
    }

    .contact-info-card p,
    .contact-info-card address {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .contact-hero {
        padding-inline: 15px;
    }

    .contact-hero__title {
        font-size: 33px;
    }

    .contact-info-grid {
        max-width: 100%;
    }
}

.meeting-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    padding: 58px 20px 60px;
    background-color: #071422;
    overflow: hidden;
}

.meeting-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-v2__form {
    width: 100%;
    max-width: 600px;
}

.meeting-title {
    margin: 0 0 27px;
    color: #ffffff;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.meeting-form {
    width: 100%;
    max-width: 600px;
}

.contact-type-fieldset {
    min-width: 0;
    margin: 0 0 21px;
    padding: 0;
    border: 0;
}

.contact-type-fieldset legend {
    width: 100%;
    margin-bottom: 10px;
    color: #ffffff;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-type-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.contact-type-card {
    width: 100%;
    min-height: 65px;
    padding: 12px 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    border-radius: 17px;
    background-color: #0d2945;
    color: #ffffff;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-type-card:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 149, 122, 0.28);
}

.contact-type-card.active {
    background-color: #eee9d6;
    color: #0d2945;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contact-type-card:focus-visible {
    outline: 3px solid rgba(243, 149, 122, 0.45);
    outline-offset: 3px;
}

.contact-type-icon {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: currentColor;
}

.contact-type-icon {
    width: 17px;
    height: 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    color: currentColor;
}

.contact-type-icon svg {
    display: block;
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        color 0.3s ease,
        stroke 0.3s ease,
        transform 0.3s ease;

    pointer-events: none;
}

.contact-type-card:hover .contact-type-icon svg {
    transform: scale(1.08);
}

.contact-type-card.active .contact-type-icon {
    color: #0d2945;
}

.contact-type-card:not(.active) .contact-type-icon {
    color: #ffffff;
}

.meeting-form-fields {
    width: 100%;
    max-width: 600px;
}

.meeting-form-fields h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.meeting-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.meeting-field {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.meeting-field input,
.meeting-field textarea {
    display: block;
    width: 100%;

    border: 1px solid transparent;
    outline: none;

    background-color: #0d2945;
    color: #ffffff;

    font-size: 10px;
    font-weight: 400;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.meeting-field input {
    height: 45px;
    padding: 0 14px;

    border-radius: 50px;
}

.meeting-field textarea {
    min-height: 104px;
    padding: 11px 14px;

    border-radius: 16px;

    resize: vertical;
    line-height: 1.6;
}

.meeting-field input::placeholder,
.meeting-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.92);
    opacity: 1;
}

.meeting-field input:hover,
.meeting-field textarea:hover {
    background-color: #102f4f;
}

.meeting-field input:focus,
.meeting-field textarea:focus {
    border-color: rgba(243, 149, 122, 0.75);

    background-color: #102f4f;

    box-shadow: 0 0 0 3px rgba(243, 149, 122, 0.09);
}

.meeting-field.has-error input,
.meeting-field.has-error textarea {
    border-color: #ff746b;
    box-shadow: 0 0 0 3px rgba(255, 116, 107, 0.08);
}

.field-error {
    display: none;

    margin-top: 5px;
    padding-inline: 10px;

    color: #ff928a;

    font-size: 10px;
    line-height: 1.4;
}

.meeting-field.has-error .field-error {
    display: block;
}

.visually-hidden {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;
    border: 0 !important;
}

.meeting-submit-wrapper {
    display: flex;
    justify-content: flex-end;

    margin-top: 16px;
}

.meeting-submit-btn {
    min-width: 94px;
    min-height: 38px;

    padding: 10px 18px 10px 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    border-radius: 24px;

    background-color: #ff9278;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 8px 20px rgba(243, 149, 122, 0.12);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.meeting-submit-btn svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform 0.3s ease;
}

.meeting-submit-btn:hover {
    background-color: #f78369;

    transform: translateY(-2px);

    box-shadow: 0 12px 24px rgba(243, 149, 122, 0.2);
}

.meeting-submit-btn:hover svg {
    transform: translateX(3px);
}

.meeting-submit-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 3px;
}

.meeting-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.contact-form-message {
    display: none;

    width: 100%;
    margin-top: 3px;
    padding: 10px 13px;

    border-radius: 11px;

    font-size: 11px;
    line-height: 1.5;
}

.contact-form-message.show {
    display: block;
    animation: meeting-message-show 0.3s ease;
}

.contact-form-message.success {
    color: #d8ffe8;

    background-color: rgba(39, 201, 120, 0.1);
    border: 1px solid rgba(39, 201, 120, 0.32);
}

.contact-form-message.error {
    color: #ffd8d5;

    background-color: rgba(255, 107, 97, 0.1);
    border: 1px solid rgba(255, 107, 97, 0.3);
}

@keyframes meeting-message-show {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .meeting-section {
        min-height: auto;
        padding: 55px 30px 65px;
    }

    .meeting-container {
        max-width: 650px;
    }

    .meeting-title {
        font-size: 28px;
    }
}

@media (max-width: 700px) {
    .meeting-section {
        padding: 50px 24px 60px;
    }

    .meeting-container {
        max-width: 100%;
    }

    .contact-type-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .meeting-form-fields {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .meeting-section {
        padding: 45px 18px 55px;
        border-bottom-width: 14px;
    }

    .meeting-title {
        margin-bottom: 25px;
        font-size: 27px;
        text-align: center;
    }

    .contact-type-fieldset legend,
    .meeting-form-fields h3 {
        font-size: 14px;
    }

    .contact-type-options {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .contact-type-card {
        min-height: 62px;

        flex-direction: row;
        align-items: center;
        justify-content: flex-start;

        padding: 14px 16px;

        font-size: 12px;
    }

    .contact-type-icon {
        width: 17px;
        height: 17px;
    }

    .meeting-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .meeting-field input {
        height: 43px;
        padding-inline: 16px;

        font-size: 12px;
    }

    .meeting-field textarea {
        min-height: 125px;
        padding: 14px 16px;

        font-size: 12px;
    }

    .meeting-submit-wrapper {
        margin-top: 18px;
    }

    .meeting-submit-btn {
        min-width: 110px;
        min-height: 43px;

        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .meeting-section {
        padding-inline: 15px;
    }

    .meeting-title {
        font-size: 24px;
    }

    .meeting-submit-btn {
        width: 100%;
    }
}

html[dir="rtl"] .meeting-section,
html[dir="rtl"] .meeting-form,
html[dir="rtl"] .contact-type-fieldset {
    direction: rtl;
}

html[dir="rtl"] .meeting-title,
html[dir="rtl"] .contact-type-fieldset legend,
html[dir="rtl"] .meeting-form-fields h3 {
    text-align: right;
}

html[dir="rtl"] .contact-type-card {
    align-items: flex-start;
    text-align: right;
}

html[dir="rtl"] .meeting-field input,
html[dir="rtl"] .meeting-field textarea {
    text-align: right;
}

html[dir="rtl"] .meeting-field input[dir="ltr"] {
    direction: ltr;
    text-align: right;
}

html[dir="rtl"] .meeting-submit-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .meeting-submit-btn:hover svg {
    transform: translateX(-3px);
}

@media (max-width: 560px) {
    html[dir="rtl"] .contact-type-card {
        flex-direction: row;
        align-items: center;
    }
}

html[dir="rtl"] .contact-hero__container,
html[dir="rtl"] .contact-info-card {
    direction: rtl;
}

html[dir="rtl"] .contact-info-card p,
html[dir="rtl"] .contact-info-card address {
    text-align: center;
}

html[dir="rtl"] .mailing-list-message {
    position: relative;
    width: 100%;
    margin-top: 12px !important;
    padding: 12px 45px 12px 15px !important;
    border-radius: 10px !important;
    direction: rtl;
    text-align: right;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.6;
    animation: alert-show 0.3s ease;
}

html[dir="rtl"] .mailing-list-message.alert-danger {
    color: #ffd8d5;

    background: linear-gradient(135deg,
            rgba(255, 88, 88, 0.18),
            rgba(255, 88, 88, 0.08));

    border: 1px solid rgba(255, 107, 97, 0.35);
    border-right: 4px solid #ff6b61;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

html[dir="rtl"] .mailing-list-message.alert-success {
    color: #d5ffe5;

    background: linear-gradient(135deg,
            rgba(39, 201, 120, 0.18),
            rgba(39, 201, 120, 0.08));

    border: 1px solid rgba(39, 201, 120, 0.35);
    border-right: 4px solid #27c978;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

html[dir="rtl"] .mailing-list-message.alert-danger::before {
    content: "!";

    position: absolute;
    top: 50%;
    right: 12px;
    left: unset;
    transform: translateY(-50%);

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #ff6b61;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}

html[dir="rtl"] .mailing-list-message.alert-success::before {
    content: "âœ“";

    position: absolute;
    top: 50%;
    right: 12px;
    left: unset;
    transform: translateY(-50%);

    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #27c978;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;
}

@keyframes alert-show {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
   
    font-family: "ArabicFont", sans-serif !important;
}

html[dir="rtl"] .header-container,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-bottom,
html[dir="rtl"] .hero-features,
html[dir="rtl"] .footer-shell,
html[dir="rtl"] .footer-links-grid {
    direction: rtl;
}

html[dir="rtl"] .header-container {
    position: relative;
}

html[dir="rtl"] .nav-links a,
html[dir="rtl"] .btn-profile,
html[dir="rtl"] .btn,
html[dir="rtl"] .btn-glass {
    letter-spacing: 0;
}

html[dir="rtl"] .lang-switch {
    direction: ltr;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    font-weight: 600;
}

html[dir="rtl"] .hero {
    text-align: right;
}

html[dir="rtl"] .hero-overlay {
    background:
        linear-gradient(270deg,
            rgba(7, 20, 34, 0.94) 0%,
            rgba(7, 20, 34, 0.7) 27%,
            rgba(7, 20, 34, 0.38) 55%,
            rgba(7, 20, 34, 0.62) 100%),
        linear-gradient(180deg,
            rgba(7, 20, 34, 0.25) 0%,
            rgba(7, 20, 34, 0.1) 45%,
            rgba(7, 20, 34, 0.92) 100%);
}

html[dir="rtl"] .hero-intro {
    justify-self: start;
    text-align: right;
}

html[dir="rtl"] .hero .hero-heading {
    letter-spacing: 0;
}

html[dir="rtl"] .hero-feature,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .project-content,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .footer-newsletter,
html[dir="rtl"] .footer-col {
    text-align: right;
}

html[dir="rtl"] .hero .hero-buttons {
    justify-content: flex-start;
}

html[dir="rtl"] .fadeInLeft {
    transform: translateX(40px);
}

html[dir="rtl"] .fadeInRight {
    transform: translateX(-40px);
}

html[dir="rtl"] .animate.show {
    transform: translate(0, 0);
}

html[dir="rtl"] .logos-slider,
html[dir="rtl"] .logos-track,
html[dir="rtl"] .logo-slide {
    direction: ltr;
}

.logos-track {
    animation: none;
}

html[dir="rtl"] .stat-number {
    direction: ltr;
}

html[dir="rtl"] .stat-item:not(:last-child)::after {
    right: auto;
    left: 0;
}

html[dir="rtl"] .stat-item .plus {
    margin-left: 2px;
    margin-right: 0;
}

html[dir="rtl"] .project-content {
    left: auto;
    right: 0;
}

html[dir="rtl"] .btn-view-all,
html[dir="rtl"] .btn-glass {
    flex-direction: row;
}

html[dir="rtl"] .newsletter-form input {
    text-align: right;
}

html[dir="rtl"] .newsletter-email input {
    direction: ltr;
    text-align: right;
    padding-right: 22px;
    padding-left: 104px;
}

html[dir="rtl"] .newsletter-email button {
    right: auto;
    left: 7px;
}

html[dir="rtl"] .footer-col ul a:hover {
    transform: translateX(-5px);
}

html[dir="rtl"] .footer-social {
    text-align: right;
}

@media (max-width: 991px) {
    html[dir="rtl"] .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        inset-block-start: calc(100% + 12px);
        inset-inline: 0;
        width: 100%;
        padding: 18px 20px;
        gap: 4px;
        text-align: right;
        background-color: rgba(10, 17, 24, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    html[dir="rtl"] .nav-links.open a {
        width: 100%;
        padding: 10px 4px;
    }

    html[dir="rtl"] .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    html[dir="rtl"] .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    html[dir="rtl"] .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    html[dir="rtl"] .hero-intro,
    html[dir="rtl"] .hero-copy,
    html[dir="rtl"] .hero-features {
        text-align: right;
    }

    html[dir="rtl"] .footer-social {
        text-align: right;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .hero .hero-buttons {
        align-items: stretch;
    }

    html[dir="rtl"] .footer-links-grid,
    html[dir="rtl"] .footer-social,
    html[dir="rtl"] .footer-brand {
        text-align: center;
    }

    html[dir="rtl"] .footer-col ul a:hover {
        transform: none;
    }
}

#AttachmentFile {
    margin: 10px 0;
    padding: 12px 28px;
}

.projects-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scaleX(1);
    transform-origin: center;

    pointer-events: none;
}

.projects-hero__container {
    position: relative;
    z-index: 2;
}

html[dir="rtl"] .projects-hero::before {
    transform: scaleX(-1);
}

.projects-hero__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}

.projects-hero__content {
    width: 100%;
    max-width: 510px;

    padding: clamp(30px, 2.3vw, 55px) clamp(24px, 2.5vw, 60px) clamp(36px, 2.8vw, 65px);
}

.projects-hero__title {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: clamp(44px, 4.5vw, 60px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.projects-hero__subtitle {
    margin: 0 0 26px;

    color: var(--primary-color);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}

.projects-hero__description {
    max-width: 495px;
    margin-bottom: 29px;
}

.projects-hero__description p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

.projects-hero__description p:last-child {
    margin-bottom: 0;
}

.projects-hero__button {
    min-width: 138px;
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 21px;

    border: 1px solid var(--primary-color);
    border-radius: 30px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 10px 25px rgba(243, 149, 122, 0.2);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.projects-hero__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(243, 149, 122, 0.3);
}

.projects-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

.projects-hero__title {
    transition-delay: 0.05s;
}

.projects-hero__subtitle {
    transition-delay: 0.14s;
}

.projects-hero__description {
    transition-delay: 0.23s;
}

.projects-hero__button {
    transition-delay: 0.32s;
}

@keyframes projectsHeroGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.7;
    }

    to {
        transform: translate3d(-35px, 20px, 0) scale(1.15);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .projects-hero {
        min-height: 530px;
        padding: 125px 0 75px;

        background:
            radial-gradient(circle at 88% 55%,
                rgba(243, 149, 122, 0.78) 0%,
                rgba(243, 149, 122, 0.34) 30%,
                transparent 62%),
            linear-gradient(90deg, #071422 0%, #0b1b2d 52%, #49373e 100%);
    }

    .projects-hero__content {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .projects-hero {
        min-height: 550px;
        padding: 120px 0 65px;

        background:
            radial-gradient(circle at 95% 40%,
                rgba(243, 149, 122, 0.55) 0%,
                rgba(243, 149, 122, 0.18) 32%,
                transparent 58%),
            linear-gradient(135deg, #071422 0%, #0a1c2f 65%, #382d35 100%);
    }

    .projects-hero::before {
        top: -20%;
        right: -60%;

        min-width: 550px;
        height: 110%;

        opacity: 0.8;
    }

    .projects-hero__content {
        max-width: 520px;
    }

    .projects-hero__title {
        font-size: 44px;
    }

    .projects-hero__subtitle {
        max-width: 400px;
        margin-bottom: 23px;
        font-size: 16px;
    }

    .projects-hero__description p {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        min-height: 575px;
        padding: 112px 0 55px;
    }

    .projects-hero__container {
        padding-inline: 20px;
    }

    .projects-hero__title {
        margin-bottom: 7px;
        font-size: 38px;
        letter-spacing: -1px;
    }

    .projects-hero__subtitle {
        margin-bottom: 21px;
        font-size: 14px;
        line-height: 1.55;
    }

    .projects-hero__description {
        margin-bottom: 25px;
    }

    .projects-hero__description p {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .projects-hero__button {
        min-width: 135px;
        min-height: 43px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .projects-hero__decor {
        animation: none;
    }
}

.projects-gallery {
    position: relative;
    width: 100%;
    padding: 45px 0 95px;
    background-color: #071422;
    overflow: hidden;
}

.projects-gallery__container {
    max-width: 1200px;
    padding-inline: 30px;
}

.projects-gallery__icons {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.project-filters {
    width: 100%;
    margin-bottom: 42px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px 10px;
}

.project-filter {
    min-height: 30px;
    padding: 7px 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;

    background-color: #f4ece1;
    color: #344054;

    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;

    box-shadow: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.project-filter:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.project-filter.is-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;

    box-shadow: 0 7px 18px rgba(243, 149, 122, 0.22);
}

.project-filter:focus-visible {
    outline: 3px solid rgba(243, 149, 122, 0.45);
    outline-offset: 3px;
}

.projects-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 34px;
}

.project-tile {
    position: relative;
    min-width: 0;
    aspect-ratio: 16 / 9;

    border-radius: 18px;
    overflow: hidden;

    background-color: #0d233b;

    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.025);

    transform: translateZ(0);

    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.project-tile.is-hidden {
    display: none;
}

.project-tile__link {
    position: relative;

    display: block;
    width: 100%;
    height: 100%;

    color: inherit;
    overflow: hidden;
}

.project-tile__image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.001);

    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.5s ease;
}

.project-tile__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.03) 25%,
            rgba(7, 20, 34, 0.28) 60%,
            rgba(7, 20, 34, 0.95) 100%);

    transition: background 0.4s ease;
}

.project-tile__content {
    position: absolute;
    z-index: 2;

    right: 0;
    bottom: 0;
    left: 0;

    padding: 20px 22px 19px;

    color: #ffffff;
}

.project-tile__top {
    width: 100%;
    margin-bottom: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.project-tile__category {
    min-height: 22px;
    padding: 5px 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;

    background-color: #eee9d6;
    color: #071422;

    font-size: 9px;
    font-weight: 500;
    line-height: 1;
}

.project-tile__year {
    color: rgba(255, 255, 255, 0.92);

    font-size: 11px;
    font-weight: 400;
}

.project-tile h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.project-tile__location {
    margin: 0;

    display: flex;
    align-items: center;
    gap: 5px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 10px;
    font-weight: 400;
    line-height: 1.4;
}

.project-tile__location svg {
    width: 11px;
    height: 11px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-tile:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(243, 149, 122, 0.12);
}

.project-tile:hover .project-tile__image {
    transform: scale(1.075);
    filter: brightness(1.05);
}

.project-tile:hover .project-tile__overlay {
    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.02) 20%,
            rgba(7, 20, 34, 0.2) 55%,
            rgba(7, 20, 34, 0.96) 100%);
}

.project-tile__link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: -4px;
}

.projects-gallery__more {
    min-height: 48px;
    margin-top: 52px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.projects-gallery__more-button {
    min-width: 116px;
    min-height: 42px;
    padding: 12px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 10px 24px rgba(243, 149, 122, 0.16);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.projects-gallery__more-button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(243, 149, 122, 0.25);
}

.projects-gallery__more-button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

.projects-gallery__more-button[hidden] {
    display: none !important;
}

.projects-gallery__empty {
    margin: 55px 0 10px;
    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    background-color: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    text-align: center;
}

@media (max-width: 991px) {
    .projects-gallery {
        padding: 40px 0 80px;
    }

    .projects-gallery__container {
        padding-inline: 25px;
    }

    .projects-gallery__grid {
        gap: 24px;
    }

    .project-tile__content {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .project-filters {
        margin-bottom: 32px;
        gap: 9px 8px;
    }

    .project-filter {
        min-height: 29px;
        padding: 7px 13px;
        font-size: 10px;
    }

    .projects-gallery__grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .project-tile {
        aspect-ratio: 16 / 9;
    }

    .projects-gallery__more {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .projects-gallery {
        padding: 34px 0 65px;
    }

    .projects-gallery__container {
        padding-inline: 18px;
    }

    .project-filters {
        gap: 8px 7px;
    }

    .project-filter {
        padding-inline: 11px;
        font-size: 9px;
    }

    .project-tile {
        border-radius: 14px;
    }

    .project-tile__content {
        padding: 15px;
    }

    .project-tile h3 {
        font-size: 14px;
    }

    .project-tile__category {
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .project-tile,
    .project-tile__image,
    .project-filter,
    .projects-gallery__more-button {
        transition: none;
    }
}

.next-project-cta {
    position: relative;
    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    background-color: #071422;

    overflow: hidden;
    isolation: isolate;
}

.next-project-cta::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: url("../img/Dark Gradient 08.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scaleX(1);
    transform-origin: center;

    pointer-events: none;
}

.next-project-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;
}

.next-project-cta__container {
    position: relative;
    z-index: 2;
}

html[dir="rtl"] .next-project-cta::before {
    transform: scaleX(-1);
}

.next-project-cta__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    display: grid;
    grid-template-columns: minmax(0, 500px) auto;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding-inline: 60px;
}

.next-project-cta__content {
    width: 100%;
    max-width: 500px;
}

.next-project-cta__content h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(30px, 3vw, 39px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -1px;
}

.next-project-cta__content p {
    max-width: 485px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.next-project-cta__action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.next-project-cta__button {
    min-width: 195px;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 12px 30px rgba(243, 149, 122, 0.2);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.next-project-cta__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow: 0 17px 35px rgba(243, 149, 122, 0.3);
}

.next-project-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

@media (max-width: 991px) {
    .next-project-cta {
        min-height: 410px;
        padding: 75px 0;
    }

    .next-project-cta__container {
        grid-template-columns: minmax(0, 480px) auto;
        gap: 45px;

        padding-inline: 35px;
    }

    .next-project-cta__content h2 {
        font-size: 33px;
    }
}

@media (max-width: 767px) {
    .next-project-cta {
        min-height: 440px;
        padding: 70px 0;

        background-position: center;
    }

    .next-project-cta__overlay {
        background: rgba(7, 20, 34, 0.28);
    }

    .next-project-cta__container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 32px;

        padding-inline: 25px;
    }

    .next-project-cta__content {
        max-width: 540px;
    }

    .next-project-cta__content h2 {
        font-size: 31px;
    }

    .next-project-cta__action {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .next-project-cta {
        min-height: 420px;
        padding: 60px 0;
    }

    .next-project-cta__container {
        padding-inline: 20px;
        gap: 28px;
    }

    .next-project-cta__content h2 {
        margin-bottom: 12px;

        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .next-project-cta__content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .next-project-cta__button {
        min-width: 175px;
        min-height: 48px;

        padding: 14px 22px;

        font-size: 13px;
    }
}

.clients-hero {
    position: relative;
    width: 100%;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 130px 0 85px;

    background-color: #071422;

    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    isolation: isolate;
}

.clients-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.15) 0%,
            rgba(7, 20, 34, 0.08) 35%,
            rgba(7, 20, 34, 0.16) 100%);

    pointer-events: none;
}

.clients-hero__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    display: flex;
    justify-content: center;

    padding-inline: 20px;
}

.clients-hero__content {
    width: 100%;
    max-width: 700px;

    text-align: center;
}

.clients-hero__title {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.clients-hero__subtitle {
    max-width: 535px;
    margin: 0 auto 24px;

    color: var(--primary-color);

    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    line-height: 1.35;
}

.clients-hero__text {
    max-width: 430px;
    margin: 0 auto 28px;
}

.clients-hero__text p {
    margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.clients-hero__text p:last-child {
    margin-bottom: 0;
}

.clients-hero__button {
    min-width: 120px;
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow: 0 10px 24px rgba(243, 149, 122, 0.18);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.clients-hero__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(243, 149, 122, 0.28);
}

.clients-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

@media (max-width: 991px) {
    .clients-hero {
        min-height: 500px;
        padding: 120px 0 75px;
    }

    .clients-hero__content {
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .clients-hero {
        min-height: 470px;
        padding: 110px 0 65px;

        background-position: center;
    }

    .clients-hero__content {
        max-width: 560px;
    }

    .clients-hero__subtitle {
        max-width: 420px;
        margin-bottom: 20px;
    }

    .clients-hero__text {
        max-width: 410px;
        margin-bottom: 24px;
    }

    .clients-hero__text p {
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .clients-hero {
        min-height: 450px;
        padding: 105px 0 55px;
    }

    .clients-hero__container {
        padding-inline: 18px;
    }

    .clients-hero__title {
        margin-bottom: 8px;
        font-size: 32px;
    }

    .clients-hero__subtitle {
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 1.45;
    }

    .clients-hero__text {
        margin-bottom: 22px;
    }

    .clients-hero__text p {
        font-size: 12px;
        line-height: 1.75;
    }

    .clients-hero__button {
        min-width: 110px;
        min-height: 40px;
        font-size: 12px;
        padding: 11px 20px;
    }
}

.clients-logos-grid-section {
    position: relative;
    width: 100%;
    padding: 78px 0 88px;
    background-color: #071422;
    overflow: hidden;
}

.clients-logos-grid-section::before,
.clients-logos-grid-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
}

.clients-logos-grid-section::before {
    left: -60px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(57, 123, 194, 0.18);
}

.clients-logos-grid-section::after {
    right: -70px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    background: rgba(243, 149, 122, 0.12);
}

.clients-logos-grid-section__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding-inline: 35px;
}

.clients-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 34px;
}

.client-logo-card {
    min-height: 72px;
    padding: 12px 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 calc((100% - 170px) / 6);
    min-width: 0;
    border-radius: 14px;
    background: transparent;
    border: 1px solid transparent;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.client-logo-card img {
    display: block;
    max-width: 100%;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;

    opacity: 0.95;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        filter 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.client-logo-card:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.client-logo-card:focus-visible {
    outline: 3px solid rgba(243, 149, 122, 0.45);
    outline-offset: 4px;
    border-radius: 14px;
}

@media (max-width: 1100px) {
    .clients-logos-grid {
        gap: 30px 28px;
    }

    .client-logo-card {
        flex-basis: calc((100% - 112px) / 5);
    }
}

@media (max-width: 900px) {
    .clients-logos-grid-section {
        padding: 65px 0 75px;
    }

    .clients-logos-grid-section__container {
        padding-inline: 28px;
    }

    .clients-logos-grid {
        gap: 26px 24px;
    }

    .client-logo-card {
        flex-basis: calc((100% - 72px) / 4);
    }

    .client-logo-card img {
        max-height: 30px;
    }
}

@media (max-width: 600px) {
    .clients-logos-grid-section {
        padding: 52px 0 62px;
    }

    .clients-logos-grid-section__container {
        padding-inline: 20px;
    }

    .clients-logos-grid {
        gap: 18px 16px;
    }

    .client-logo-card {
        flex-basis: calc((100% - 16px) / 2);
    }

    .client-logo-card img {
        max-height: 26px;
    }
}

@media (max-width: 380px) {
    .clients-logos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .client-logo-card img {
        max-height: 24px;
    }
}

.clients-moment-cta {
    position: relative;
    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 85px 0;

    background-color: #071422;

    background-image: url("../img/Dark Gradient 09.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    isolation: isolate;
}

.clients-moment-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.05) 0%,
            rgba(7, 20, 34, 0.06) 55%,
            rgba(7, 20, 34, 0.12) 100%);

    pointer-events: none;
}

.clients-moment-cta__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-inline: 25px;
}

.clients-moment-cta__content {
    width: 100%;
    max-width: 710px;

    text-align: center;
}

.clients-moment-cta__title {
    max-width: 680px;
    margin: 0 auto 45px;

    color: #ffffff;

    font-size: clamp(36px, 4.2vw, 55px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1.4px;
}

.clients-moment-cta__title span {
    display: block;
}

.clients-moment-cta__description {
    max-width: 620px;
    margin: 0 auto 42px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.clients-moment-cta__button {
    min-width: 205px;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 12px 28px rgba(243, 149, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.clients-moment-cta__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(243, 149, 122, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.clients-moment-cta__button:active {
    transform: translateY(-1px);
}

.clients-moment-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

@media (max-width: 991px) {
    .clients-moment-cta {
        min-height: 440px;
        padding: 75px 0;
    }

    .clients-moment-cta__content {
        max-width: 650px;
    }

    .clients-moment-cta__title {
        max-width: 590px;
        margin-bottom: 36px;

        font-size: 43px;
        line-height: 1.25;
    }

    .clients-moment-cta__description {
        margin-bottom: 35px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .clients-moment-cta {
        min-height: 420px;
        padding: 70px 0;

        background-position: center;
    }

    .clients-moment-cta__overlay {
        background: rgba(7, 20, 34, 0.12);
    }

    .clients-moment-cta__container {
        padding-inline: 22px;
    }

    .clients-moment-cta__content {
        max-width: 550px;
    }

    .clients-moment-cta__title {
        max-width: 500px;
        margin-bottom: 30px;

        font-size: 37px;
        line-height: 1.28;
        letter-spacing: -0.8px;
    }

    .clients-moment-cta__description {
        max-width: 480px;
        margin-bottom: 32px;

        font-size: 14px;
        line-height: 1.65;
    }

    .clients-moment-cta__description br {
        display: none;
    }

    .clients-moment-cta__button {
        min-width: 190px;
        min-height: 49px;

        padding: 14px 25px;

        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .clients-moment-cta {
        min-height: 395px;
        padding: 58px 0;
    }

    .clients-moment-cta__container {
        padding-inline: 18px;
    }

    .clients-moment-cta__title {
        max-width: 360px;
        margin-bottom: 25px;

        font-size: 30px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .clients-moment-cta__description {
        max-width: 350px;
        margin-bottom: 28px;

        font-size: 12px;
        line-height: 1.7;
    }

    .clients-moment-cta__button {
        min-width: 175px;
        min-height: 46px;

        padding: 13px 22px;

        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .clients-moment-cta {
        min-height: 380px;
        padding-inline: 0;
    }

    .clients-moment-cta__title {
        font-size: 27px;
    }

    .clients-moment-cta__description {
        font-size: 11px;
    }

    .clients-moment-cta__button {
        min-width: 165px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-moment-cta__button {
        transition: none;
    }
}

html[dir="rtl"] body.clients-page {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.clients-page h1,
html[dir="rtl"] body.clients-page h2,
html[dir="rtl"] body.clients-page h3,
html[dir="rtl"] body.clients-page h4,
html[dir="rtl"] body.clients-page h5,
html[dir="rtl"] body.clients-page h6 {
   
    font-family: "ArabicFont", sans-serif !important;
}

html[dir="rtl"] body.clients-page a,
html[dir="rtl"] body.clients-page button,
html[dir="rtl"] body.clients-page input,
html[dir="rtl"] body.clients-page textarea {
  
    font-family: "ArabicFont", sans-serif !important;
}

html[dir="rtl"] body.projects-page main {
    direction: rtl;
    text-align: right;
    font-family: "ArabicFont", sans-serif !important;
}

html[dir="rtl"] body.projects-page main h1,
html[dir="rtl"] body.projects-page main h2,
html[dir="rtl"] body.projects-page main h3,
html[dir="rtl"] body.projects-page main h4 {
 
    font-family: "ArabicFont", sans-serif !important;
}

html[dir="rtl"] body.projects-page main a,
html[dir="rtl"] body.projects-page main button {
  
    font-family: "ArabicFont", sans-serif !important;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page .projects-hero {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.projects-page .projects-hero__decor {
    right: auto;
    left: 6%;
}

html[dir="rtl"] body.projects-page .projects-hero__container {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .projects-hero__content {
    margin-right: 0;
    margin-left: auto;

    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.projects-page .projects-hero__title {
   
    font-family: "ArabicFont", sans-serif !important;
    letter-spacing: 0;
    text-align: right;
}

html[dir="rtl"] body.projects-page .projects-hero__subtitle {
  
    font-family: "ArabicFont", sans-serif !important;
    letter-spacing: 0;
    text-align: right;
    line-height: 1.6;
}

html[dir="rtl"] body.projects-page .projects-hero__description {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.projects-page .projects-hero__description p {
  
    font-family: "ArabicFont", sans-serif !important;
    text-align: right;
    line-height: 1.75;
}

html[dir="rtl"] body.projects-page .projects-hero__button {
    direction: rtl;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page .projects-gallery {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .projects-gallery__container {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .project-filters {
    direction: rtl;
    justify-content: flex-start;
}

html[dir="rtl"] body.projects-page .project-filter {
    direction: rtl;
    text-align: center;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page .projects-gallery__grid {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .project-tile {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .project-tile__link {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .project-tile__content {
    right: 0;
    left: 0;

    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.projects-page .project-tile__top {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .project-tile__category {
    direction: rtl;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page .project-tile__year {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body.projects-page .project-tile h3 {
    text-align: right;
    letter-spacing: 0;
    line-height: 1.55;
}

html[dir="rtl"] body.projects-page .project-tile__location {
    direction: rtl;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    text-align: right;
}

html[dir="rtl"] body.projects-page .project-tile__location img {
    display: block;

    width: 11px;
    height: 11px;

    flex: 0 0 auto;
    object-fit: contain;
}

html[dir="rtl"] body.projects-page .projects-gallery__empty {
    direction: rtl;
    text-align: center;
}

html[dir="rtl"] body.projects-page .projects-gallery__more {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .projects-gallery__more-button {
    direction: rtl;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page .next-project-cta {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .next-project-cta__container {
    direction: rtl;
}

html[dir="rtl"] body.projects-page .next-project-cta__content {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body.projects-page .next-project-cta__content h2 {
    text-align: right;
    letter-spacing: 0;
    line-height: 1.45;
}

html[dir="rtl"] body.projects-page .next-project-cta__content p {
    text-align: right;
    line-height: 1.75;
}

html[dir="rtl"] body.projects-page .next-project-cta__action {
    direction: rtl;
    justify-content: flex-start;
}

html[dir="rtl"] body.projects-page .next-project-cta__button {
    direction: rtl;
    letter-spacing: 0;
}

html[dir="rtl"] body.projects-page main .fadeInLeft {
    transform: translateX(40px);
}

html[dir="rtl"] body.projects-page main .fadeInRight {
    transform: translateX(-40px);
}

html[dir="rtl"] body.projects-page main .animate.show {
    transform: translate(0, 0);
}

@media (max-width: 991px) {
    html[dir="rtl"] body.projects-page .projects-hero__content {
        max-width: 500px;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__container {
        direction: rtl;
    }
}

@media (max-width: 767px) {
    html[dir="rtl"] body.projects-page .projects-hero::before {
        right: auto;
        left: -60%;
    }

    html[dir="rtl"] body.projects-page .projects-hero__content {
        width: 100%;
        max-width: 520px;

        margin: 0;

        text-align: right;
    }

    html[dir="rtl"] body.projects-page .project-filters {
        justify-content: flex-start;
    }

    html[dir="rtl"] body.projects-page .projects-gallery__grid {
        grid-template-columns: 1fr;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__container {
        align-items: flex-start;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__content {
        width: 100%;
        text-align: right;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__action {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {

    html[dir="rtl"] body.projects-page .projects-hero__container,
    html[dir="rtl"] body.projects-page .projects-gallery__container,
    html[dir="rtl"] body.projects-page .next-project-cta__container {
        padding-right: 18px;
        padding-left: 18px;
    }

    html[dir="rtl"] body.projects-page .projects-hero__title {
        font-size: 36px;
        line-height: 1.35;
    }

    html[dir="rtl"] body.projects-page .projects-hero__subtitle {
        font-size: 15px;
    }

    html[dir="rtl"] body.projects-page .projects-hero__description p {
        font-size: 13px;
        line-height: 1.8;
    }

    html[dir="rtl"] body.projects-page .project-filters {
        gap: 8px 7px;
    }

    html[dir="rtl"] body.projects-page .project-filter {
        padding-right: 12px;
        padding-left: 12px;
    }

    html[dir="rtl"] body.projects-page .project-tile__content {
        padding: 15px;
    }

    html[dir="rtl"] body.projects-page .project-tile h3 {
        font-size: 14px;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__content h2 {
        font-size: 28px;
    }

    html[dir="rtl"] body.projects-page .next-project-cta__content p {
        font-size: 13px;
        line-height: 1.8;
    }
}

.projects-hero {
    z-index: 1;

    width: 100%;
    min-height: 560px;

    position: relative;
    display: flex;
    align-items: center;

    padding: 135px 0 125px;

    background: #071422;
}

.projects-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    min-width: 0;

    background-image: url("../img/Dark Gradient 0.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;
    transform: scaleX(1);
    transform-origin: center;

    pointer-events: none;
}

.projects-hero__container {
    position: relative;
    z-index: 2;
}

.projects-gallery {
    position: relative;
    z-index: 10;

    width: 100%;

    margin-top: -58px;
    margin-bottom: -58px;

    padding: 0 18px;

    background: transparent;
    overflow: visible;
}

.projects-gallery__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 28px 38px;
    background: #071422;
    border-radius: 24px;
    overflow: hidden;
}

.projects-gallery__container::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -160px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(32, 89, 133, 0.09);
    filter: blur(90px);

    pointer-events: none;
}

.projects-gallery__container>* {
    position: relative;
    z-index: 2;
}

.project-filters {
    margin-bottom: 30px;
    gap: 7px 5px;
}

.project-filter {
    min-height: 29px;
    padding: 7px 10px;

    font-size: 10px;
}

.projects-gallery__grid {
    gap: 28px 30px;
}

.project-tile {
    border-radius: 17px;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

.projects-gallery__more {
    margin-top: 38px;
}

.projects-gallery__more-button {
    min-width: 112px;
    min-height: 40px;
}

.next-project-cta {
    position: relative;
    z-index: 1;

    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;

    padding: 140px 0 95px;

    background: #071422;

    overflow: hidden;
    isolation: isolate;
}

.next-project-cta::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    background-image: url("../img/Dark Gradient 01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 1;
    transform: scaleX(1);
    transform-origin: center;

    pointer-events: none;
}

.next-project-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(7, 20, 34, 0.04);

    pointer-events: none;
}

.next-project-cta__container {
    position: relative;
    z-index: 2;
}

html[dir="rtl"] .projects-hero::before,
html[dir="rtl"] .next-project-cta::before {
    transform: scaleX(-1);
}

@media (max-width: 991px) {
    .projects-hero {
        min-height: 520px;
        padding: 125px 0 105px;
    }

    .projects-gallery {
        margin-top: -48px;
        margin-bottom: -48px;

        padding-inline: 16px;
    }

    .projects-gallery__container {
        padding: 28px 22px 32px;
        border-radius: 21px;
    }

    .projects-gallery__grid {
        gap: 23px;
    }

    .next-project-cta {
        min-height: 430px;
        padding: 120px 0 80px;
    }
}

@media (max-width: 767px) {
    .projects-hero {
        min-height: 500px;
        padding: 115px 0 80px;
    }

    .projects-hero::before {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        min-width: 0;
        height: 100%;

        opacity: 1;
    }

    html[dir="rtl"] .projects-hero::before {
        right: 0;
        left: 0;
    }

    .projects-gallery {
        margin-top: -30px;
        margin-bottom: -30px;

        padding-inline: 10px;
    }

    .projects-gallery__container {
        padding: 22px 14px 27px;

        border-radius: 17px;

        box-shadow:
            0 20px 45px rgba(0, 0, 0, 0.32),
            0 7px 20px rgba(0, 0, 0, 0.18);
    }

    .project-filters {
        margin-bottom: 25px;
        gap: 8px 7px;
    }

    .projects-gallery__grid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .next-project-cta {
        min-height: 410px;
        padding: 90px 0 65px;
    }

    .next-project-cta::before {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        min-height: 470px;
        padding: 108px 0 70px;
    }

    .projects-gallery {
        margin-top: -24px;
        margin-bottom: -24px;

        padding-inline: 7px;
    }

    .projects-gallery__container {
        padding: 18px 10px 23px;
        border-radius: 14px;
    }

    .project-filter {
        min-height: 27px;

        padding: 6px 10px;

        font-size: 9px;
    }

    .project-tile {
        border-radius: 13px;
    }

    .projects-gallery__more {
        margin-top: 30px;
    }

    .next-project-cta {
        min-height: 380px;
        padding: 75px 0 55px;
    }
}

.projects-page-main {
    position: relative;
    isolation: isolate;

    width: 100%;

    background-color: #071422;

    overflow: hidden;
}

.projects-page-main>section {
    position: relative;
    z-index: 2;
}

.projects-hero,
.next-project-cta {
    background: transparent !important;
    background-image: none !important;

    overflow: visible !important;
}

.projects-hero::before,
.next-project-cta::before {
    content: none !important;
    display: none !important;
}

.projects-page-main::before,
.projects-page-main::after {
    content: "";

    position: absolute;
    left: 50%;
    z-index: 0;

    display: block;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    pointer-events: none;

    transform: translateX(-50%);
    transform-origin: center;

    will-change: transform;
}

.projects-page-main::before {
    top: clamp(-720px, -28vw, -330px);

    width: clamp(1700px, 135vw, 3000px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");
}

.projects-page-main::after {
    bottom: clamp(-560px, -20vw, -250px);

    width: clamp(1700px, 132vw, 2950px);
    aspect-ratio: 2047 / 1411;

    background-image: url("../img/Dark Gradient 01.png");
}

.projects-hero {
    min-height: clamp(560px, 38vw, 780px);

    padding: clamp(135px, 9vw, 210px) 0 clamp(125px, 8vw, 190px);
}

.projects-hero__container {
    position: relative;
    z-index: 3;
}

.projects-gallery {
    position: relative;
    z-index: 5;

    width: 100%;

    background: transparent !important;

    overflow: visible !important;

    margin-top: clamp(-90px, -4vw, -58px);
    margin-bottom: clamp(-90px, -4vw, -58px);

    padding-inline: clamp(12px, 3vw, 45px);
}

.projects-gallery__container {
    position: relative;
    z-index: 6;

    width: min(88vw, 2100px);
    max-width: none;

    margin-inline: auto;

    padding: clamp(30px, 2.3vw, 55px) clamp(24px, 1.5vw, 60px) clamp(36px, 2.8vw, 65px);

    background-color: #071422;

    border-radius: clamp(20px, 1.4vw, 32px);

    overflow: hidden;
}

.next-project-cta {
    min-height: clamp(470px, 34vw, 700px);

    padding: clamp(150px, 10vw, 225px) 0 clamp(90px, 7vw, 150px);
}

.next-project-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(7, 20, 34, 0.02);

    pointer-events: none;
}

.next-project-cta__container {
    position: relative;
    z-index: 3;
}

html[dir="rtl"] .projects-page-main::before,
html[dir="rtl"] .projects-page-main::after {
    transform: translateX(-50%) scaleX(-1);
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .projects-gallery__container {
        width: min(90vw, 1650px);
    }

    .projects-page-main::before {
        width: max(1900px, 130vw);
        top: -430px;
    }

    .projects-page-main::after {
        width: max(1900px, 128vw);
        bottom: -330px;
    }
}

@media (min-width: 1920px) {
    .projects-gallery__container {
        width: min(88vw, 2200px);
    }

    .projects-page-main::before {
        width: min(145vw, 3200px);
        top: clamp(-800px, -29vw, -600px);
    }

    .projects-page-main::after {
        width: min(140vw, 3100px);
        bottom: clamp(-620px, -20vw, -420px);
    }

    .projects-gallery {
        margin-top: -90px;
        margin-bottom: -90px;
    }

    .projects-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .projects-gallery__container {
        width: calc(100% - 32px);
    }

    .projects-page-main::before {
        width: 1750px;
        top: -390px;
    }

    .projects-page-main::after {
        width: 1750px;
        bottom: -300px;
    }

    .projects-gallery {
        margin-top: -48px;
        margin-bottom: -48px;

        padding-inline: 0;
    }
}

@media (max-width: 767px) {
    .projects-page-main::before {
        width: 1450px;
        top: -320px;
    }

    .projects-page-main::after {
        width: 1450px;
        bottom: -240px;
    }

    .projects-hero {
        min-height: 510px;
        padding: 115px 0 85px;
    }

    .projects-gallery {
        margin-top: -30px;
        margin-bottom: -30px;

        padding-inline: 8px;
    }

    .projects-gallery__container {
        width: 100%;

        padding: 22px 14px 28px;

        border-radius: 18px;
    }

    .next-project-cta {
        min-height: 420px;
        padding: 95px 0 65px;
    }
}

@media (max-width: 480px) {
    .projects-page-main::before {
        width: 1250px;
        top: -280px;
    }

    .projects-page-main::after {
        width: 1250px;
        bottom: -210px;
    }

    .projects-gallery {
        margin-top: -22px;
        margin-bottom: -22px;

        padding-inline: 6px;
    }

    .projects-gallery__container {
        padding: 18px 10px 24px;
        border-radius: 14px;
    }
}

.project-details-page,
.clients-page-main {
    position: relative;
    isolation: isolate;

    width: 100%;

    background-color: #071422;

    overflow: hidden;
}

.clients-page-main>section {
    position: relative;
    z-index: 2;
}

.clients-hero,
.clients-moment-cta {
    background: transparent !important;
    background-image: none !important;

    overflow: visible !important;
    isolation: auto;
}

.clients-logos-grid-section::before,
.clients-logos-grid-section::after {
    content: none !important;
    display: none !important;
}

.clients-page-main::before,
.clients-page-main::after {
    content: "";

    position: absolute;
    left: 50%;
    z-index: 0;

    display: block;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
}

.clients-page-main::before {
    top: clamp(-700px, -27vw, -360px);

    width: clamp(1750px, 138vw, 3200px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");
}

.project-details-page::after {
    content: "";

    position: absolute;
    left: 50%;
    z-index: 0;

    display: block;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
}

.project-details-page::after,
.clients-page-main::after {
    bottom: clamp(-570px, -21vw, -280px);

    width: clamp(1750px, 136vw, 3100px);
    aspect-ratio: 2047 / 1200;

    background-image: url("../img/Dark Gradient 09.png");
}

.clients-page-main>section {
    position: relative;
    z-index: 2;
}

.clients-hero {
    position: relative;
    z-index: 2;

    min-height: clamp(520px, 36vw, 720px);

    padding: clamp(130px, 8vw, 195px) 0 clamp(125px, 8vw, 185px);
}

.clients-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.05) 0%,
            transparent 48%,
            rgba(7, 20, 34, 0.06) 100%);

    pointer-events: none;
}

.clients-hero__container {
    position: relative;
    z-index: 3;

    width: min(90vw, 1800px);
    max-width: none;

    margin-inline: auto;
}

.clients-hero__content {
    position: relative;
    z-index: 3;
}

.clients-logos-grid-section {
    position: relative;
    z-index: 6;

    width: 100%;

    margin-top: clamp(-88px, -4.2vw, -58px);
    margin-bottom: clamp(-88px, -4.2vw, -58px);

    padding-inline: clamp(10px, 2.5vw, 42px);

    background: transparent !important;

    overflow: visible !important;
}

.clients-logos-grid-section__container {
    position: relative;
    z-index: 7;

    width: min(90vw, 1850px);
    max-width: none;

    margin-inline: auto;

    padding: clamp(48px, 4vw, 85px) clamp(28px, 4vw, 78px) clamp(52px, 4.5vw, 92px);

    background-color: #071422;

    border-radius: clamp(20px, 1.5vw, 32px);

    overflow: hidden;
}

.clients-logos-grid-section__container>* {
    position: relative;
    z-index: 2;
}

.clients-logos-grid {
    justify-content: center;

    gap: clamp(24px, 2vw, 44px) clamp(22px, 2.2vw, 48px);
}

.client-logo-card {
    min-height: clamp(65px, 5vw, 92px);

    padding: clamp(10px, 1vw, 16px) clamp(8px, 1vw, 15px);

    flex: 0 0 calc((100% - 240px) / 6);
}

.client-logo-card img {
    max-width: 100%;
    max-height: clamp(30px, 2.2vw, 48px);

    width: auto;
    height: auto;

    object-fit: contain;
}

.clients-moment-cta {
    position: relative;
    z-index: 2;

    min-height: clamp(470px, 34vw, 680px);

    padding: clamp(145px, 9vw, 210px) 0 clamp(90px, 7vw, 145px);
}

.clients-moment-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.02) 0%,
            transparent 45%,
            rgba(7, 20, 34, 0.05) 100%);

    pointer-events: none;
}

.clients-moment-cta__container {
    position: relative;
    z-index: 3;

    width: min(90vw, 1800px);
    max-width: none;

    margin-inline: auto;
}

.clients-moment-cta__content {
    position: relative;
    z-index: 3;
}

html[dir="rtl"] .clients-page-main::before,
html[dir="rtl"] .clients-page-main::after {
    transform: translateX(-50%) scaleX(-1);
}

@media (min-width: 1920px) {
    .clients-page-main::before {
        width: min(145vw, 3300px);
        top: clamp(-820px, -29vw, -600px);
    }

    .clients-page-main::after {
        width: min(142vw, 3200px);
        bottom: clamp(-650px, -22vw, -430px);
    }

    .clients-hero__container,
    .clients-moment-cta__container {
        width: min(86vw, 2000px);
    }

    .clients-logos-grid-section__container {
        width: min(88vw, 2100px);
    }

    .clients-logos-grid-section {
        margin-top: -90px;
        margin-bottom: -90px;
    }

    .clients-page-main::after {
        aspect-ratio: 2047 / 900;
    }
}

@media (max-width: 1199px) {
    .clients-page-main::before {
        width: 1800px;
        top: -410px;
    }

    .clients-page-main::after {
        width: 1800px;
        bottom: -320px;
    }

    .clients-hero__container,
    .clients-moment-cta__container {
        width: calc(100% - 40px);
    }

    .clients-logos-grid-section {
        margin-top: -48px;
        margin-bottom: -48px;

        padding-inline: 14px;
    }

    .clients-logos-grid-section__container {
        width: 100%;

        padding: 55px 30px 62px;
    }

    .client-logo-card {
        flex-basis: calc((100% - 112px) / 5);
    }

    .clients-page-main::after {
        aspect-ratio: 2047 / 900;
    }
}

@media (max-width: 900px) {
    .client-logo-card {
        flex-basis: calc((100% - 72px) / 4);
    }

    .clients-logos-grid-section__container {
        border-radius: 22px;
    }
}

@media (max-width: 767px) {
    .clients-page-main::before {
        width: 1450px;
        top: -320px;
    }

    .clients-page-main::after {
        width: 1450px;
        bottom: -235px;
    }

    .clients-hero {
        min-height: 480px;
        padding: 110px 0 82px;
    }

    .clients-logos-grid-section {
        margin-top: -30px;
        margin-bottom: -30px;

        padding-inline: 8px;
    }

    .clients-logos-grid-section__container {
        padding: 40px 18px 46px;

        border-radius: 18px;
    }

    .clients-moment-cta {
        min-height: 430px;
        padding: 95px 0 65px;
    }
}

@media (max-width: 600px) {
    .clients-logos-grid {
        gap: 18px 16px;
    }

    .client-logo-card {
        flex-basis: calc((100% - 16px) / 2);
        min-height: 58px;
    }

    .client-logo-card img {
        max-height: 27px;
    }
}

@media (max-width: 480px) {
    .clients-page-main::before {
        width: 1250px;
        top: -275px;
    }

    .clients-page-main::after {
        width: 1250px;
        bottom: -205px;
    }

    .clients-logos-grid-section {
        margin-top: -22px;
        margin-bottom: -22px;

        padding-inline: 6px;
    }

    .clients-logos-grid-section__container {
        padding: 34px 12px 39px;

        border-radius: 14px;
    }

    .clients-hero__container,
    .clients-moment-cta__container {
        width: calc(100% - 20px);
    }
}


.about-page-main {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100%;

    background-color: #071422;

    overflow: hidden;
}

.about-page-main::before {
    content: "";

    position: absolute;
    top: clamp(-530px, -25vw, -280px);
    left: 50%;
    z-index: 0;

    width: clamp(1600px, 132vw, 2900px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
    user-select: none;
}

.about-page-main>section {
    position: relative;
    z-index: 2;
}

.about-hero {
    position: relative;

    width: 100%;
    min-height: clamp(570px, 41vw, 730px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(130px, 9vw, 200px) 20px clamp(100px, 7vw, 155px);

    background: transparent;

    overflow: visible;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.04) 0%,
            transparent 45%,
            rgba(7, 20, 34, 0.06) 100%);

    pointer-events: none;
}

.about-hero__container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1250px;

    margin-inline: auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero__content {
    width: 100%;
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}

.about-hero__title {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: clamp(38px, 3.4vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.about-hero__subtitle {
    max-width: 650px;

    margin: 0 auto clamp(26px, 2vw, 36px);

    color: var(--primary-color);

    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}

.about-hero__description {
    width: 100%;
    max-width: 700px;

    margin-inline: auto;
}

.about-hero__description p {
    max-width: 539px;

    margin: 0 auto clamp(19px, 1.4vw, 25px);

    color: rgba(255, 255, 255, 0.89);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.about-hero__description p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1920px) {
    .about-page-main::before {
        top: clamp(-780px, -28vw, -580px);

        width: min(145vw, 3300px);
    }

    .about-hero {
        min-height: 760px;

        padding-top: 205px;
        padding-bottom: 165px;
    }

    .about-hero__container {
        max-width: 1800px;
    }

    .about-hero__content {
        max-width: 900px;
    }

    .about-hero__description {
        max-width: 800px;
    }

    .about-hero__description p {
        max-width: 800px;
    }
}

@media (max-width: 1199px) {
    .about-page-main::before {
        top: -350px;
        width: 1750px;
    }

    .about-hero {
        min-height: 590px;
        padding-top: 135px;
        padding-bottom: 105px;
    }

    .about-hero__content {
        max-width: 700px;
    }
}

@media (max-width: 900px) {
    .about-page-main::before {
        top: -310px;
        width: 1550px;
    }

    .about-hero {
        min-height: 560px;

        padding: 125px 25px 90px;
    }

    .about-hero__content {
        max-width: 640px;
    }

    .about-hero__title {
        font-size: 42px;
    }

    .about-hero__subtitle {
        font-size: 21px;
    }

    .about-hero__description p {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 767px) {
    .about-page-main::before {
        top: -240px;
        width: 1350px;
    }

    .about-hero {
        min-height: auto;

        padding: 115px 20px 82px;
    }

    .about-hero__content {
        max-width: 560px;
    }

    .about-hero__title {
        margin-bottom: 8px;

        font-size: 36px;
        letter-spacing: -0.6px;
    }

    .about-hero__subtitle {
        max-width: 440px;

        margin-bottom: 25px;

        font-size: 19px;
        line-height: 1.45;
    }

    .about-hero__description {
        max-width: 500px;
    }

    .about-hero__description p {
        margin-bottom: 18px;

        font-size: 13px;
        line-height: 1.72;
    }
}

@media (max-width: 480px) {
    .about-page-main::before {
        top: -190px;
        width: 1180px;
    }

    .about-hero {
        padding: 108px 17px 70px;
    }

    .about-hero__title {
        font-size: 31px;
        line-height: 1.25;
    }

    .about-hero__subtitle {
        max-width: 340px;

        margin-bottom: 22px;

        font-size: 17px;
    }

    .about-hero__description {
        max-width: 390px;
    }

    .about-hero__description p {
        margin-bottom: 16px;

        font-size: 12px;
        line-height: 1.75;
    }

    .about-hero__description br {
        display: none;
    }
}

html[dir="rtl"] .about-page-main::before {
    transform: translateX(-50%) scaleX(-1);
}

html[dir="rtl"] .about-hero__content,
html[dir="rtl"] .about-hero__description {
    direction: rtl;
}

html[dir="rtl"] .about-hero__content,
html[dir="rtl"] .about-hero__title,
html[dir="rtl"] .about-hero__subtitle,
html[dir="rtl"] .about-hero__description p {
    text-align: center;
    letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__content {
        transition: none;
    }
}

.about-details {
    position: relative;
    z-index: 10;

    width: 100%;

    margin-top: clamp(-62px, -3.5vw, -38px);
    margin-bottom: clamp(-62px, -3.5vw, -38px);

    padding-inline: clamp(7px, 2vw, 28px);

    background: transparent;
    overflow: visible;
}

.about-details__shell {
    position: relative;

    width: min(94vw, 1280px);
    margin-inline: auto;

    padding: clamp(45px, 5.4vw, 87px) clamp(18px, 3.4vw, 54px) clamp(31px, 5.3vw, 72px);

    background-color: #071422;

    border-radius: clamp(14px, 1.25vw, 22px);

    overflow: hidden;
}

.about-details__shell>* {
    position: relative;
    z-index: 2;
}

.about-section-title {
    margin: 0;

    color: #ffffff;

    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -0.4px;
}

.about-numbers {
    margin-bottom: clamp(43px, 7.6vw, 76px);
}

.about-numbers .about-section-title {
    margin-bottom: clamp(28px, 2.8vw, 47px);
}

.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    width: 100%;
    margin: 6rem 0;
}

.about-number-item {
    position: relative;

    gap: 13px;
    min-width: 0;
    padding-inline: clamp(8px, 1.5vw, 22px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.about-number-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 0;

    width: 1px;
    height: clamp(40px, 4vw, 67px);

    background: rgba(255, 255, 255, 0.1);

    transform: translateY(-50%);
}

.about-number-item__value {
    display: block;

    margin-bottom: clamp(5px, 0.6vw, 9px);

    color: #ffffff;

    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.about-number-item__label {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.about-values-block {
    margin-bottom: clamp(50px, 5.2vw, 85px);
}

.about-values-block__title {
    max-width: 620px;

    margin: 0 auto clamp(28px, 6vw, 60px);
}

.about-values-block__title span {
    display: block;
}

.about-values-mosaic {
    position: relative;

    width: 100%;
    aspect-ratio: 1.6 / 1;

    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr) minmax(0, 1fr);

    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);

    grid-template-areas:
        "card01 card02 card03"
        "card01 card04 card05";

    gap: clamp(8px, 1.1vw, 17px);
}

.about-value-card {
    position: relative;

    min-width: 0;
    min-height: 0;

    border-radius: clamp(10px, 1.1vw, 18px);

    background-color: #0d233b;

    overflow: hidden;
    isolation: isolate;

    opacity: 0;
    transform: translateY(24px) scale(0.965);

    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

/* الصورة نفسها */
.about-value-card::before {
    content: "";

    position: absolute;
    inset: -2px;
    z-index: 0;

    background-image: var(--card-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    transform: scale(1);
    transform-origin: center;

    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        background-position 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform;
}

.about-values-mosaic.is-visible .about-value-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-values-mosaic.is-visible .about-value-card:nth-child(1) {
    transition-delay: 0.05s;
}

.about-values-mosaic.is-visible .about-value-card:nth-child(2) {
    transition-delay: 0.13s;
}

.about-values-mosaic.is-visible .about-value-card:nth-child(3) {
    transition-delay: 0.21s;
}

.about-values-mosaic.is-visible .about-value-card:nth-child(4) {
    transition-delay: 0.29s;
}

.about-values-mosaic.is-visible .about-value-card:nth-child(5) {
    transition-delay: 0.37s;
}

.about-value-card:hover {
    transform: translateY(-5px) scale(1.008);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.27),
        0 0 0 1px rgba(243, 149, 122, 0.08);
}

.about-value-card--01 {
    grid-area: card01;
    --card-image: url("../img/Values.png");
}

.about-value-card--02 {
    grid-area: card02;
    --card-image: url("../img/Values1.png");
}

.about-value-card--03 {
    grid-area: card03;
    background-color: #ffffff;
    --card-image: url("../img/Values2.png");
}

.about-value-card--04 {
    grid-area: card04;
    background-color: #ffffff;
    --card-image: url("../img/Values4.png");
}

.about-value-card--05 {
    grid-area: card05;
    --card-image: url("../img/Values3.png");
}

.about-value-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(5, 18, 31, 0.015) 0%,
            rgba(5, 18, 31, 0.04) 38%,
            rgba(5, 18, 31, 0.72) 100%);

    pointer-events: none;
}

.about-value-card--light .about-value-card__shade {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.04) 36%,
            rgba(255, 255, 255, 0.68) 100%);
}

.about-value-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    padding: clamp(9px, 1.35vw, 21px) clamp(8px, 1.95vw, 28.1px);

    color: #ffffff;
}

.about-value-card__content h3 {
    margin: 0 0 clamp(4px, 5.45vw, 16px);

    color: inherit;

    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
}

.about-value-card__content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.38;
}

.about-value-card--light {
    color: #0b2033;
}

.about-value-card--light .about-value-card__content p {
    color: #496083;
}

.about-success-partners {
    text-align: center;
}

.about-success-partners__heading {
    margin-bottom: clamp(23px, 2.5vw, 41px);
}

.about-success-partners__heading h2 {
    margin: 0 0 clamp(4px, 0.45vw, 8px);

    color: #ffffff;

    font-size: 46px;
    font-weight: 600;
    line-height: 1.25;
}

.about-success-partners__subtitle {
    margin: 0 0 clamp(15px, 1.5vw, 24px);

    color: var(--primary-color);

    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
}

.about-success-partners__description {
    width: 100%;
    max-width: 540px;

    margin-inline: auto;
}

.about-success-partners__description p {
    margin: 0 0 clamp(7px, 2.7vw, 22px);

    color: rgba(255, 255, 255, 0.76);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.about-success-partners__description p:last-child {
    margin-bottom: 0;
}

.about-partners-marquee {
    --marquee-gap: clamp(25px, 4vw, 65px);

    position: relative;

    width: 100%;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);

    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);

    padding: 4rem 0 2rem;
}

.about-partners-marquee__track {
    display: flex;
    align-items: center;

    width: max-content;
    gap: var(--marquee-gap);

    animation: aboutPartnersLoop 22s linear infinite;

    will-change: transform;
}

.about-partners-marquee__group {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    gap: var(--marquee-gap);
}

.about-partner-logo {
    width: clamp(55px, 7.5vw, 116px);
    height: clamp(19px, 2.5vw, 38px);

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.about-partner-logo img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0.96;
}

.about-partners-marquee:hover .about-partners-marquee__track {
    animation-play-state: paused;
}

@keyframes aboutPartnersLoop {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
}

html[dir="rtl"] .about-number-item:not(:last-child)::after {
    right: auto;
    left: 0;
}

html[dir="rtl"] .about-partners-marquee__track {
    animation-direction: reverse;
}

@media (max-width: 991px) {
    .about-details {
        margin-top: -42px;
        margin-bottom: -42px;
    }

    .about-details__shell {
        width: calc(100% - 22px);

        padding: 36px 18px 34px;
    }

    .about-values-mosaic {
        aspect-ratio: 1.58 / 1;
    }
}

@media (max-width: 767px) {
    .about-details {
        margin-top: -30px;
        margin-bottom: -30px;

        padding-inline: 0;
    }

    .about-details__shell {
        width: calc(100% - 12px);

        padding: 28px 11px 27px;

        border-radius: 15px;
    }

    .about-numbers {
        margin-bottom: 40px;
    }

    .about-numbers .about-section-title {
        margin-bottom: 28px;
    }

    .about-section-title {
        font-size: 16px;
    }

    .about-number-item {
        padding-inline: 4px;
    }

    .about-number-item__value {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .about-number-item__label {
        font-size: 5.5px;
        line-height: 1.35;
    }

    .about-number-item:not(:last-child)::after {
        height: 34px;
    }

    .about-values-block {
        margin-bottom: 45px;
    }

    .about-values-block__title {
        max-width: 250px;

        margin-bottom: 24px;

        font-size: 23px;
        line-height: 1.35;
    }

    .about-values-mosaic {
        aspect-ratio: 1.6 / 1;

        gap: 6px;
    }

    .about-value-card {
        border-radius: 9px;
    }

    .about-value-card__content {
        padding: 8px 7px;
    }

    .about-value-card__content h3 {
        margin-bottom: 4px;

        font-size: clamp(7px, 2.05vw, 9px);
        line-height: 1.2;
    }

    .about-value-card__content p {
        font-size: clamp(4.7px, 1.42vw, 6.2px);
        line-height: 1.32;
    }

    .about-success-partners__heading {
        margin-bottom: 23px;
    }

    .about-success-partners__heading h2 {
        font-size: 16px;
    }

    .about-success-partners__subtitle {
        margin-bottom: 13px;

        font-size: 13px;
    }

    .about-success-partners__description {
        max-width: 285px;
    }

    .about-success-partners__description p {
        margin-bottom: 6px;

        font-size: 11px;
        line-height: 1.5;
    }

    .about-partners-marquee {
        --marquee-gap: 28px;
    }

    .about-partners-marquee__track {
        animation-duration: 18s;
    }

    .about-partner-logo {
        width: 55px;
        height: 18px;
    }
}

@media (max-width: 500px) {
    .about-details__shell {
        width: calc(100% - 10px);

        padding-inline: 9px;
    }

    .about-values-mosaic {
        gap: 5px;
    }

    .about-value-card__content {
        padding: 7px 6px;
    }

    .about-value-card__content h3 {
        font-size: 13px;
    }

    .about-value-card__content p {
        font-size: 4.7px;
    }

    .about-partners-marquee {
        --marquee-gap: 23px;
    }

    .about-partner-logo {
        width: 48px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-value-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-partners-marquee__track {
        animation: none;
    }
}

.about-value-card--04 .about-value-card__content h3,
.about-value-card--03 .about-value-card__content h3 {
    color: #0d233b;
}

.about-page-main::after {
    content: "";

    position: absolute;
    bottom: clamp(-530px, -20vw, -250px);
    left: 50%;
    z-index: 0;

    width: clamp(1650px, 134vw, 3000px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
    user-select: none;
}

.about-next-moment {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: clamp(420px, 34vw, 610px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(120px, 9vw, 180px) 20px clamp(75px, 6vw, 120px);

    background: transparent;

    overflow: visible;
}

.about-next-moment__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.02) 0%,
            transparent 45%,
            rgba(7, 20, 34, 0.05) 100%);

    pointer-events: none;
}

.about-next-moment__container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1250px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-next-moment__content {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;

    text-align: center;
}

.about-next-moment__title {
    max-width: 650px;

    margin: 0 auto clamp(28px, 2.4vw, 40px);

    color: #ffffff;

    font-size: clamp(32px, 3vw, 50px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1px;
}

.about-next-moment__title span {
    display: block;
}

.about-next-moment__description {
    max-width: 600px;

    margin: 0 auto clamp(28px, 2.3vw, 39px);

    color: rgba(255, 255, 255, 0.86);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.about-next-moment__button {
    min-width: 125px;
    min-height: 44px;

    padding: 12px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 10px 25px rgba(243, 149, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-next-moment__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow:
        0 16px 32px rgba(243, 149, 122, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-next-moment__button:active {
    transform: translateY(-1px);
}

.about-next-moment__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.58);
    outline-offset: 4px;
}

@media (min-width: 1920px) {
    .about-page-main::after {
        bottom: clamp(-700px, -22vw, -460px);

        width: min(142vw, 3250px);
    }

    .about-next-moment {
        min-height: 650px;

        padding-top: 195px;
        padding-bottom: 130px;
    }

    .about-next-moment__container {
        max-width: 1800px;
    }

    .about-next-moment__content {
        max-width: 850px;
    }

    .about-next-moment__title {
        max-width: 760px;
    }
}

@media (max-width: 1199px) {
    .about-page-main::after {
        width: 1800px;
        bottom: -330px;
    }

    .about-next-moment {
        min-height: 480px;

        padding: 130px 25px 85px;
    }
}

@media (max-width: 900px) {
    .about-page-main::after {
        width: 1550px;
        bottom: -285px;
    }

    .about-next-moment {
        min-height: 450px;

        padding: 115px 24px 75px;
    }

    .about-next-moment__content {
        max-width: 620px;
    }

    .about-next-moment__title {
        max-width: 540px;

        font-size: 37px;
    }

    .about-next-moment__description {
        max-width: 510px;

        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .about-page-main::after {
        width: 1370px;
        bottom: -235px;
    }

    .about-next-moment {
        min-height: 390px;

        padding: 95px 20px 65px;
    }

    .about-next-moment__content {
        max-width: 500px;
    }

    .about-next-moment__title {
        max-width: 430px;

        margin-bottom: 25px;

        font-size: 31px;
        line-height: 1.35;
        letter-spacing: -0.6px;
    }

    .about-next-moment__description {
        max-width: 440px;

        margin-bottom: 28px;

        font-size: 13px;
        line-height: 1.7;
    }

    .about-next-moment__description br {
        display: none;
    }

    .about-next-moment__button {
        min-width: 120px;
        min-height: 42px;

        padding: 11px 22px;

        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-page-main::after {
        width: 1190px;
        bottom: -190px;
    }

    .about-next-moment {
        min-height: 340px;

        padding: 76px 17px 55px;
    }

    .about-next-moment__title {
        max-width: 330px;

        margin-bottom: 21px;

        font-size: 25px;
        line-height: 1.4;
        letter-spacing: -0.3px;
    }

    .about-next-moment__description {
        max-width: 340px;

        margin-bottom: 24px;

        font-size: 13px;
        line-height: 1.65;
    }

    .about-next-moment__button {
        min-width: 105px;
        min-height: 38px;

        padding: 10px 18px;

        font-size: 13px;
    }
}

html[dir="rtl"] .about-page-main::after {
    transform: translateX(-50%) scaleX(-1);
}

html[dir="rtl"] .about-next-moment__content,
html[dir="rtl"] .about-next-moment__title,
html[dir="rtl"] .about-next-moment__description {
    direction: rtl;
    text-align: center;
    letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    .about-next-moment__button {
        transition: none;
    }
}

.services-page-main {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 100%;

    background-color: #071422;

    overflow: hidden;
}

.services-page-main>section {
    position: relative;
    z-index: 2;
}

.services-page-main::before {
    content: "";

    position: absolute;
    top: clamp(-560px, -25vw, -300px);
    left: 50%;
    z-index: 0;

    width: clamp(1650px, 134vw, 3050px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
    user-select: none;
}

.services-hero {
    position: relative;

    width: 100%;
    min-height: clamp(570px, 40vw, 730px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(135px, 9vw, 200px) 20px clamp(115px, 8vw, 170px);

    background: transparent;

    overflow: visible;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.04) 0%,
            transparent 44%,
            rgba(7, 20, 34, 0.07) 100%);

    pointer-events: none;
}

.services-hero__container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1280px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero__content {
    width: 100%;
    max-width: 760px;

    margin-inline: auto;

    text-align: center;
}

.services-hero__title {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: clamp(39px, 3.5vw, 57px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.services-hero__subtitle {
    max-width: 630px;

    margin: 0 auto clamp(25px, 2vw, 35px);

    color: var(--primary-color);

    font-size: clamp(18px, 1.55vw, 25px);
    font-weight: 600;
    line-height: 1.4;
}

.services-hero__description {
    width: 100%;
    max-width: 700px;

    margin: 0 auto clamp(27px, 2.2vw, 38px);
}

.services-hero__description p {
    max-width: 530px;

    margin: 0 auto clamp(18px, 1.3vw, 23px);

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.62;
}

.services-hero__description p:last-child {
    max-width: 530px;
    margin-bottom: 0;
}

.services-hero__button {
    min-width: 145px;
    min-height: 45px;

    padding: 12px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 11px 26px rgba(243, 149, 122, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.services-hero__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow:
        0 16px 33px rgba(243, 149, 122, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.services-hero__button:active {
    transform: translateY(-1px);
}

.services-hero__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.58);
    outline-offset: 4px;
}

@media (min-width: 1920px) {
    .services-page-main::before {
        top: clamp(-810px, -28vw, -590px);

        width: min(145vw, 3300px);
    }

    .services-hero {
        min-height: 770px;

        padding-top: 210px;
        padding-bottom: 175px;
    }

    .services-hero__container {
        max-width: 1800px;
    }

    .services-hero__content {
        max-width: 900px;
    }

    .services-hero__description {
        max-width: 790px;
    }

    .services-hero__description p {
        max-width: 790px;
    }

    .services-hero__description p:last-child {
        max-width: 720px;
    }

    .services-hero__button {
        min-width: 170px;
        min-height: 52px;

        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .services-page-main::before {
        top: -370px;
        width: 1800px;
    }

    .services-hero {
        min-height: 600px;

        padding: 140px 25px 115px;
    }

    .services-hero__content {
        max-width: 710px;
    }
}

@media (max-width: 900px) {
    .services-page-main::before {
        top: -315px;
        width: 1560px;
    }

    .services-hero {
        min-height: 565px;

        padding: 128px 24px 96px;
    }

    .services-hero__content {
        max-width: 650px;
    }

    .services-hero__title {
        font-size: 43px;
    }

    .services-hero__subtitle {
        font-size: 21px;
    }

    .services-hero__description {
        max-width: 610px;
    }

    .services-hero__description p {
        font-size: 14px;
        line-height: 1.67;
    }
}

@media (max-width: 767px) {
    .services-page-main::before {
        top: -245px;
        width: 1370px;
    }

    .services-hero {
        min-height: auto;

        padding: 115px 20px 85px;
    }

    .services-hero__content {
        max-width: 560px;
    }

    .services-hero__title {
        margin-bottom: 8px;

        font-size: 36px;
        letter-spacing: -0.6px;
    }

    .services-hero__subtitle {
        max-width: 430px;

        margin-bottom: 24px;

        font-size: 19px;
        line-height: 1.45;
    }

    .services-hero__description {
        max-width: 510px;

        margin-bottom: 28px;
    }

    .services-hero__description p {
        margin-bottom: 17px;

        font-size: 13px;
        line-height: 1.72;
    }

    .services-hero__button {
        min-width: 135px;
        min-height: 43px;

        padding: 15px 23px;

        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-page-main::before {
        top: -195px;
        width: 1180px;
    }

    .services-hero {
        padding: 106px 17px 73px;
    }

    .services-hero__content {
        max-width: 390px;
    }

    .services-hero__title {
        font-size: 31px;
        line-height: 1.25;
    }

    .services-hero__subtitle {
        max-width: 330px;

        margin-bottom: 21px;

        font-size: 17px;
    }

    .services-hero__description {
        max-width: 370px;

        margin-bottom: 25px;
    }

    .services-hero__description p {
        margin-bottom: 15px;

        font-size: 11px;
        line-height: 1.72;
    }

    .services-hero__button {
        min-width: 120px;
        min-height: 39px;
        padding: 14px 21px;
        font-size: 14px;
    }
}

html[dir="rtl"] .services-page-main::before {
    transform: translateX(-50%) scaleX(-1);
}

html[dir="rtl"] .services-hero__content,
html[dir="rtl"] .services-hero__title,
html[dir="rtl"] .services-hero__subtitle,
html[dir="rtl"] .services-hero__description,
html[dir="rtl"] .services-hero__description p {
    direction: rtl;
    text-align: center;
    letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    .services-hero__button {
        transition: none;
    }
}

.services-details {
    position: relative;
    z-index: 10;

    width: 100%;

    margin-top: clamp(-70px, -4vw, -45px);
    margin-bottom: clamp(-70px, -4vw, -45px);

    padding-inline: clamp(6px, 2vw, 28px);

    background: transparent;
    overflow: visible;
}

.services-details__shell {
    position: relative;

    width: min(94vw, 1280px);
    margin-inline: auto;

    padding: clamp(35px, 3.5vw, 58px) clamp(20px, 3.2vw, 50px) clamp(31px, 3.2vw, 52px);

    background-color: #061725;

    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: clamp(15px, 1.3vw, 22px);

    box-shadow:
        0 32px 75px rgba(0, 0, 0, 0.32),
        0 11px 28px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}

.services-details__shell::before {
    content: "";

    position: absolute;
    top: -270px;
    right: -250px;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background: rgba(49, 105, 155, 0.05);
    filter: blur(105px);

    pointer-events: none;
}

.services-details__shell>* {
    position: relative;
    z-index: 2;
}

.services-block-heading h2 {
    margin: 0 0 clamp(4px, 0.45vw, 8px);

    color: #ffffff;

    font-size: 46px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.45px;
}

.services-block-heading__subtitle {
    margin: 0 0 clamp(12px, 1.2vw, 19px);

    color: var(--primary-color);

    font-size: 28px;
    font-weight: 600;
    line-height: 1.45;
}

.services-block-heading__description {
    width: 100%;
    max-width: 920px;
}

.services-block-heading__description p,
.services-block-heading__single-text {
    margin: 0 0 clamp(6px, 0.7vw, 11px);

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    max-width: 755px;
    max-width: 760px;
}

.services-block-heading__description p:last-child {
    margin-bottom: 0;
}

.services-overview-block {
    margin-bottom: clamp(55px, 7vw, 82px);
}

.services-block-heading--overview {
    margin-bottom: clamp(26px, 2.6vw, 42px);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: clamp(9px, 1.2vw, 16px);
}

.services-overview-card {
    position: relative;

    min-width: 0;
    min-height: clamp(100px, 9.2vw, 138px);

    padding: clamp(12px, 1.3vw, 19px) clamp(6px, 0.9vw, 13px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: clamp(9px, 0.9vw, 13px);

    background: #0d233b;

    text-align: center;

    opacity: 0;
    transform: translateY(20px) scale(0.97);

    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    background-image: url("../img/Ellipse 32.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-details.is-visible .services-overview-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.services-details.is-visible .services-overview-card:nth-child(1) {
    transition-delay: 0.04s;
}

.services-details.is-visible .services-overview-card:nth-child(2) {
    transition-delay: 0.09s;
}

.services-details.is-visible .services-overview-card:nth-child(3) {
    transition-delay: 0.14s;
}

.services-details.is-visible .services-overview-card:nth-child(4) {
    transition-delay: 0.19s;
}

.services-details.is-visible .services-overview-card:nth-child(5) {
    transition-delay: 0.24s;
}

.services-details.is-visible .services-overview-card:nth-child(6) {
    transition-delay: 0.29s;
}

.services-details.is-visible .services-overview-card:nth-child(7) {
    transition-delay: 0.34s;
}

.services-details.is-visible .services-overview-card:nth-child(8) {
    transition-delay: 0.39s;
}

.services-details.is-visible .services-overview-card:nth-child(9) {
    transition-delay: 0.44s;
}

.services-details.is-visible .services-overview-card:nth-child(10) {
    transition-delay: 0.49s;
}

.services-overview-card:hover {
    transform: translateY(-5px) scale(1.015);

    border-color: rgba(243, 149, 122, 0.15);

    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(243, 149, 122, 0.04);
}

.services-overview-card__icon {
    width: clamp(42px, 4.7vw, 68px);
    height: clamp(42px, 4.7vw, 68px);

    margin-bottom: clamp(7px, 0.8vw, 12px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.services-overview-card__icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.services-overview-card:hover .services-overview-card__icon img {
    transform: translateY(-3px) scale(1.07);
}

.services-overview-card h3 {
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
}

.services-process-block {
    margin-bottom: clamp(76px, 9.4vw, 98.2px);
}

.services-block-heading--process {
    margin-bottom: clamp(30px, 3vw, 47px);
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: clamp(20px, 4vw, 64px);
}

.services-process-step {
    position: relative;

    min-width: 0;

    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-details.is-visible .services-process-step {
    opacity: 1;
    transform: translateY(0);
}

.services-details.is-visible .services-process-step:nth-child(1) {
    transition-delay: 0.18s;
}

.services-details.is-visible .services-process-step:nth-child(2) {
    transition-delay: 0.27s;
}

.services-details.is-visible .services-process-step:nth-child(3) {
    transition-delay: 0.36s;
}

.services-details.is-visible .services-process-step:nth-child(4) {
    transition-delay: 0.45s;
}

.services-process-step__icon {
    width: clamp(22px, 2.1vw, 32px);
    height: clamp(22px, 2.1vw, 32px);

    margin-bottom: clamp(8px, 0.8vw, 12px);

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.services-process-step__icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;
}

.services-process-step h3 {
    margin: 0 0 clamp(7px, 0.7vw, 11px);

    color: #ffffff;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.services-process-step p {
    max-width: 200px;
    margin: 0;

    color: rgba(255, 255, 255, 0.63);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.services-block-heading--projects {
    margin-bottom: clamp(25px, 2.5vw, 39px);
}

.services-block-heading__single-text {
    max-width: 840px;
    margin-bottom: 0;
}

.services-selected-slider {
    position: relative;

    width: 100%;
    min-width: 0;

    overflow: visible;
}

.services-selected-swiper {
    width: 100%;
    overflow: hidden;

    border-radius: clamp(10px, 1vw, 15px);
}

.services-selected-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-selected-swiper .swiper-slide {
    height: auto;
}

.services-project-card {
    position: relative;

    display: block;
    width: 100%;
    aspect-ratio: 0.82 / 1;

    border-radius: clamp(9px, 0.9vw, 14px);
    overflow: hidden;

    background-color: #102740;
    color: #ffffff;

    transform: translateZ(0);
}

.services-project-card__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.002);

    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.services-project-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.02) 22%,
            rgba(7, 20, 34, 0.2) 55%,
            rgba(7, 20, 34, 0.94) 100%);
}

.services-project-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;

    padding: clamp(9px, 1.1vw, 17px) clamp(8px, 1vw, 15px);
}

.services-project-card__category {
    min-height: clamp(14px, 1.3vw, 20px);

    margin-bottom: clamp(5px, 0.5vw, 8px);
    padding: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    background-color: #eee9d6;
    color: #071422;

    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.services-project-card h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.services-project-card:hover .services-project-card__image {
    transform: scale(1.08);
    filter: brightness(1.06);
}

.services-projects-nav {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: clamp(29px, 2.7vw, 42px);
    height: clamp(29px, 2.7vw, 42px);

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    background: rgba(238, 233, 214, 0.28);
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transform: translateY(-50%);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.services-projects-nav svg {
    width: 45%;
    height: 45%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-projects-nav:hover {
    background-color: var(--primary-color);

    transform: translateY(-50%) scale(1.08);
}

.services-projects-nav--prev {
    left: clamp(-15px, -1.2vw, -7px);
}

.services-projects-nav--next {
    right: clamp(-15px, -1.2vw, -7px);
}

.services-selected-block__action {
    margin-top: clamp(25px, 2.5vw, 40px);

    display: flex;
    justify-content: center;
}

.services-selected-block__button {
    min-width: clamp(100px, 8vw, 130px);
    min-height: clamp(35px, 3vw, 44px);

    padding: clamp(9px, 0.8vw, 12px) clamp(17px, 1.5vw, 24px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;

    box-shadow: 0 10px 24px rgba(243, 149, 122, 0.18);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.services-selected-block__button:hover {
    background-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(243, 149, 122, 0.28);
}

@media (min-width: 1920px) {
    .services-details__shell {
        width: min(88vw, 1750px);
    }

    .services-overview-card {
        min-height: 155px;
    }

    .services-process-step p {
        max-width: 250px;
    }
}

@media (max-width: 991px) {
    .services-details {
        margin-top: -48px;
        margin-bottom: -48px;
    }

    .services-details__shell {
        width: calc(100% - 20px);

        padding: 37px 20px 34px;
    }

    .services-overview-card {
        min-height: 105px;
    }

    .services-process-grid {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .services-details {
        margin-top: -31px;
        margin-bottom: -31px;

        padding-inline: 0;
    }

    .services-details__shell {
        width: calc(100% - 10px);

        padding: 27px 11px 27px;

        border-radius: 14px;
    }

    .services-block-heading h2 {
        font-size: 24px;
    }

    .services-block-heading__subtitle {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .services-block-heading__description p,
    .services-block-heading__single-text {
        font-size: 11px;
        line-height: 1.48;
    }

    .services-overview-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .services-overview-card {
        min-height: 68px;

        padding: 7px 3px;

        border-radius: 7px;
    }

    .services-overview-card__icon {
        width: 30px;
        height: 30px;

        margin-bottom: 4px;
    }

    .services-overview-card h3 {
        font-size: 4.8px;
        line-height: 1.3;
    }

    .services-overview-block {
        margin-bottom: 42px;
    }

    .services-process-block {
        margin-bottom: 47px;
    }

    .services-block-heading--process {
        margin-bottom: 24px;
    }

    .services-process-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }

    .services-process-step__icon {
        width: 18px;
        height: 18px;

        margin-bottom: 6px;
    }

    .services-process-step h3 {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .services-process-step p {
        max-width: none;

        font-size: 4.6px;
        line-height: 1.45;
    }

    .services-block-heading--projects {
        margin-bottom: 19px;
    }

    .services-project-card {
        border-radius: 7px;
    }

    .services-project-card__content {
        padding: 7px 6px;
    }

    .services-project-card__category {
        min-height: 11px;

        margin-bottom: 4px;
        padding: 3px 5px;

        font-size: 4px;
    }

    .services-project-card h3 {
        font-size: 5.5px;
    }

    .services-projects-nav {
        width: 27px;
        height: 27px;
    }

    .services-projects-nav--prev {
        left: -8px;
    }

    .services-projects-nav--next {
        right: -8px;
    }

    .services-selected-block__action {
        margin-top: 22px;
    }

    .services-selected-block__button {
        min-width: 105px;
        min-height: 41px;
        padding: 15px 17px;
        font-size: 15px;
        margin: 10px;
    }
}

.services-selected-block {
    padding: 18px 0px;
}

@media (max-width: 500px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-overview-card {
        min-height: 90px;
    }

    .services-overview-card h3 {
        font-size: 12px;
    }

    .services-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }

    .services-process-step h3 {
        font-size: 13px;
    }

    .services-process-step p {
        font-size: 11px;
    }
}

html[dir="rtl"] .services-details__shell,
html[dir="rtl"] .services-block-heading,
html[dir="rtl"] .services-process-step {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .services-process-step__icon {
    justify-content: flex-start;
}

html[dir="rtl"] .services-projects-nav--prev {
    transform: translateY(-50%) scaleX(-1);
}

html[dir="rtl"] .services-projects-nav--next {
    transform: translateY(-50%) scaleX(-1);
}

@media (prefers-reduced-motion: reduce) {

    .services-overview-card,
    .services-process-step {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .services-project-card__image {
        transition: none;
    }
}

.services-page-main::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: clamp(-540px, -20vw, -270px);
    z-index: 0;

    width: clamp(1650px, 136vw, 3100px);
    aspect-ratio: 2047 / 1408;

    background-image: url("../img/Dark Gradient 0.png");

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    transform: translateX(-50%);
    transform-origin: center;

    pointer-events: none;
    user-select: none;
}

.services-closing-cta {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: clamp(430px, 33vw, 610px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(125px, 9vw, 185px) 20px clamp(75px, 6vw, 120px);

    background: transparent;

    overflow: visible;
}

.services-closing-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.015) 0%,
            transparent 45%,
            rgba(7, 20, 34, 0.05) 100%);

    pointer-events: none;
}

.services-closing-cta__container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1280px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.services-closing-cta__content {
    width: 100%;
    max-width: 720px;

    margin-inline: auto;

    text-align: center;
}

.services-closing-cta__title {
    max-width: 650px;

    margin: 0 auto clamp(28px, 2.5vw, 41px);

    color: #ffffff;

    font-size: clamp(32px, 3vw, 49px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1px;
}

.services-closing-cta__description {
    max-width: 610px;

    margin: 0 auto clamp(29px, 2.4vw, 40px);

    color: rgba(255, 255, 255, 0.86);

    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
}

.services-closing-cta__button {
    min-width: 125px;
    min-height: 44px;

    padding: 12px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 11px 26px rgba(243, 149, 122, 0.21),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.services-closing-cta__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow:
        0 17px 34px rgba(243, 149, 122, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.services-closing-cta__button:active {
    transform: translateY(-1px);
}

.services-closing-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.58);
    outline-offset: 4px;
}

@media (min-width: 1920px) {
    .services-page-main::after {
        bottom: clamp(-730px, -22vw, -470px);

        width: min(143vw, 3250px);
    }

    .services-closing-cta {
        min-height: 650px;

        padding-top: 200px;
        padding-bottom: 135px;
    }

    .services-closing-cta__container {
        max-width: 1800px;
    }

    .services-closing-cta__content {
        max-width: 850px;
    }

    .services-closing-cta__title {
        max-width: 760px;
    }

    .services-closing-cta__description {
        max-width: 700px;
    }

    .services-closing-cta__button {
        min-width: 145px;
        min-height: 50px;

        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .services-page-main::after {
        width: 1800px;
        bottom: -340px;
    }

    .services-closing-cta {
        min-height: 490px;

        padding: 135px 25px 88px;
    }
}

@media (max-width: 900px) {
    .services-page-main::after {
        width: 1560px;
        bottom: -290px;
    }

    .services-closing-cta {
        min-height: 455px;

        padding: 118px 24px 77px;
    }

    .services-closing-cta__content {
        max-width: 620px;
    }

    .services-closing-cta__title {
        max-width: 540px;

        font-size: 37px;
    }

    .services-closing-cta__description {
        max-width: 510px;

        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .services-page-main::after {
        width: 1370px;
        bottom: -240px;
    }

    .services-closing-cta {
        min-height: 390px;

        padding: 96px 20px 66px;
    }

    .services-closing-cta__content {
        max-width: 500px;
    }

    .services-closing-cta__title {
        max-width: 430px;

        margin-bottom: 25px;

        font-size: 31px;
        line-height: 1.35;
        letter-spacing: -0.6px;
    }

    .services-closing-cta__description {
        max-width: 440px;

        margin-bottom: 28px;

        font-size: 13px;
        line-height: 1.7;
    }

    .services-closing-cta__description br {
        display: none;
    }

    .services-closing-cta__button {
        min-width: 118px;
        min-height: 42px;

        padding: 15px 23px;

        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-page-main::after {
        width: 1190px;
        bottom: -195px;
    }

    .services-closing-cta {
        min-height: 340px;

        padding: 77px 17px 55px;
    }

    .services-closing-cta__title {
        max-width: 330px;

        margin-bottom: 21px;

        font-size: 25px;
        line-height: 1.4;
        letter-spacing: -0.3px;
    }

    .services-closing-cta__description {
        max-width: 335px;

        margin-bottom: 24px;

        font-size: 13px;
        line-height: 1.65;
    }

    .services-closing-cta__button {
        min-width: 103px;
        min-height: 38px;
        padding: 14px 23px;
        font-size: 13px;
    }
}

html[dir="rtl"] .services-page-main::after {
    transform: translateX(-50%) scaleX(-1);
}

html[dir="rtl"] .services-closing-cta__content,
html[dir="rtl"] .services-closing-cta__title,
html[dir="rtl"] .services-closing-cta__description {
    direction: rtl;
    text-align: center;
    letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    .services-closing-cta__button {
        transition: none;
    }
}

html[dir="rtl"] .services-projects-nav--prev {
    left: unset;
    right: clamp(-15px, -1.2vw, -7px);
}

html[dir="rtl"] .services-projects-nav--next {
    right: unset;
    left: clamp(-15px, -1.2vw, -7px);
}

.project-details-page {
    width: 100%;
    background-color: var(--bg-dark);
}

.project-detail-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: clamp(540px, 45vw, 690px);

    display: flex;
    align-items: flex-end;

    padding: clamp(130px, 11vw, 175px) 0 clamp(48px, 5vw, 72px);

    background-color: var(--bg-dark);
    overflow: hidden;
}

.project-detail-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -4;

    background-image: var(--project-hero-image);
    background-repeat: no-repeat;
    background-position: center 45%;
    background-size: cover;

    transform: scale(1.01);

    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-detail-hero__video {
    position: absolute;
    inset: 0;
    z-index: -3;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 45%;

    transform: scale(1.01);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);

    pointer-events: none;
}

.project-detail-hero:hover .project-detail-hero__video {
    transform: scale(1.045);
}

.project-detail-hero::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg,
            rgba(8, 14, 26, 0.3) 0%,
            rgba(8, 14, 26, 0.65) 60%,
            #071422 100%);

    pointer-events: none;
}

.project-detail-hero:hover::before {
    transform: scale(1.045);
}

.project-detail-hero__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1365px;

    margin: 0 auto;
    padding-inline: clamp(24px, 5vw, 70px);
}

.project-detail-hero__content {
    width: 100%;
    max-width: 760px;

    text-align: left;
}

.project-detail-hero__category {
    min-height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
    padding: 7px 13px;

    border-radius: 50px;

    background-color: #eee9d6;
    color: #071422;

    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.project-detail-hero__title {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.project-detail-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px 24px;
}

.project-detail-hero__meta-item {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;

    white-space: nowrap;
}

.project-detail-hero__meta-item sup {
    position: relative;
    top: -0.2em;

    font-size: 8px;
}

.project-detail-hero__meta-icon {
    width: 15px;
    height: 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    color: var(--primary-color);
}

.project-detail-hero__meta-icon svg {
    display: block;

    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991px) {
    .project-detail-hero {
        min-height: 610px;

        padding: 125px 0 55px;
    }

    .project-detail-hero::before {
        background-position: center;
    }

    .project-detail-hero__title {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .project-detail-hero {
        min-height: 560px;

        padding: 110px 0 45px;
    }

    .project-detail-hero::after {
        background:
            linear-gradient(90deg,
                rgba(7, 20, 34, 0.64) 0%,
                rgba(7, 20, 34, 0.24) 100%),
            linear-gradient(180deg,
                rgba(7, 20, 34, 0.18) 0%,
                rgba(7, 20, 34, 0.17) 42%,
                rgba(7, 20, 34, 0.68) 72%,
                #071422 100%);
    }

    .project-detail-hero__container {
        padding-inline: 24px;
    }

    .project-detail-hero__category {
        margin-bottom: 14px;
    }

    .project-detail-hero__title {
        margin-bottom: 19px;
        font-size: 39px;
    }

    .project-detail-hero__meta {
        gap: 12px 20px;
    }

    .project-detail-hero__meta-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .project-detail-hero {
        min-height: 535px;

        padding: 105px 0 36px;
    }

    .project-detail-hero::before {
        background-position: 58% center;
    }

    .project-detail-hero__container {
        padding-inline: 18px;
    }

    .project-detail-hero__category {
        min-height: 24px;

        margin-bottom: 13px;
        padding: 6px 11px;

        font-size: 9px;
    }

    .project-detail-hero__title {
        margin-bottom: 18px;

        font-size: 32px;
        letter-spacing: -0.7px;
    }

    .project-detail-hero__meta {
        display: grid;
        grid-template-columns: repeat(2, max-content);

        gap: 12px 20px;
    }

    .project-detail-hero__meta-item {
        font-size: 10px;
    }

    .project-detail-hero__meta-icon {
        width: 13px;
        height: 13px;
    }
}

html[dir="rtl"] .project-detail-hero__content {
    text-align: right;
}

html[dir="rtl"] .project-detail-hero__meta {
    direction: rtl;
}

html[dir="rtl"] .project-detail-hero__meta-item {
    direction: rtl;
}

html[dir="rtl"] .project-detail-hero__title {
    letter-spacing: 0;
}

.project-content-section {
    position: relative;
    width: 100%;

    padding: clamp(65px, 6vw, 95px) 0 clamp(75px, 7vw, 115px);

    background-color: #071422;
    overflow: hidden;
}

.project-content-section::before {
    content: "";

    position: absolute;
    top: 20%;
    left: -230px;

    width: 460px;
    height: 460px;

    border-radius: 50%;
    background-color: rgba(37, 91, 139, 0.055);
    filter: blur(110px);

    pointer-events: none;
}

.project-content-section__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;

    margin: 0 auto;
    padding-inline: clamp(24px, 4vw, 58px);

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 285px);

    grid-template-areas:
        "overview details"
        "numbers details"
        "gallery details"
        "recognition details";

    column-gap: clamp(35px, 4vw, 65px);
    row-gap: clamp(40px, 4vw, 60px);

    align-items: start;
}

.project-inner-title {
    position: relative;

    margin: 0 0 20px;
    padding-left: 27px;

    color: #ffffff;

    font-size: clamp(21px, 1.7vw, 27px);
    font-weight: 600;
    line-height: 1.25;
}

.project-inner-title::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 0;

    width: 18px;
    height: 2px;

    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.48);

    transform: translateY(-50%);
}

.project-overview-block {
    grid-area: overview;
}

.project-overview-block__description {
    width: 100%;
    max-width: 940px;
}

.project-overview-block__description p {
    margin: 0 0 17px;

    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 400;
    line-height: 1.65;
}

.project-overview-block__description p:last-child {
    margin-bottom: 0;
}

.project-details-card {
    grid-area: details;

    position: sticky;
    top: 15px;

    width: 100%;

    padding: 24px 20px 19px;

    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 17px;

    background: linear-gradient(145deg,
            rgba(29, 45, 61, 0.98),
            rgba(24, 39, 54, 0.98));

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);

    overflow: hidden;
}

.project-details-card::before {
    content: "";

    position: absolute;
    top: -110px;
    right: -100px;

    width: 210px;
    height: 210px;

    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.025);
    filter: blur(35px);

    pointer-events: none;
}

.project-details-card>* {
    position: relative;
    z-index: 2;
}

.project-details-card__title {
    margin: 0 0 21px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
}

.project-details-list {
    margin: 0;
    padding: 0;
}

.project-details-list__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 14px;
}

.project-details-list__row:last-child {
    margin-bottom: 0;
}

.project-details-list__row dt,
.project-details-list__row dd {
    margin: 0;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

.project-details-list__row dt {
    color: rgba(255, 255, 255, 0.72);
}

.project-details-list__row dd {
    max-width: 125px;

    color: rgba(255, 255, 255, 0.58);
    text-align: right;
}

.project-details-card__divider {
    width: calc(100% + 40px);
    height: 1px;

    margin: 22px -20px 18px;

    background-color: rgba(255, 255, 255, 0.045);
}

.project-details-team__title {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
}

.project-details-team__list {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 11px;
}

.project-team-member {
    display: flex;
    align-items: center;

    gap: 9px;
}

.project-team-member__avatar {
    width: 23px;
    height: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background-color: rgba(243, 149, 122, 0.22);
    color: var(--primary-color);

    font-size: 9px;
    font-weight: 600;
}

.project-team-member__role {
    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;
    font-weight: 400;
}

.project-details-card__button {
    width: 100%;
    min-height: 47px;

    margin-top: 30px;
    padding: 13px 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--primary-color);
    border-radius: 50px;

    background-color: var(--primary-color);
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;

    box-shadow:
        0 10px 25px rgba(243, 149, 122, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-details-card__button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(243, 149, 122, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.project-numbers-block {
    grid-area: numbers;
}

.project-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: clamp(12px, 1.6vw, 20px);
}

.project-number-card {
    min-width: 0;
    min-height: 92px;

    padding: 17px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 12px;

    background-color: #19293a;

    text-align: center;

    opacity: 0;
    transform: translateY(20px) scale(0.96);
}

.project-numbers-block.is-visible .project-number-card {
    animation: projectNumberCardShow 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.project-numbers-block.is-visible .project-number-card:nth-child(1) {
    animation-delay: 0.05s;
}

.project-numbers-block.is-visible .project-number-card:nth-child(2) {
    animation-delay: 0.13s;
}

.project-numbers-block.is-visible .project-number-card:nth-child(3) {
    animation-delay: 0.21s;
}

.project-numbers-block.is-visible .project-number-card:nth-child(4) {
    animation-delay: 0.29s;
}

.project-number-card__value {
    display: block;

    margin-bottom: 9px;

    color: var(--primary-color);

    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.project-number-card__label {
    display: block;

    color: rgba(255, 255, 255, 0.57);

    font-size: 8px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@keyframes projectNumberCardShow {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-gallery-block {
    grid-area: gallery;
}

.project-gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: clamp(175px, 15vw, 230px) clamp(125px, 11vw, 170px);

    gap: clamp(9px, 1vw, 14px);
}

.project-gallery-item {
    position: relative;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;
    border-radius: 13px;

    background-color: #15283a;

    overflow: hidden;
    isolation: isolate;

    opacity: 0;
    transform: translateY(24px) scale(0.965);

    cursor: zoom-in;
}

.project-gallery-item--featured {
    grid-column: span 2;
}

.project-gallery-block.is-visible .project-gallery-item {
    animation: projectGalleryItemShow 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(1) {
    animation-delay: 0.05s;
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(2) {
    animation-delay: 0.13s;
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(3) {
    animation-delay: 0.21s;
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(4) {
    animation-delay: 0.29s;
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(5) {
    animation-delay: 0.37s;
}

.project-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.002);

    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.45s ease;
}

.project-gallery-item__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(180deg,
            rgba(7, 20, 34, 0.02),
            rgba(7, 20, 34, 0.09));

    transition: background 0.35s ease;
}

.project-gallery-item__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;

    width: 43px;
    height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background-color: rgba(7, 20, 34, 0.48);
    color: #ffffff;

    opacity: 0;
    transform: translate(-50%, -42%) scale(0.86);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
}

.project-gallery-item__zoom svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-gallery-item:hover img {
    transform: scale(1.075);
    filter: brightness(1.04);
}

.project-gallery-item:hover .project-gallery-item__overlay {
    background-color: rgba(7, 20, 34, 0.18);
}

.project-gallery-item:hover .project-gallery-item__zoom {
    opacity: 1;

    transform: translate(-50%, -50%) scale(1);
}

.project-gallery-item:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

@keyframes projectGalleryItemShow {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-recognition-block {
    grid-area: recognition;
}

.project-recognition-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;
    max-width: 620px;
}

.project-recognition-badge {
    min-height: 44px;

    padding: 10px 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.025);
    border-radius: 10px;

    background-color: #19293a;
    color: rgba(255, 255, 255, 0.69);

    font-size: 10px;
    font-weight: 400;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.project-recognition-badge:hover {
    transform: translateY(-3px);

    border-color: rgba(243, 149, 122, 0.16);
    background-color: #1d3043;
}

.project-recognition-badge__icon {
    width: 16px;
    height: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    color: var(--primary-color);
}

.project-recognition-badge__icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-project-reveal] {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: var(--project-reveal-delay, 0ms);
}

[data-project-reveal="right"] {
    transform: translateX(35px);
}

[data-project-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background-color: rgba(3, 11, 19, 0.94);

    opacity: 0;
    visibility: hidden;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.project-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.project-lightbox__figure {
    position: relative;

    width: min(1050px, calc(100vw - 120px));
    max-height: calc(100vh - 80px);

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.project-lightbox__image {
    display: block;

    max-width: 100%;
    max-height: calc(100vh - 80px);

    border-radius: 16px;

    object-fit: contain;

    opacity: 0;
    transform: scale(0.96);

    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-lightbox.is-open .project-lightbox__image {
    opacity: 1;
    transform: scale(1);
}

.project-lightbox__close,
.project-lightbox__nav {
    position: absolute;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.project-lightbox__close:hover,
.project-lightbox__nav:hover {
    background-color: var(--primary-color);
}

.project-lightbox__close svg,
.project-lightbox__nav svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-lightbox__close {
    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;
}

.project-lightbox__nav {
    top: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%);
}

.project-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.07);
}

.project-lightbox__nav--previous {
    left: 22px;
}

.project-lightbox__nav--next {
    right: 22px;
}

@media (max-width: 1100px) {
    .project-content-section__container {
        grid-template-columns: minmax(0, 1fr) 245px;

        column-gap: 32px;
    }

    .project-details-card {
        padding-inline: 17px;
    }

    .project-details-card__divider {
        width: calc(100% + 34px);
        margin-inline: -17px;
    }
}

@media (max-width: 900px) {
    .project-content-section {
        padding-top: 60px;
    }

    .project-content-section__container {
        grid-template-columns: 1fr;

        grid-template-areas:
            "overview"
            "details"
            "numbers"
            "gallery"
            "recognition";

        row-gap: 45px;
    }

    .project-details-card {
        position: relative;
        top: auto;

        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

        gap: 20px 35px;

        padding: 25px;
    }

    .project-details-card__title {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    .project-details-list {
        grid-column: 1;
    }

    .project-details-card__divider {
        display: none;
    }

    .project-details-team {
        grid-column: 2;
    }

    .project-details-card__button {
        grid-column: 1 / -1;

        width: auto;
        min-width: 210px;

        margin: 5px auto 0;
    }

    .project-gallery-grid {
        grid-template-rows: clamp(210px, 29vw, 270px) clamp(150px, 21vw, 190px);
    }
}

@media (max-width: 700px) {
    .project-content-section__container {
        padding-inline: 20px;
    }

    .project-details-card {
        display: block;
    }

    .project-details-card__title {
        margin-bottom: 21px;
    }

    .project-details-card__divider {
        display: block;

        width: calc(100% + 50px);
        margin-inline: -25px;
    }

    .project-details-card__button {
        width: 100%;
        margin-top: 28px;
    }

    .project-numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-number-card {
        min-height: 88px;
    }

    .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: clamp(130px, 32vw, 190px);
    }

    .project-gallery-item--featured {
        grid-column: 1 / -1;
        min-height: clamp(220px, 57vw, 330px);
    }

    .project-recognition-list {
        grid-template-columns: 1fr;
    }

    .project-lightbox {
        padding: 65px 16px 25px;
    }

    .project-lightbox__figure {
        width: 100%;
    }

    .project-lightbox__nav {
        width: 41px;
        height: 41px;
    }

    .project-lightbox__nav--previous {
        left: 10px;
    }

    .project-lightbox__nav--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .project-content-section {
        padding: 52px 0 72px;
    }

    .project-content-section__container {
        padding-inline: 17px;
        row-gap: 38px;
    }

    .project-inner-title {
        margin-bottom: 17px;
        padding-left: 23px;

        font-size: 20px;
    }

    .project-inner-title::before {
        width: 15px;
    }

    .project-overview-block__description p {
        font-size: 12px;
        line-height: 1.72;
    }

    .project-details-card {
        padding: 22px 18px 18px;
        border-radius: 14px;
    }

    .project-details-card__divider {
        width: calc(100% + 36px);
        margin-inline: -18px;
    }

    .project-numbers-grid {
        gap: 10px;
    }

    .project-number-card {
        min-height: 80px;
        border-radius: 10px;
    }

    .project-number-card__value {
        font-size: 19px;
    }

    .project-gallery-grid {
        gap: 8px;
        grid-auto-rows: 120px;
    }

    .project-gallery-item {
        border-radius: 10px;
    }

    .project-gallery-item--featured {
        min-height: 210px;
    }

    .project-gallery-item__zoom {
        display: none;
    }

    .project-recognition-badge {
        min-height: 42px;
        padding-inline: 13px;
    }

    .project-lightbox__close {
        top: 14px;
        right: 14px;

        width: 40px;
        height: 40px;
    }
}

html[dir="rtl"] .project-inner-title {
    padding-right: 27px;
    padding-left: 0;

    text-align: right;
}

html[dir="rtl"] .project-inner-title::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .project-overview-block__description {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .project-details-list__row dd {
    text-align: left;
}

html[dir="rtl"] .project-details-card__button,
html[dir="rtl"] .project-team-member,
html[dir="rtl"] .project-recognition-badge {
    direction: rtl;
}

html[dir="rtl"] [data-project-reveal="right"] {
    transform: translateX(-35px);
}

html[dir="rtl"] [data-project-reveal].is-visible {
    transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {

    [data-project-reveal],
    .project-number-card,
    .project-gallery-item {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none !important;
    }

    .project-gallery-item img,
    .project-gallery-item__zoom,
    .project-details-card__button {
        transition: none;
    }
}

.project-gallery-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: dense;

    gap: clamp(8px, 0.8vw, 12px);
}

.project-gallery-grid .project-gallery-item {
    grid-column: auto;
    grid-row: auto;

    width: 100%;
    height: 100%;
    min-height: 0;

    border-radius: clamp(9px, 0.9vw, 14px);
}

.project-gallery-grid .project-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.project-gallery-grid.gallery-count-5 {
    grid-template-rows: repeat(3, clamp(82px, 7.3vw, 112px));
}

.project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(2) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 2;
}

.project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 3;
}

.project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 3;
}

.project-gallery-grid.gallery-count-6 {
    grid-template-rows: repeat(3, clamp(88px, 18.3vw, 187px));
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(2) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 2;
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(5) {
    grid-column: 3 / 5;
    grid-row: 3;
}

.project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(6) {
    grid-column: 5 / 7;
    grid-row: 3;
}

.project-gallery-grid.gallery-count-1,
.project-gallery-grid.gallery-count-2,
.project-gallery-grid.gallery-count-3,
.project-gallery-grid.gallery-count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 22vw, 280px);
}

.project-gallery-grid.gallery-count-1 .project-gallery-item:first-child {
    grid-column: 1 / -1;
}

.project-gallery-grid .project-gallery-item {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.project-gallery-grid .project-gallery-item:hover {
    z-index: 5;

    transform: translateY(-3px);

    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(243, 149, 122, 0.09);
}

.project-gallery-block.is-visible .project-gallery-item:nth-child(6) {
    animation-delay: 0.45s;
}

@media (max-width: 900px) {

    .project-gallery-grid.gallery-count-5,
    .project-gallery-grid.gallery-count-6 {
        grid-template-rows: repeat(3, clamp(85px, 10.5vw, 115px));
    }
}

@media (max-width: 700px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: clamp(120px, 32vw, 175px);

        gap: 8px;
    }

    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: clamp(225px, 60vw, 330px);
    }

    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(2),
    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(3),
    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(4),
    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: clamp(225px, 60vw, 330px);
    }

    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(2),
    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(3),
    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(4),
    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(6) {
        grid-column: 1 / -1;
        grid-row: auto;

        min-height: clamp(150px, 42vw, 220px);
    }
}

@media (max-width: 480px) {
    .project-gallery-grid {
        grid-auto-rows: clamp(105px, 31vw, 145px);

        gap: 7px;
    }

    .project-gallery-grid.gallery-count-5 .project-gallery-item:nth-child(1),
    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(1) {
        min-height: clamp(200px, 58vw, 275px);
    }

    .project-gallery-grid.gallery-count-6 .project-gallery-item:nth-child(6) {
        min-height: clamp(130px, 38vw, 185px);
    }

    .project-gallery-grid .project-gallery-item {
        border-radius: 9px;
    }
}

@media (max-width: 991px) {
    .header {
        z-index: 9999;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: 0px;
        left: 0px;
        background: rgba(18, 22, 31, 0.96);
        backdrop-filter: blur(14px);
        /* border: 1px solid rgba(255, 255, 255, 0.12); */
        border-radius: 0px;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: 0.3s ease;
        z-index: 9999;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: transparent;
        border: 0;
        cursor: pointer;
        z-index: 10000;
    }

    .mobile-toggle span {
        width: 28px;
        height: 2px;
        background: #fff;
        display: block;
        transition: 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .body-contact {
        display: flex;
        flex-direction: column;
    }

    #main-header {
        order: 1;
    }

    .meeting-section {
        order: 2;
        margin-top: 50px;
    }

    .contact-hero {
        order: 3;
    }

    .main-footer {
        order: 4;
    }
}

.cer-block {
    margin-top: 40px;
}

.cer-block .d-flex div:before {
    content: "";
    width: 1px;
    height: 80%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #3b4f6a;
}

.cer-block-container {
    display: flex;
}

.cer-block .d-flex div {
    display: flex;
    align-items: center;
}

.cer-block .d-flex div {
    position: relative;
    padding: 0 17px;
}

.cer-block .d-flex div:first-child:before {
    display: none;
}

.cer-block .d-flex div:first-child {
    padding-inline-start: 0;
}






.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 32px;

    width: 100%;
    padding: 40px 0 70px;
}

.client-logo-card {
    height: 155px;
    padding: 25px 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #26313e;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.client-logo-card img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 270px;
    max-height: 95px;

    object-fit: contain;
    object-position: center;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
    .clients-logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .clients-logos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 30px 0 50px;
    }

    .client-logo-card {
        height: 125px;
        padding: 20px;
        border-radius: 20px;
    }

    .client-logo-card img {
        max-height: 75px;
    }

    .about-numbers__grid {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, auto);

        gap: 18px 0;


        overflow: hidden;
    }

    .about-number-item {
        min-width: 0;
        min-height: 135px;

        gap: 8px;
        padding: 22px 12px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .about-number-item:not(:last-child)::after {
        display: none;
    }

    .about-number-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }



    .about-number-item__value {
        margin: 0;

        font-size: clamp(30px, 9vw, 42px);
        font-weight: 700;
        line-height: 1;

        letter-spacing: -0.03em;
    }

    .about-number-item__label {
        width: 100%;
        max-width: 125px;

        font-size: clamp(11px, 3.2vw, 14px);
        font-weight: 400;
        line-height: 1.4;
    }

    .about-values-block {
        margin-bottom: 50px;
    }

    .about-values-block__title {
        width: 100%;
        max-width: 330px;

        margin: 0 auto 28px;
        padding-inline: 10px;

        text-align: center;
    }
}

@media (max-width: 450px) {
    .clients-logos-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-card {
        height: 135px;
    }
}

.about-values-mosaic.is-visible .about-value-card:hover {
    transform: translateY(-5px) scale(1.008);

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.27),
        0 0 0 1px rgba(243, 149, 122, 0.08);
}

.about-value-card:hover::before {
    transform: scale(1.08) translate3d(0, -4px, 0);
}

.about-value-card--02:hover::before,
.about-value-card--04:hover::before {
    transform: scale(1.08) translate3d(-5px, -3px, 0);
}

.about-value-card--01:hover::before,
.about-value-card--03:hover::before,
.about-value-card--05:hover::before {
    transform: scale(1.08) translate3d(5px, -4px, 0);
}

@media (max-width: 999px) {
    .about-values-mosaic {
        width: 100%;
        aspect-ratio: auto;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;

        grid-template-areas:
            "card01 card01"
            "card02 card03"
            "card04 card05";

        gap: 10px;
    }

    .about-value-card {
        min-height: 220px;
        border-radius: 13px;

        transform: translateY(18px) scale(0.98);
    }

    .about-value-card--01 {
        min-height: 300px;
    }

    .about-value-card::before {
        inset: 0;

        background-position: center;
        transform: scale(1.01);

        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .about-value-card--01::before {
        background-position: center 35%;
    }

    .about-value-card--02::before {
        background-position: center;
    }

    .about-value-card--03::before {
        background-position: center;
    }

    .about-value-card--04::before {
        background-position: center;
    }

    .about-value-card--05::before {
        background-position: center;
    }

    .about-value-card__shade {
        background: linear-gradient(180deg,
                rgba(5, 18, 31, 0.02) 0%,
                rgba(5, 18, 31, 0.12) 40%,
                rgba(5, 18, 31, 0.9) 100%);
    }

    .about-value-card--light .about-value-card__shade {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.02) 0%,
                rgba(255, 255, 255, 0.18) 42%,
                rgba(255, 255, 255, 0.94) 100%);
    }

    .about-value-card__content {
        padding: 15px 13px;
    }

    .about-value-card__content h3 {
        margin: 0 0 7px;

        font-size: clamp(15px, 4vw, 19px);
        font-weight: 600;
        line-height: 1.25;
    }

    .about-value-card__content p {
        display: -webkit-box;
        overflow: hidden;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;

        font-size: clamp(10px, 2.75vw, 13px);
        line-height: 1.45;
    }

    .about-value-card--01 .about-value-card__content {
        padding: 19px 17px;
    }

    .about-value-card--01 .about-value-card__content h3 {
        font-size: clamp(19px, 5vw, 24px);
    }

    .about-value-card--01 .about-value-card__content p {
        max-width: 460px;

        font-size: clamp(12px, 3.2vw, 15px);

        -webkit-line-clamp: 5;
    }


    .about-values-mosaic.is-visible .about-value-card:hover {
        transform: translateY(0) scale(1);
        box-shadow: none;
    }

    .about-value-card:hover::before {
        transform: scale(1.01);
    }

    .about-value-card:active::before {
        transform: scale(1.06);
    }

    .about-value-card:active {
        transform: scale(0.985);
    }





}


html[lang="en"],
html[lang="en"] body {
    font-family: "Poppins-cust", sans-serif !important;
}

html[lang="ar"] ,
html[lang="ar"] body {
    font-family: "ArabicFont", sans-serif !important;
}