:root {
    --main-color: #062835;
    --sub-color: #96bfcf;
    --dark-sub-color: #5cb6bc;
    --purble-color: #7f83be;
    --border-color: rgba(255, 255, 255, 0.1);
    --capsule-bg: rgba(255, 255, 255, 0.02);
}


/* English Font - Manrope */
html:not([dir="rtl"]) body {
    font-family: 'Manrope', sans-serif;
    font-style: normal !important;
}

/* Arabic Font - Zain */
html[dir="rtl"] body {
    font-family: 'Zain', sans-serif;
    font-style: normal !important;
}


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


html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background-image: url('../images/bg.png');
    overflow-x: hidden !important;

}

ul {
    padding-inline-start: 1rem;
}

a {
    text-decoration: none !important;

}

.mt-5 {
    margin-top: 9rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

/*  */


/* Alert Container */
.alert-container {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.5s ease;
}

.alert-error {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    color: #4caf50;
}

.alert-message {
    font-size: 16px;
    font-weight: 500;
}

/* Error Messages */
.error-message {
    color: #ff4444;
    font-size: 13px;
    margin-top: 5px;
    display: none;
    animation: fadeIn 0.3s ease;
}

/* Success Box */
.success-box {
    display: none;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    animation: slideUp 0.5s ease;
}

.success-box h4 {
    color: #4caf50;
    font-size: 24px;
    margin-bottom: 15px;
}

.success-box p {
    color: #ffff;
    font-size: 16px;
    line-height: 1.6;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-page .main-text @keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* File selection display */
.file-selected-name {
    margin-top: 10px;
    font-size: 14px;
    color: #4caf50;
    font-weight: 500;
}

/* Dropzone styles */
.dropzone-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.dropzone-area.dragover {
    border-color: #5cb6bc;
    background: rgba(92, 182, 188, 0.1);
}

.dropzone-area .file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropzone-text {
    color: #96bfcf;
    font-size: 16px;
}

.dropzone-text b {
    color: #5cb6bc;
}

.hint {
    display: block;
    font-size: 12px;
    color: #96bfcf;
    margin-top: 5px;
    opacity: 0.7;
}

.hidden-field {
    display: none;
    margin-top: 10px;
}




/* navbar */
.navbar {
    padding: 2rem 0%;
    /* padding: 2rem 5%; */
    z-index: 100;
    flex-shrink: 0;
    width: 100%;
}


.navbar .container-fluid {
    padding: 0;
}

.navbar .navbar-img {
    width: 180px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar .navbar-img img {
    max-width: 180px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.navbar .navbar-img .logo-en {
    max-width: 180px;
    max-height: 75px;
}


.navbar .navbar-img .logo-ar {
    max-width: 180px;
    max-height: 75px;
}

.navbar .desktop-contact {
    width: 180px;
}

.nav-capsule {
    background: var(--main-color);
    border: 1px solid var(--sub-color);
    border-radius: 50px;
    padding: 8px 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.nav-capsule:hover {
    border-color: var(--sub-color);
    box-shadow: 0 4px 25px rgba(150, 191, 207, 0.2), inset 0 0 30px rgba(150, 191, 207, 0.05);
    transform: scale(1.02);
    background: rgba(6, 40, 53, 0.95);
}

.nav-link {
    color: white !important;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 5px 0 !important;
    opacity: 0.85;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
}

.nav-link:hover {
    opacity: 1;
    color: var(--sub-color) !important;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link:hover i {
    transform: rotate(-15deg);
    transition: transform 0.3s;
}

.lang-link a {
    color: inherit;
    text-decoration: none;
}

.contact-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 30px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s;
    box-shadow: inset 0 0 5px rgba(150, 191, 207, 0.8);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--sub-color);
    color: var(--sub-color);
    transform: translateY(-2px);
    box-shadow: inset 0 0 5px rgba(150, 191, 207, 0.8);
}


.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 15px;
    color: white !important;
    transition: all 0.3s;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--sub-color);
}

.mobile-menu-wrapper {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    padding: 0 5%;
    z-index: 200;
    pointer-events: none;
}

.mobile-menu {
    display: none;
    background: rgba(6, 40, 53, 0.98);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px solid var(--sub-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.8rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu .nav-link:hover {
    color: var(--sub-color) !important;
    padding-inline-start: 10px !important;
}

.mobile-menu .contact-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* custom button */

.custom-btn {
    position: relative;
    background: linear-gradient(to right, rgba(6, 40, 53, 0.4) 0%, rgba(6, 40, 53, 0.38) 25%, rgba(255, 255, 255, 0.05) 38%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.05) 62%, rgba(6, 40, 53, 0.38) 75%, rgba(6, 40, 53, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 55px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset -3px 0px 9px rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.custom-btn::before {
    display: none;
}

.custom-btn:hover {
    background: linear-gradient(to right, rgba(6, 40, 53, 0.55) 0%, rgba(6, 40, 53, 0.5) 25%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.08) 62%, rgba(6, 40, 53, 0.5) 75%, rgba(6, 40, 53, 0.55) 100%);
    border-color: var(--sub-color);
    color: var(--sub-color);
    transform: translateY(-2px);
    box-shadow: inset 0 0 5px rgba(150, 191, 207, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.custom-btn.small {
    font-size: clamp(15px, 3vw, 20px);
    padding: 6px 30px;
}

/* ------------------------------------------------------- home page ------------------------------------------------------ */
#about,
#work,
#services,
#industries {
    scroll-margin-top: 60px;
}

.home-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 29, 41, 0.3);
    z-index: 0;
}

.home-page>* {
    position: relative;
    z-index: 1;
}


.home-page .main-section {
    background-image: url('../images/bg-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}


.home-page .main-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10% 8% 10%;
}

.home-page .title {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--sub-color);
}

.home-page .title em {
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sub-color);
}

.home-page .subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    color: white;
    max-width: 750px;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.home-page .cta-btn {
    position: relative;
    background-color: rgba(6, 40, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 55px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset -3px 0px 9px rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.home-page .cta-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    inset-inline-start: 52%;
    transform: translateX(-50%);
    width: 55%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(12px);
    pointer-events: none;
}



.home-page .cta-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--sub-color);
    color: var(--sub-color);
    transform: translateY(-2px);
    box-shadow: inset 0 0 5px rgba(150, 191, 207, 0.8);
}

.home-page .background {
    background-image: url('../images/bg.png');
}

/* vision */
.home-page .vision {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .vision span {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: white;
}

.home-page .title-all {
    font-size: clamp(1.8rem, 7vw, 3.3rem);
    font-weight: 200;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
    color: var(--sub-color);
}

.home-page .title-all em {
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sub-color);
}

.home-page .vision .tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.home-page .vision .img-box {
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 0 12px rgba(150, 191, 207, 0.8);
    background-color: rgba(6, 40, 53, 0.5);
    height: 150px;
    width: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 10px;

}

.home-page .vision .img-box span {
    font-size: 10px;
    text-wrap: warp;
}

.home-page .vision img {
    height: 50px;
    width: 50px;
}

.home-page .vision .numbers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

.home-page .vision .numbers .box {
    position: relative;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 0 12px rgba(150, 191, 207, 0.8);
    height: 150px;
    width: 100%;
    color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: clamp(2rem, 5vw, 2.5rem);
    background-color: rgba(6, 40, 53, 0.5);
    overflow: hidden;
}

.home-page .vision .numbers .box::before {
    content: '';
    position: absolute;
    top: -18px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 64px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.numbers .box:last-child .number {

    transition: color 0.3s ease;
}

.home-page.ar .numbers .number {
    direction: ltr;

}

.numbers .box:last-child .number.counting {

    color: white;
}

.home-page .vision .numbers .box .text {
    color: var(--sub-color);
    font-size: clamp(1rem, 2vw, 1.3rem);
}

@media (max-width: 1196px) {
    .home-page .vision .tools {
        /* margin-top: 30px; */
        justify-content: flex-end;
    }
}

@media (max-width: 1200px) {
    .d-lg-none {
        display: block !important;
    }

    .nav-capsule {
        display: none !important;
    }

    .navbar {
        /* padding: 1.5rem 5%; */
        padding: 1.5rem 0% !important;

    }

    .desktop-contact {
        display: none !important;
    }

    .navbar .container-fluid {
        padding: 0 0%;
        /* padding: 0 5%; */
    }

    .mobile-menu .contact-btn {
        font-size: 16px;
        padding-inline: 20px;
    }

    .home-page .vision .tools {
        /* margin-top: 30px; */
        justify-content: flex-end;
    }
}

@media (max-width: 769px) {
    .home-page .vision .tools {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem 5%;
    }

    .main-text {
        padding: 0 5% 10% 5%;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .mobile-menu {
        padding: 1.5rem;
    }

    .home-page .vision .tools {
        margin-top: 30px;
        justify-content: center;

    }

    .home-page .vision .numbers {
        flex-direction: column;
    }

    .mt-5 {
        margin-top: 5rem !important;
    }



}

/* Journey Section */
.home-page .journey {
    display: flex;
    align-items: center;
}

.home-page .journey .swiper-wrapper h3 {
    font-size: 1.64rem !important;
}

.home-page .journey .header span {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.home-page .journey-swiper {
    padding: 20px 0 50px;
    position: relative;
}

.swiper-section {
    height: 90%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

.home-page.swiper-section::before {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-start: 3rem;
    inset-inline-end: 0;
    height: 2px;
    background: rgba(127, 131, 190, 0.15);
    transform: translateY(-50%);
    z-index: 0;
}

.home-page .swiper-section::before {
    display: none;
}

.home-page .swiper-section .animated-line {
    position: absolute;
    top: 50%;
    inset-inline-start: 3rem;
    background: linear-gradient(90deg,
            rgba(189, 190, 222, 1) 0%,
            rgba(127, 131, 190, 1) 50%,
            rgba(61, 64, 115, 1) 100%);
    transform: translateY(-50%);
    z-index: 1;
    width: 0%;
    height: 4px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .swiper-section .left,
.home-page.swiper-section .right {
    z-index: 1;
}

.home-page .swiper-section .left {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.home-page .swiper-section .left .text {
    position: absolute;
    top: 40%;
    padding-inline-start: 70px;
    flex: 1;
}

.home-page .swiper-section .left h3 {
    color: var(--sub-color);
    padding-bottom: 30px !important;
}

.home-page .swiper-section .left span {
    color: white;
    font-size: 1.2rem;
    display: block;
    padding-top: 30px;
}

.home-page .swiper-section .left .dot-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: 0rem;
    z-index: 2;
}

.home-page .swiper-section .left .dot {
    background-color: transparent;
    border: 1px solid var(--sub-color);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.home-page .swiper-section .left .journey-dot {
    background: linear-gradient(90deg, rgba(189, 190, 222, 1) 0%, rgba(127, 131, 190, 1) 50%, rgba(61, 64, 115, 1) 100%);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.5s ease;
}

.home-page .swiper-section .right {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px 0;
}

.home-page .swiper-section .right .number {
    font-size: clamp(20rem, 43vw, 35rem);
    color: var(--sub-color);
    opacity: 0.5;
    line-height: 1;
    transition: all 0.5s ease;
}

.home-page .swiper-section .right .number span {
    font-style: normal;
}

.home-page .swiper-section .right .dot-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 20%;
    z-index: 2;
}

.home-page .swiper-section .right .dot {
    background-color: transparent;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.home-page .swiper-section .right .journey-dot {
    background: linear-gradient(90deg, rgba(189, 190, 222, 1) 0%, rgba(127, 131, 190, 1) 50%, rgba(61, 64, 115, 1) 100%);
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.5s ease;
}

.home-page.ar .swiper-section .animated-line {
    background: linear-gradient(1deg, rgba(189, 190, 222, 1) 0%, rgba(127, 131, 190, 1) 50%, rgba(61, 64, 115, 1) 100%);
    transform: translateY(-50%);
}

@media (max-width: 1400px) {
    .home-page .swiper-section .left {
        width: 50%;
    }

    .home-page .swiper-section .right .number {
        font-size: clamp(20rem, 43vw, 28rem);
        color: var(--sub-color);
        opacity: 0.5;
        line-height: 1;
        transition: all 0.5s ease;
    }
}

@media (max-width: 990px) {

    .home-page .swiper-section .left .text {
        position: relative;
        padding-inline-start: 70px;
        flex: 1;
    }

    .home-page .swiper-section {
        flex-direction: column;
        padding: 0 20px;
    }

    .home-page .swiper-section .right {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .home-page .swiper-section .left,
    .home-page .swiper-section .right {
        width: 100%;
        padding: 30px 0;
    }

    .home-page .swiper-section .left span,
    .home-page .swiper-section .left h3 {
        padding-bottom: 0;
        padding-top: 0;
    }

    .home-page .swiper-section .left .text {
        padding-inline-start: 60px;
        padding-top: 30px;
    }

    .home-page .swiper-section .right .number {
        font-size: 15rem;
        padding-inline-start: 60px;
    }

    .home-page .swiper-section .left .dot-box {
        position: absolute;
        top: 15%;
        transform: translateY(-50%);
        inset-inline-start: 0;
        z-index: 2;
        background-color: #09334a;
        border-radius: 50%;
    }

    .home-page .swiper-section .right .dot-box {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        inset-inline-start: 0;
        z-index: 2;
    }

    .home-page .swiper-section::before {
        display: none;
    }

    .home-page .swiper-section .animated-line {
        position: absolute;
        top: 8%;
        inset-inline-start: 2.65rem;
        width: 4px;
        height: 0;
        transform: none;
        transform-origin: top;
        transition: height 1s ease;
        z-index: 1;
        background: linear-gradient(1deg, rgba(189, 190, 222, 1) 0%, rgba(127, 131, 190, 1) 50%, rgba(61, 64, 115, 1) 100%);

    }

    .home-page .swiper-section .right .number {
        font-size: clamp(20rem, 43vw, 35rem);
        color: var(--sub-color);
        opacity: 0.5;
        line-height: 1;
        transition: all 0.5s ease;
        padding-bottom: 15px;
    }
}

@media (max-width: 550px) {
    .home-page .swiper-section .right .number {
        font-size: 13rem;
        padding-inline-start: 60px;
    }

    .home-page .swiper-section .left .dot-box {
        background-color: #09334a;
        border-radius: 50%;
    }

    .home-page .swiper-section .left span {
        font-size: 1rem;
    }

    .container {
        padding-right: calc(var(--bs-gutter-x) * .9);
        padding-left: calc(var(--bs-gutter-x) * .9);
    }
}

/* why  */

.home-page .why-efficacy {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.home-page .why-efficacy .header span {
    color: white;
}

.home-page .why-efficacy .wrapper {
    position: relative;
    width: 100%;
}

#connectors {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}


.home-page .why-efficacy .grid {
    display: flex;
    align-items: flex-end;
    min-height: 400px;
    gap: 10px;
}

.home-page .why-efficacy .col {
    flex: 1;
    min-width: 0;
}

.home-page .why-efficacy .col-up {
    align-self: flex-start;
}

.home-page .why-efficacy .card {
    display: flex;
    flex-direction: column;
}

.home-page .why-efficacy .desc-box {
    position: relative;
    border: 1.5px solid #96bfcf;
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
    color: #96bfcf;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right,
            rgba(6, 40, 53, 0.3) 0%,
            rgba(6, 40, 53, 0.25) 35%,
            rgba(255, 255, 255, 0.03) 46%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.03) 54%,
            rgba(6, 40, 53, 0.25) 65%,
            rgba(6, 40, 53, 0.3) 100%);
    overflow: hidden;
}

.home-page .why-efficacy .desc-scroll {
    width: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-inline-end: 8px;
    scrollbar-width: thin;
    scrollbar-color: #7f83be transparent;
}

.home-page .why-efficacy .desc-scroll::-webkit-scrollbar {
    width: 4px;
}

.home-page .why-efficacy .desc-scroll::-webkit-scrollbar-track {
    background: transparent;
    margin-block: 4px;
}

.home-page .why-efficacy .desc-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #96bfcf 0%, #7f83be 50%, #5f649c 100%);
    border-radius: 20px;
}

.home-page .why-efficacy .desc-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b3d6e2 0%, #7f83be 50%, #5f649c 100%);
}

.home-page .why-efficacy .pill {
    background: linear-gradient(180deg, #7f83be 0%, #5f649c 39%, #252e60 100%);
    border: 1.5px solid #96bfcf;
    border-radius: 50px;
    padding: 12px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: -1.5px;
}


@media (min-width: 561px) and (max-width: 991px) {
    .home-page .why-efficacy .grid {
        flex-direction: column;
        min-height: unset;
        align-items: flex-start;
        gap: 44px;
    }

    .home-page .why-efficacy .col,
    .home-page .why-efficacy .col-up {
        flex: none;
        width: 50%;
        align-self: auto;
    }

    .home-page .why-efficacy .col-down {
        margin-inline-start: auto;
    }

    .home-page .why-efficacy .col-up {
        margin-inline-start: 0;
    }

    .home-page .why-efficacy .desc-box {
        height: auto;
    }
}


@media (max-width: 560px) {
    .home-page .why-efficacy .grid {
        flex-direction: column;
        min-height: unset;
        align-items: flex-start;
        gap: 44px;
    }

    .home-page .why-efficacy .col,
    .home-page .why-efficacy .col-up {
        flex: none;
        width: 68%;
        align-self: auto;
    }

    .home-page .why-efficacy .col-down {
        margin-inline-start: auto;
    }

    .home-page .why-efficacy .col-up {
        margin-inline-start: 0;
    }

    .home-page .why-efficacy .desc-box {
        height: auto;
    }

    #about,
    #work,
    #services,
    #industries {
        scroll-margin-top: 50px;
    }
}



/* apps-section */


.home-page .apps-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 250px;
}


.home-page .apps-section .text {
    max-width: 500px;
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.home-page .apps-section .app {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.home-page .apps-section .app .app-name {
    width: 250px;
}

.home-page .apps-section .app .store img {
    width: 150px;
    display: flex;
    flex-direction: column;
}

.home-page .apps-section.basmatech .app .app-name {
    width: 215px;
}

.home-page .apps-section .pc-view {
    display: block;
}

.home-page .apps-section .mobile {
    display: none;
}

.home-page .apps-section .left {
    z-index: 100;
}

.home-page .apps-section .right {
    position: relative;
}

.home-page .apps-section .pc-view .right-img {
    position: absolute;
    inset-inline-end: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 160%;

}

.home-page .apps-section .pc-view .right-img img {
    width: 100%;
}

.home-page .apps-section.basmatech .pc-view .right-img,
.home-page .apps-section.truemarkets .pc-view .right-img {
    position: absolute;
    inset-inline-end: 30px;
    top: 24%;
    transform: translateY(-50%);
    z-index: -1;
    width: 140%;
}


/* ar */

.home-page.ar .apps-section.mashrou3 .right img {
    transform: scaleX(-1);
}

/* end ar */

@media (max-width: 991px) {
    .home-page .apps-section .pc-view {
        display: none;
    }

    .home-page .apps-section .mobile {
        display: block;
    }

    .home-page .apps-section .mobile .right-img {
        position: relative;
        inset-inline-end: 0;
        z-index: -1;
        width: 100%;
    }

    .home-page .apps-section .mobile .right-img img {
        width: 100%;
    }

    .home-page .apps-section.basmatech .app .app-name,
    .home-page .apps-section.truemarkets .app .app-name {
        width: 140px;
    }


}




/* ============================================
   SERVICES SECTION - CARDS
   ============================================ */

.home-page .services {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-page .services .header span {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.home-page .card-container {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   DESKTOP STACKED CARDS - CENTERED TOGETHER
   ============================================ */

.home-page .desktop-stack {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.home-page .desktop-stack .card {
    position: absolute;
    width: 24%;
    height: 400px;
    border-radius: 44px;
    padding: 45px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: z-index 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    will-change: transform;
    top: 50%;
    transform: translateY(-50%);
}

/* Card Positions & Styles - Centered together */
.home-page .desktop-stack .card-1,
.home-page .desktop-stack .card-2,
.home-page .desktop-stack .card-3,
.home-page .desktop-stack .card-4 {
    padding: 90px 30px;
    padding-inline-end: 60px;
    background: linear-gradient(rgb(6 40 53 / 59%), rgba(6, 40, 53, 0.6)), var(--sub-color);
    background-blend-mode: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

/* .home-page .desktop-stack .card-1::before,
.home-page .desktop-stack .card-2::before,
.home-page .desktop-stack .card-3::before,
.home-page .desktop-stack .card-4::before {
   content: '';
    position: absolute;
    top: -15px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(92, 182, 188, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
} */

/* Position cards relative to center */
.home-page .desktop-stack .card-1 {
    transform: translateY(-50%) translateX(-330px);
    z-index: 1;
}

.home-page .desktop-stack .card-2 {
    transform: translateY(-50%) translateX(-110px);
    z-index: 2;
}

.home-page .desktop-stack .card-3 {
    transform: translateY(-50%) translateX(110px);
    z-index: 3;
}

.home-page .desktop-stack .card-4 {
    transform: translateY(-50%) translateX(330px);
    z-index: 4;
}

/* Hover Effects - Bring card to front */
/* .home-page .desktop-stack .card-1:hover::before,
.home-page .desktop-stack .card-2:hover::before,
.home-page .desktop-stack .card-3:hover::before,
.home-page .desktop-stack .card-4:hover::before {
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.home-page .desktop-stack .card-1:hover,
.home-page .desktop-stack .card-1:active {
    transform: translateY(-50%) translateX(-330px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(150, 191, 207, 0.8);

}

.home-page .desktop-stack .card-2:hover,
.home-page .desktop-stack .card-2:active {
    transform: translateY(-50%) translateX(-110px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(150, 191, 207, 0.8);

}

.home-page .desktop-stack .card-3:hover,
.home-page .desktop-stack .card-3:active {
    transform: translateY(-50%) translateX(110px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(150, 191, 207, 0.8);

}

.home-page .desktop-stack .card-4:hover,
.home-page .desktop-stack .card-4:active {
    transform: translateY(-50%) translateX(330px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(150, 191, 207, 0.8);

}

/* Arabic RTL Support - Centered together */
.home-page.ar .desktop-stack .card-1 {
    transform: translateY(-50%) translateX(330px);
}

.home-page.ar .desktop-stack .card-2 {
    transform: translateY(-50%) translateX(110px);
}

.home-page.ar .desktop-stack .card-3 {
    transform: translateY(-50%) translateX(-110px);
}

.home-page.ar .desktop-stack .card-4 {
    transform: translateY(-50%) translateX(-330px);
}

.home-page.ar .desktop-stack .card-1:hover,
.home-page.ar .desktop-stack .card-1:active {
    transform: translateY(-50%) translateX(330px) scale(1.05);

}

.home-page.ar .desktop-stack .card-2:hover,
.home-page.ar .desktop-stack .card-2:active {
    transform: translateY(-50%) translateX(110px) scale(1.05);

}

.home-page.ar .desktop-stack .card-3:hover,
.home-page.ar .desktop-stack .card-3:active {
    transform: translateY(-50%) translateX(-110px) scale(1.05);

}

.home-page.ar .desktop-stack .card-4:hover,
.home-page.ar .desktop-stack .card-4:active {
    transform: translateY(-50%) translateX(-330px) scale(1.05);

}

.home-page .services .swiper-pagination {
    display: none !important;
}

/* ============================================
   DESKTOP RESPONSIVE
   ============================================ */

@media (min-width: 769px) {
    .home-page .desktop-stack {
        display: flex;
    }

    .home-page .mobile-swiper,
    .home-page .mobile-cube-swiper {
        display: none;
    }

    .home-page .desktop-stack .card {
        padding-inline-end: 80px;
    }
}

@media (max-width: 1200px) {
    .home-page .desktop-stack .card {
        width: 270px;
        height: 380px;
        padding: 60px 18px;
        padding-inline-end: 60px;
    }

    .home-page .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(-280px);
    }

    .home-page .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(-93px);
    }

    .home-page .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(93px);
    }

    .home-page .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(280px);
    }

    .home-page .desktop-stack .card-1:hover,
    .home-page .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(-280px) scale(1.05);

    }

    .home-page .desktop-stack .card-2:hover,
    .home-page .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(-93px) scale(1.05);

    }

    .home-page .desktop-stack .card-3:hover,
    .home-page .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(93px) scale(1.05);

    }

    .home-page .desktop-stack .card-4:hover,
    .home-page .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(280px) scale(1.05);

    }

    /* Arabic */
    .home-page.ar .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(280px);
    }

    .home-page.ar .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(93px);
    }

    .home-page.ar .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(-93px);
    }

    .home-page.ar .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(-280px);
    }

    .home-page.ar .desktop-stack .card-1:hover,
    .home-page.ar .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(280px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-2:hover,
    .home-page.ar .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(93px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-3:hover,
    .home-page.ar .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(-93px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-4:hover,
    .home-page.ar .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(-280px) scale(1.05);

    }
}

@media (max-width: 1024px) {
    .home-page .desktop-stack .card {
        width: 230px;
        height: 350px;
        padding: 70px 15px;
        padding-inline-end: 70px;
        border-radius: 35px;
    }

    .home-page .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(-240px);
    }

    .home-page .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(-80px);
    }

    .home-page .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(80px);
    }

    .home-page .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(240px);
    }

    .home-page .desktop-stack .card .img img {
        height: 35px;
    }

    .home-page .desktop-stack .card h2 {
        font-size: 14px;
    }

    .home-page .desktop-stack .card-1:hover,
    .home-page .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(-240px) scale(1.05);

    }

    .home-page .desktop-stack .card-2:hover,
    .home-page .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(-80px) scale(1.05);

    }

    .home-page .desktop-stack .card-3:hover,
    .home-page .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(80px) scale(1.05);

    }

    .home-page .desktop-stack .card-4:hover,
    .home-page .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(240px) scale(1.05);

    }

    /* Arabic */
    .home-page.ar .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(240px);
    }

    .home-page.ar .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(80px);
    }

    .home-page.ar .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(-80px);
    }

    .home-page.ar .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(-240px);
    }

    .home-page.ar .desktop-stack .card-1:hover,
    .home-page.ar .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(240px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-2:hover,
    .home-page.ar .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(80px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-3:hover,
    .home-page.ar .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(-80px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-4:hover,
    .home-page.ar .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(-240px) scale(1.05);

    }
}

@media (max-width: 900px) {
    .home-page .desktop-stack .card {
        width: 200px;
        height: 320px;
        padding: 60px 12px;
        padding-inline-end: 55px;
        border-radius: 30px;
    }

    .home-page .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(-210px);
    }

    .home-page .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(-70px);
    }

    .home-page .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(70px);
    }

    .home-page .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(210px);
    }

    .home-page .desktop-stack .card .img img {
        height: 30px;
    }

    .home-page .desktop-stack .card h2 {
        font-size: 13px;
    }

    .home-page .desktop-stack .card .learn-more p {
        font-size: 12px;
    }

    .home-page .desktop-stack .card .learn-more img {
        width: 12px;
    }

    .home-page .desktop-stack .card-1:hover,
    .home-page .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(-210px) scale(1.05);

    }

    .home-page .desktop-stack .card-2:hover,
    .home-page .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(-70px) scale(1.05);

    }

    .home-page .desktop-stack .card-3:hover,
    .home-page .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(70px) scale(1.05);

    }

    .home-page .desktop-stack .card-4:hover,
    .home-page .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(210px) scale(1.05);

    }

    /* Arabic */
    .home-page.ar .desktop-stack .card-1 {
        transform: translateY(-50%) translateX(210px);
    }

    .home-page.ar .desktop-stack .card-2 {
        transform: translateY(-50%) translateX(70px);
    }

    .home-page.ar .desktop-stack .card-3 {
        transform: translateY(-50%) translateX(-70px);
    }

    .home-page.ar .desktop-stack .card-4 {
        transform: translateY(-50%) translateX(-210px);
    }

    .home-page.ar .desktop-stack .card-1:hover,
    .home-page.ar .desktop-stack .card-1:active {
        transform: translateY(-50%) translateX(210px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-2:hover,
    .home-page.ar .desktop-stack .card-2:active {
        transform: translateY(-50%) translateX(70px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-3:hover,
    .home-page.ar .desktop-stack .card-3:active {
        transform: translateY(-50%) translateX(-70px) scale(1.05);

    }

    .home-page.ar .desktop-stack .card-4:hover,
    .home-page.ar .desktop-stack .card-4:active {
        transform: translateY(-50%) translateX(-210px) scale(1.05);

    }
}

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

.home-page .mobile-swiper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.home-page .mobile-swiper .swiper-wrapper {
    padding: 20px 0;
}

.home-page .mobile-swiper .card {
    width: 100%;
    max-width: 350px;
    height: 400px;
    border-radius: 44px;
    padding: 25px 20px;
    padding-top: 7%;
    padding-inline-end: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    background: var(--sub-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(150, 191, 207, 0.8);
    transition: transform 0.3s ease;
}

.home-page .mobile-swiper .card:hover {
    transform: scale(1.03);
}

.home-page .mobile-swiper .card-1,
.home-page .mobile-swiper .card-2,
.home-page .mobile-swiper .card-3,
.home-page .mobile-swiper .card-4 {
    background: linear-gradient(rgba(6, 40, 53, 0.4), rgba(6, 40, 53, 0.4)), var(--sub-color);
    background-blend-mode: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

/* ============================================
   MOBILE CUBE SWIPER - FULL WIDTH CUBE CARDS
   ============================================ */

.home-page .mobile-cube-swiper {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 20px 0 60px 0;
    /* Added extra bottom padding for dots */
    overflow: visible !important;
}

.home-page .mobile-cube-swiper .swiper-wrapper {
    padding: 20px 0;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-page .mobile-cube-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-page .mobile-cube-swiper .card {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 0;
    padding: 25px 20px;
    padding-top: 7%;
    padding-inline-end: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    background: var(--sub-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(150, 191, 207, 0.8);
    transition: transform 0.3s ease;
    z-index: 100;
}

.home-page .mobile-cube-swiper .card:hover {
    transform: scale(1.03);
}

.home-page .mobile-cube-swiper .card-1,
.home-page .mobile-cube-swiper .card-2,
.home-page .mobile-cube-swiper .card-3,
.home-page .mobile-cube-swiper .card-4 {
    background: linear-gradient(rgba(6, 40, 53, 0.4), rgba(6, 40, 53, 0.4)), var(--sub-color);
    background-blend-mode: normal;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Move pagination dots lower */
.home-page .mobile-cube-swiper .swiper-pagination {
    bottom: 10px !important;
    /* Moved lower */
    position: absolute;
}

/* Swiper Navigation */
.home-page .card .swiper-button-next,
.home-page .card .swiper-button-prev,
.home-page .mobile-cube-swiper .swiper-button-next,
.home-page .mobile-cube-swiper .swiper-button-prev {
    color: var(--purble-color);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.home-page .card .swiper-button-next:hover,
.home-page .card .swiper-button-prev:hover,
.home-page .mobile-cube-swiper .swiper-button-next:hover,
.home-page .mobile-cube-swiper .swiper-button-prev:hover {
    background: var(--purble-color);
    color: white;
    transform: scale(1.1);
}

.home-page .card .swiper-button-next::after,
.home-page .card .swiper-button-prev::after,
.home-page .mobile-cube-swiper .swiper-button-next::after,
.home-page .mobile-cube-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.home-page .card .swiper-pagination-bullet,
.home-page .mobile-cube-swiper .swiper-pagination-bullet {
    background: linear-gradient(90deg, rgba(179, 182, 199, 1) 0%, rgba(127, 131, 190, 1) 31%, rgba(56, 56, 99, 1) 100%);
    opacity: 0.4;
    width: 10px;
    height: 10px;
}

.home-page .card .swiper-pagination-bullet-active,
.home-page .mobile-cube-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(90deg, rgba(179, 182, 199, 1) 0%, rgba(127, 131, 190, 1) 31%, rgba(56, 56, 99, 1) 100%);
    width: 12px;
    height: 12px;
    border-radius: 1px solid var(--dark-sub-color);
}

/* ============================================
   CARD INNER ELEMENTS
   ============================================ */

.home-page .card .badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    align-self: flex-start;
    backdrop-filter: blur(5px);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.home-page .card .img img {
    height: 42px;
    margin-bottom: 10px;
}

.home-page .card h2 {
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.home-page .card p {
    font-size: 16px;
    letter-spacing: 5px;
    line-height: 3;
    color: var(--dark-sub-color);
    flex: 1;
}

.home-page .card .learn-more p {
    font-size: 14px;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--sub-color);
    margin-top: 20px;
    font-weight: 600;
}

.home-page.ar .card .learn-more p {
    letter-spacing: 0px;
}

.home-page .card .learn-more img {
    width: 15px;
    transition: transform 0.3s ease;
}

.home-page .card .learn-more:hover img {
    transform: translateX(5px);
}

/* Arabic RTL for card inner elements */
.home-page.ar .card .learn-more img {
    transform: scaleX(-1);
}

.home-page.ar .card .learn-more:hover img {
    transform: translateX(-5px) scaleX(-1);
}

/* ============================================
   MOBILE RESPONSIVE - SHOW SWIPER
   ============================================ */

@media (max-width: 768px) {
    .home-page .desktop-stack {
        display: none !important;
    }

    .home-page .mobile-swiper {
        display: none !important;
    }

    .home-page .mobile-cube-swiper {
        display: block !important;
        height: 450px;
        overflow: visible !important;
        padding: 20px 0 80px 0;
        /* More bottom padding for dots */
    }

    .home-page .mobile-cube-swiper .swiper-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .home-page .mobile-cube-swiper .card {
        height: 400px;
        max-width: 100%;
        padding: 25px 30px;
        padding-top: 60px;
        border-radius: 0;
    }

    .home-page .mobile-cube-swiper .card h2 {
        font-size: 22px;
    }

    .home-page .mobile-cube-swiper .card .img img {
        height: 42px;
    }

    .home-page .mobile-cube-swiper .swiper-button-next,
    .home-page .mobile-cube-swiper .swiper-button-prev {
        display: none;
    }

    .home-page .services .swiper-pagination {
        display: block !important;
    }

    /* Move dots lower on tablet */
    .home-page .mobile-cube-swiper .swiper-pagination {
        bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .home-page .mobile-cube-swiper {
        height: 420px;
        overflow: visible !important;
        padding: 20px 0 70px 0;
    }

    .home-page .mobile-cube-swiper .swiper-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .home-page .mobile-cube-swiper .card {
        height: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 25px 30px;
        padding-top: 14%;
        padding-inline-end: 30px;
    }

    .home-page .mobile-cube-swiper .card h2 {
        font-size: 19px;
    }

    .home-page .mobile-cube-swiper .card .img img {
        height: 60px;
    }

    .home-page .mobile-cube-swiper .card .learn-more p {
        font-size: 18px;
    }

    .home-page .mobile-cube-swiper .card .learn-more img {
        width: 16px;
    }

    .home-page .apps-section {
        margin-bottom: 70px;
    }

    /* Move dots lower on mobile */
    .home-page .mobile-cube-swiper .swiper-pagination {
        bottom: 15px !important;
    }

    .home-page .card-container {
        height: 420px;
    }
}

@media (max-width: 380px) {
    .home-page .mobile-cube-swiper {
        height: 390px;
        overflow: visible !important;
        padding: 20px 0 60px 0;
    }

    .home-page .mobile-cube-swiper .swiper-wrapper {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .home-page .mobile-cube-swiper .card {
        height: 100%;
        max-width: 100%;
        padding: 20px 30px;
        padding-top: 15%;
        padding-inline-end: 25px;
        border-radius: 0;
    }

    .home-page .mobile-cube-swiper .card h2 {
        font-size: 18px;
    }

    .home-page .mobile-cube-swiper .card .img img {
        height: 50px;
    }

    /* Move dots lower on small mobile */
    .home-page .mobile-cube-swiper .swiper-pagination {
        bottom: 10px !important;
    }
}

/* ============================================
   APPS SECTION SPACING
   ============================================ */

@media (min-width: 769px) {
    .home-page .apps-section {
        margin-bottom: 150px;
    }
}













/* not sure  */
.home-page .not-sure {
    background-image: url('../images/not-sure.png');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-page .not-sure .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.home-page .not-sure .content h3 {
    font-size: clamp(1.7rem, 7vw, 3.3rem);
    margin-bottom: 1rem;
    color: var(--sub-color);
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
}


.home-page .not-sure .content span {
    color: white;
    margin-bottom: 20px;

}

/* outcomes */

.home-page .outcomes .header span {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.home-page .outcomes .left {
    display: flex;
    flex-direction: row;
}

.home-page .outcomes.ar .left {
    display: flex;
    flex-direction: row-reverse;
}

.home-page .outcomes .box {
    position: relative;
    width: 100%;
    height: 12vw;
    color: white;
    background-color: transparent;
    border-radius: 34px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.home-page .outcomes .arrow-image {
    position: absolute;
    height: 100%;
    width: 40%;
    inset-inline-start: 0;
}


.home-page .outcomes .text-arrow1 {
    position: absolute;
    height: 100%;
    width: 100%;
    inset-inline-start: 50%;
    top: 0%;
    transform: translate(-30%, 0%);
    z-index: 999;
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    display: flex;
    align-items: center;
}

.home-page .outcomes .text-arrow2 {
    position: absolute;
    height: 100%;
    width: 100%;
    inset-inline-end: 0%;
    top: 0%;
    transform: translate(35%, 0%);
    z-index: 999;
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    display: flex;
    align-items: center;
}

.home-page.ar .outcomes .text-arrow2 {
    transform: translate(-35%, 0%);
}

.home-page.ar .outcomes .text-arrow1 {
    transform: translate(30%, 0%);
}

.home-page .outcomes .arrow-box {
    position: absolute;
    height: 100%;
    width: 100%;
    inset-inline-end: 0;
    padding-inline-start: 24%;
    padding-inline-end: 40px;
    border-radius: 3px;
}

.home-page.ar .outcomes .arrow-box {
    padding-inline-start: 42%;
}

.home-page .outcomes .arrow-box .text {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-page .outcomes .arrow-box span {
    display: block;
    font-size: 15px;
}

.home-page .outcomes .arrow-image img {
    height: 100%;
    width: 100%;
}

.home-page.ar .outcomes .arrow-image img,
.home-page.ar .outcomes .arrow-image2 img {
    transform: scaleX(-1);
    border-radius: 34px;
}

.home-page .outcomes .right {
    display: flex;
    flex-direction: row-reverse;
}

.home-page .outcomes.ar .right {
    display: flex;
    flex-direction: row;
}

.home-page .outcomes .box2 {
    position: relative;
    width: 100%;
    height: 12vw;
    color: white;
    background-color: transparent;
    border-radius: 34px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(255, 255, 255, 0.6);
}

.home-page .outcomes .arrow-image2 {
    position: absolute;
    height: 100%;
    width: 40%;
    inset-inline-end: 0;
}

.home-page .outcomes .arrow-box2 {
    position: absolute;
    height: 100%;
    width: 100%;
    inset-inline-start: 0;
    padding-inline-end: 26%;
    padding-inline-start: 44px;
    border-radius: 3px;
}

.home-page.ar .outcomes .arrow-box2 {
    padding-inline-end: 40%;
}

.home-page .outcomes .arrow-box2 .text {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-page .outcomes .arrow-box2 span {
    display: block;
    font-size: 15px;
}

.home-page .outcomes .arrow-image2 img {
    height: 100%;
    width: 100%;
}

.home-page .outcomes .left .text,
.home-page .outcomes .right .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .outcomes .left .text-phone,
.home-page .outcomes .right .text2-phone {
    display: none;
}

.home-page .outcomes ul {
    margin-bottom: 0 !important;
}

.home-page .outcomes li {
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
    color: var(--sub-color);
}

.home-page .outcomes .list-group-custom {
    list-style-type: disc;
    padding-left: 20px;
}

.home-page.ar .outcomes .list-group-custom {
    padding-left: 0;
    padding-right: 20px;
    list-style-position: inside;
}

@media(max-width: 1440px) {
    .home-page .outcomes .text-arrow1 {
        transform: translate(-38%, 0%);
    }

    .home-page .outcomes .box,
    .home-page .outcomes .box2 {
        height: 20vw;
    }

    .home-page .outcomes .arrow-box {
        padding-inline-start: 34%;
    }

    .home-page .outcomes .arrow-box2 {
        padding-inline-end: 40%;
        padding-inline-start: 44px;
    }
}

@media(max-width: 990px) {

    .home-page.ar .outcomes .box,
    .home-page.ar .outcomes .box2 {
        height: 26vw;
    }
}

@media(max-width: 768px) {

    .home-page .outcomes .box,
    .home-page .outcomes .box2 {
        height: auto;
        min-height: 350px;
    }

    .home-page.ar .outcomes .box,
    .home-page.ar .outcomes .box2 {
        height: auto;
        min-height: 380px;
    }

    .home-page .outcomes .arrow-box {
        position: absolute;
        height: auto;
        max-height: 200px;
        width: 100%;
        inset-inline-end: 0;
        padding-inline-start: 10%;
        padding-inline-end: 10px;
        border-radius: 20px;
    }

    .home-page .outcomes .arrow-box2 {
        position: absolute;
        height: auto;
        max-height: 200px;
        width: 100%;
        inset-inline-end: 0;
        padding-inline-start: 10%;
        padding-inline-end: 10px;
        border-radius: 20px;
        margin-top: 120px;
    }

    .home-page .outcomes .left .text,
    .home-page .outcomes .right .text {
        margin-top: 30px;
    }

    .home-page .outcomes li {
        font-size: 17px;
        line-height: 1.8;
        color: var(--sub-color);
    }

    .home-page.ar .outcomes li {
        font-size: 15px;
    }

    .home-page .outcomes .arrow-image,
    .home-page .outcomes .arrow-image2 {
        position: relative;
        width: 100%;
        height: 120px;
        inset-inline-start: 0;
        inset-inline-end: 0;
        overflow: hidden;
    }

    .home-page .outcomes .arrow-image img,
    .home-page .outcomes .arrow-image2 img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: fill;
    }

    .home-page .outcomes .text-arrow1,
    .home-page .outcomes .text-arrow2 {
        width: 100%;
        height: 120px;
        inset-inline-start: 0;
        inset-inline-end: 0;
        top: 0;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
    }

    .home-page.ar .outcomes .text-arrow1,
    .home-page.ar .outcomes .text-arrow2 {
        transform: none;
    }

    .home-page.ar .outcomes .arrow-box {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }

    .home-page.ar .outcomes .arrow-box2 {
        padding-inline-start: 15px;
        padding-inline-end: 15px;
    }

    .home-page.ar .outcomes .arrow-image img,
    .home-page.ar .outcomes .arrow-image2 img {

        border-radius: 34px;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
    }

}

/* expertise */
.home-page .expertise {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 100px;
    margin-top: 100px;
}

.home-page .expertise .header span {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.home-page .expertise .lets-connect {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 20px;
    background: var(--main-color);
    color: white;
    text-decoration: none;
    font-size: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, .25), 0 0px 3px rgba(0, 0, 0, .4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.home-page .expertise .lets-connect:hover {
    transform: scale(1.05);
}

.home-page .expertise .divider-vertical {
    width: 2px;
    background: linear-gradient(to bottom, var(--purble-color) var(--fill, 0%), #dde8f0 var(--fill, 0%));
    height: 100%;
    min-height: 400px;
    transition: background 0.05s linear;
    position: relative;
}

.home-page .expertise .cards-scroll {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.home-page .expertise .sector-card {
    background-color: transparent;
    border-radius: 20px;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
    padding: 30px;
    padding-inline: 40px;
}

.home-page .expertise .card-title-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--sub-color);
    margin-bottom: 5px;
}

.home-page .expertise .card-desc {
    font-size: 15px;
    color: white;
    line-height: 2;
    margin: 0;
}

.home-page .expertise .layout-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "heading divider cards";
    align-items: start;
    gap: 0;
}

.home-page .expertise .area-heading {
    grid-area: heading;
    padding-inline-end: 1.5rem;
    padding-top: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 9rem;
}

.home-page .expertise .area-divider {
    grid-area: divider;
    align-self: stretch;
    margin: 0 0.25rem;
    display: flex;
    justify-content: center;
}

.home-page .expertise .area-cards {
    grid-area: cards;
    padding-inline-start: 1.5rem;
}

/* Mobile + Tablet */
@media (max-width: 991.98px) {
    .home-page .expertise {
        padding: 40px 0;
    }

    .home-page.ar .expertise .area-divider {
        margin: 0 0 0 0.5rem;
    }

    .home-page .expertise .layout-grid {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "heading heading"
            "divider cards";
        gap: 0;
    }

    .home-page .expertise .area-heading {
        padding-inline-end: 0;
        padding-top: 0;
        margin-bottom: 2.75rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 0px;
    }

    .home-page .expertise .area-divider {
        margin: 0 0.5rem 0 0;
        min-height: 300px;
        height: 100%;
    }

    .home-page .expertise .area-cards {
        padding-inline-start: 0;
    }

    .home-page .expertise .sector-card {
        padding: 20px;
        padding-inline: 25px;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .home-page .expertise {

        margin-top: 0px;
    }

    .home-page .expertise .sector-card {
        padding: 15px 18px;
    }

    .home-page .expertise .card-title-text {
        font-size: 18px;
    }

    .home-page .expertise .card-desc {
        font-size: 13px;
    }

    .home-page .expertise .area-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .home-page .expertise {
        padding-top: 0px;
        padding-bottom: 60px;
    }

}

/* ------------------------------------------------------ blog page ---------------------------------------------- */

.blog-page {
    background-image: url('../images/bg.png');
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;

}

.blog-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 29, 41, 0.3);
    z-index: 0;
}

.blog-page>* {
    position: relative;
    /* z-index: 1; */
}



.blog-page h1 {
    font-size: clamp(1.7rem, 7vw, 3.3rem);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--sub-color);
}

.blog-page h1 em {
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sub-color);
}

.blog-page .section-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.blog-page .media {
    width: 90%;
}

.blog-page .media img {
    width: 100%;
}

.blog-page video {
    aspect-ratio: 16/9;
}

.blog-page .eventSwiper {

    width: 100%;
    height: 300px;
}

.blog-page .swiper-slide {
    display: flex;
    justify-content: center;

}

.blog-page .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;

}

.blog-page .swiper-slide video {
    width: 100%;
    height: 100%;
    border-radius: 30px;

}

.blog-page .data-box {
    width: 90%;
    box-shadow:
        0 0px 0px rgba(0, 0, 0, 0.4),
        inset 0 0 23px rgba(150, 191, 207, 0.2);
    border-radius: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-inline: 30px;
    font-size: 14px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-page .data-box span {
    color: white;
    opacity: 0.7;
}

.blog-page .data-box h4 {
    transition: color 0.3s ease;
    color: var(--dark-sub-color);
    margin-bottom: 30px;
}


.blog-page .section-2 .titles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-page .section-2 .title {
    background-color: var(--main-color);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 0 12px rgba(150, 191, 207, 0.8);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    border-radius: 30px;
    padding: 20px 30px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-page .arrow i {
    color: var(--sub-color);

}

.blog-page.ar .arrow i {
    transform: scaleX(-1);
}

.blog-page .section-2 .title:hover {

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(150, 191, 207, 0.9);
}

.blog-page .section-2 .title.active .number {
    border-inline-start: 4px solid #96bfcf;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(150, 191, 207, 0.9),
        inset 0 0 40px rgba(150, 191, 207, 0.3);
    color: var(--sub-color);

}

.blog-page .section-2 .title:hover .number,
.blog-page .section-2 .title:hover .text,
.blog-page .section-2 .title:hover .arrow i {
    color: var(--dark-sub-color);
    font-weight: 700;
}

.blog-page .section-2 .title.active .number .text {
    color: var(--sub-color);
}

.blog-page .section-2 .text {

    padding-inline-start: 30px;
    color: var(--sub-color);
}


.blog-page .section-2 .number {
    color: var(--sub-color);
    display: flex;
}

.blog-page .swiper-pagination-bullet {
    background: linear-gradient(90deg, rgba(179, 182, 199, 1) 0%, rgba(127, 131, 190, 1) 31%, rgba(56, 56, 99, 1) 100%);
}

@media(max-width:768px) {

    .blog-page .section-1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .blog-page .media {
        width: 100%;
    }

    .blog-page .data-box {
        width: 100%;
    }

    .blog-page .section-2 .title {
        font-size: 20px;
    }
}


/* -----------------------------------------contact us page ------------------------------------ */

.contact-page {
    background-image: url('../images/bg.png');
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.contact-page::before {
    content: '';
    position: absolute;
    inset: 0;

    z-index: 0;
}

.contact-page>* {
    position: relative;

}

.contact-page h1 {
    font-size: clamp(1.7rem, 7vw, 3.3rem);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--sub-color);
}

.contact-page h1 em {
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sub-color);
}

.contact-page span {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.contact-grid {
    margin-top: -0.5rem;
    padding-bottom: 1.8rem;
}

.contact-box {
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 0 11px rgba(150, 191, 207, 0.4);
    color: white;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.14);
}

.contact-box .info-label {
    color: var(--dark-sub-color);
}



.contact-box .info-value {
    font-size: 1rem;
    margin-top: 0.1rem;
    word-break: break-word;
    color: white;
    opacity: 0.8;
}

.contact-page.ar .contact-box .info-value.phone {
    direction: ltr;
    text-align: right;
}

.contact-box .office-hours-sub {
    opacity: 0.75;
    font-weight: 400;
}


/* FAQ section */
.contact-page .section-2 {
    padding-top: 30px;
}

.contact-page .faq-wrapper {
    margin: 0 auto;
    padding: 2rem 0 3.5rem;
}

.contact-page .faq-item {
    background: transparent;
    border-radius: 30px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(150, 191, 207, 0.3);
    color: white;
    transition: box-shadow 0.2s;
    margin-bottom: 1rem;
    overflow: hidden;
    padding: 20px;
}

.contact-page .faq-item:hover {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 15px rgba(150, 191, 207, 0.4);
}

.contact-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.6rem;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    transition: background 0.15s;
    border-radius: 20px;
}

.contact-page .faq-question span {
    color: var(--sub-color);
    font-size: 2rem;
}



.contact-page .faq-question:focus-visible {
    outline: 2px solid var(--sub-color);
    outline-offset: -2px;
}

.contact-page .faq-question .arrow-icon {
    font-size: 1.6rem;
    color: var(--sub-color);
    transition: transform 0.25s ease;
    line-height: 1;
    flex-shrink: 0;
    margin-inline-start: 1rem;
}

.contact-page .faq-question .arrow-icon.open {
    transform: rotate(180deg);
}

.contact-page .faq-answer {
    padding: 0.2rem 1.6rem 1.4rem 1.6rem;
    color: white;
    opacity: 0.7;
    font-weight: 400;
    line-height: 1.8;
    background: transparent;
}

.contact-page .faq-answer p:last-child {
    margin-bottom: 0;
}



@media (max-width: 576px) {
    .contact-page .hero-header h1 {
        font-size: 2rem;
    }

    .contact-page .contact-box {
        padding: 0.7rem 1rem;
        min-height: 70px;
    }

    .contact-page .contact-box .info-value {
        font-size: 0.95rem;
    }

    .contact-page .faq-question {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .contact-page .faq-answer {
        padding: 0.2rem 1.2rem 1.2rem;
    }

    .contact-page .faq-question span {
        color: var(--sub-color);
        font-size: 1.5rem;
    }

    .contact-page .section-2 {
        padding-top: 0px;
    }

    .contact-page .section-2 .mb-5 {
        margin-bottom: 0 !important;
    }

}

/* --------------------------------------------- service-page  ------------------------------------------------*/
.service-page {
    background-image: url('../images/bg.png');
}

.service-page .back-btn {
    display: flex;
    align-items: center;
}

.service-page .header h1 {
    font-size: clamp(1.7rem, 7vw, 3.3rem);
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--sub-color);
}

.service-page .header em {
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sub-color);
}


.service-page span {
    font-size: clamp(0.7rem, 4vw, 1.1rem);
    color: white;
}


.service-page .back-button {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-page .back-button button {
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
}

.service-page .back-button i {
    color: var(--dark-sub-color);
    font-size: 25px;
    margin-top: 2px;
}


.service-page .section-1 {
    padding-bottom: 40px;
}

.service-page .section-2,
.service-page .section-3,
.service-page .section-4 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-page .section-1 .tour {
    aspect-ratio: 16/9;
}

.service-page .section-1 .tour iframe {
    width: 100%;
    object-fit: contain;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(255, 255, 255, 0.2);
}

.service-page .image-container {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
}

.service-page .image-container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
}

.service-page .image-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: none;
}

.service-page .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 40, 53, 0.3);
    pointer-events: none;
    z-index: 1;
    border-radius: 30px;
}

.service-page .image-container::after {
    content: '';
    position: absolute;
    top: 0px;
    inset-inline-start: 0px;
    inset-inline-end: 0px;
    bottom: 0px;
    pointer-events: none;
    z-index: 2;
    border-radius: 28px;
    box-shadow: inset 0 0 10px 5px rgba(255, 255, 255, 0.2);
}



.service-page .nfc-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.service-page .tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-page .service-list {
    color: white;
    font-size: 20px;

}

.service-page .blue {
    color: var(--sub-color);
    display: block;
}

.service-page dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.service-page li {
    margin-bottom: 5px;
}

.service-page .service-list li::marker {
    color: white;
}


.service-page .table-box {
    margin-top: 40px;
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0px rgba(0, 0, 0, 0.4), inset 0 0px 70px rgba(255, 255, 255, 0.2);
}

.service-page .table-box .text-center {
    font-weight: 600;
}

.service-page .table-custom {
    margin: 0;
    color: white;
    border-collapse: collapse;
}


.service-page .table-custom th,
.service-page .table-custom td {
    border: 0 !important;
}

.service-page .table-custom th {
    color: #96bfcf;
    font-size: clamp(1rem, 5vw, 2.4rem);
    font-weight: 300;
    padding: 20px;
    border-bottom: 1px solid white !important;
    text-align: center;
}


.service-page .table-custom th:first-child,
.service-page .table-custom td:first-child {
    width: 45%;
    border-inline-end: 1px solid white !important;

}

.service-page .table-custom tbody tr:not(:last-child) td {
    border-bottom: 1px solid white !important;
}

.service-page .table-custom td {
    padding: 35px;
    font-size: clamp(0.90rem, 4vw, 1.3rem);
    font-weight: 500;
    text-align: start;
}

.service-page .table-custom tr:last-child td {
    border-bottom: none !important;
}


.service-page .section-4 h1,
.service-page .section-4 em {
    color: var(--dark-sub-color);
}


.service-page .tourSwiper {
    width: 100%;
    padding-bottom: 70px;
}



.service-page .tour-card {
    overflow: hidden;
    border-radius: 35px;
    width: 100%;
    height: 550px;
    position: relative;
}


.service-page .tour-card iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 35px;
}



.service-page .tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.service-page .tour-name {
    color: var(--sub-color);
    font-size: 15px;
}



.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, rgba(179, 182, 199, 1) 0%, rgba(127, 131, 190, 1) 31%, rgba(56, 56, 99, 1) 100%);
    border: 1px solid var(--dark-sub-color);
}

@media (max-width:1202px) {

    .service-page .tour-info {
        display: flex;
        flex-direction: column;
    }

    .service-page .tour-info .tour-name {
        margin-bottom: 10px;
    }

}

@media(max-width:768px) {
    .tour-card iframe {
        height: 400px;
    }

    .service-page .table-custom td {
        padding: 20px;

    }

    .tour-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-page .tour-info {
        display: flex;
        flex-direction: row;
    }

    .service-page .tour-info .tour-name {
        margin-bottom: 0px;
    }

    .service-page .nfc-buttons {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }

    .service-page .tour-card {
        overflow: hidden;
        border-radius: 35px;
        width: 100%;
        height: 500px;
        position: relative;
    }

}

/* ------------------------------------------------ join team form --------------------------------------------- */
.team {
    background-color: #12161a;
}

.team .form {
    background-color: #12161a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 20px;
}

/* FORM CONTAINER */
.team .form-container {
    background-color: #0a1c24;
    width: 100%;
    max-width: 640px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(194, 240, 252, 0.05);
}

/* HEADER & BRANDING */
.team .form-header {
    text-align: center;
    margin-bottom: 28px;
}

.team .brand-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a3b2cc;
    margin-bottom: 6px;
}

.team .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.team .form-subtitle {
    font-size: 0.95rem;
    color: #c2f0fc;
    line-height: 1.4;
}

/* FIELDS GRAPHICS */
.team .form-group {
    margin-bottom: 18px;
}

.team .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .team .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.team label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.team label span {
    color: #4ecdc4;
}

.team .hint {
    font-size: 0.75rem;
    color: #a3b2cc;
    margin-top: 4px;
    display: block;
}

/* INPUTS styling */
.team input[type="text"],
.team input[type="email"],
.team input[type="url"],
.team select,
.team textarea {
    width: 100%;
    background-color: #061015;
    border: 1px solid rgba(194, 240, 252, 0.15);
    border-radius: 6px;
    padding: 11px 14px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    outline: none;
}

.team input:focus,
.team select:focus,
.team textarea:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.2);
}

.team ::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* PHONE FIELD SPECIAL */
.team .phone-input-container {
    display: flex;
    gap: 8px;
}

.team .phone-prefix {
    width: 95px;
    text-align: center;
}

/* CONDITIONAL OTHER FIELD */
.team .hidden-field {
    display: none;
    margin-top: 10px;
}

/* DROPZONE */
.team .dropzone-area {
    border: 2px dashed rgba(194, 240, 252, 0.4);
    background-color: #061015;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s;
    position: relative;
}

.team .dropzone-area:hover,
.dropzone-area.dragover {
    border-color: #4ecdc4;
}

.team .dropzone-text {
    font-size: 0.85rem;
    color: #a3b2cc;
}

.team .dropzone-text b {
    color: #c2f0fc;
}

.team .file-input {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.team .file-selected-name {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #4ecdc4;
    font-weight: bold;
}

/* BUTTONS & MESSAGES */
.team .submit-btn {
    width: 100%;
    background-color: #c2f0fc;
    color: #0a1c24;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.team .submit-btn:hover:not(:disabled) {
    background-color: #4ecdc4;
    transform: translateY(-1px);
}

.team .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.team .success-box {
    display: none;
    background-color: rgba(78, 205, 196, 0.1);
    border: 1px solid #4ecdc4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
    line-height: 1.5;
}

.team .success-box h4 {
    color: #c2f0fc;
    margin-bottom: 6px;
    font-size: 1.1rem;
}



/* -------------------------------------- book-consultation form -------------------------------------------- */
.book-consultation {
    background-color: #0a1f2c;
}

.book-consultation .form {
    font-family: 'Inter', sans-serif;
    background-color: #0a1f2c;
    color: #ffffff;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}


.book-consultation .card {
    max-width: 672px;
    width: 100%;
    background-color: #122b3a;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.book-consultation .progress-track {
    height: 6px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
}

.book-consultation .progress-fill {
    height: 100%;
    width: 33%;
    background-color: #9bc4d6;
    transition: width 0.5s ease;
}

.book-consultation .card-body {
    padding: 2rem 1.5rem;
}


.book-consultation .form-step {
    display: none;
}

.book-consultation .form-step.active {
    display: block;
}


.book-consultation .step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.book-consultation .step-header h1,
.book-consultation .step-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: white !important;
}

.book-consultation .step-header .step-badge {
    color: rgba(155, 196, 214, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* inputs & selects */
.book-consultation .input-group {
    margin-bottom: 1.25rem;
}

.book-consultation .input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9bc4d6;
    margin-bottom: 0.4rem;
}

.book-consultation .input-group input,
.book-consultation .input-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #0a1f2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem !important;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.book-consultation .input-group input:focus,
.book-consultation .input-group select:focus {
    border-color: #9bc4d6;
    box-shadow: 0 0 0 4px rgba(155, 196, 214, 0.12);
}

.book-consultation .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.book-consultation .input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* custom radio cards */
.book-consultation .radio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    width: 100%;
}

.book-consultation .radio-card {
    position: relative;
}

.book-consultation .radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.book-consultation .radio-card label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
    background: transparent;
}

.book-consultation .radio-card label:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.book-consultation .radio-card input[type="radio"]:checked+label {
    border-color: #9bc4d6;
    background-color: rgba(155, 196, 214, 0.08);
}

.book-consultation .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-inline-end: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.15s;
}

.book-consultation .radio-card input[type="radio"]:checked+label .radio-circle {
    border-color: #9bc4d6;
    background-color: #9bc4d6;
}

.book-consultation .radio-card input[type="radio"]:checked+label .radio-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a1f2c;
}

.book-consultation .radio-card label span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}


.book-consultation .btn-primary {
    width: 100%;
    background-color: #9bc4d6;
    color: #0a1f2c;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 8px 20px rgba(155, 196, 214, 0.2);
    margin-top: 1rem;
}

.book-consultation .btn-primary:hover {
    background-color: #8bb6c9;
}

.book-consultation .btn-primary:active {
    transform: scale(0.97);
}

.book-consultation .btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.book-consultation.ar .btn-primary svg {
    transform: scaleX(-1);
}

.book-consultation.ar .btn-primary:hover svg {
    transform: translateX(-4px) scaleX(-1);
}


.book-consultation .btn-primary:hover svg {
    transform: translateX(4px);
}

.book-consultation .btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    padding: 1rem 0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    flex: 1;
}

.book-consultation .btn-back:hover {
    background: rgba(255, 255, 255, 0.04);
}


.book-consultation .calendar-mock {
    background: #0a1f2c;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.book-consultation .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.book-consultation .calendar-header h3 {
    color: #9bc4d6;
    font-weight: 700;
}

.book-consultation .calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.book-consultation .calendar-nav button {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.book-consultation .calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.book-consultation .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.book-consultation .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
}

.book-consultation .days-grid div {
    padding: 0.6rem 0;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.book-consultation .day-disabled {
    color: rgba(255, 255, 255, 0.15);
}

.book-consultation .day-active {
    background: rgba(155, 196, 214, 0.12);
    color: #9bc4d6;
    font-weight: 700;
    cursor: default;
}

.book-consultation .day-hover {
    cursor: pointer;
    transition: background 0.1s;
}

.book-consultation .day-hover:hover {
    background: rgba(255, 255, 255, 0.04);
}


.book-consultation .time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.book-consultation .time-slot {
    padding: 0.75rem 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-align: center;
}

.book-consultation .time-slot:hover {
    background: rgba(155, 196, 214, 0.08);
    border-color: rgba(155, 196, 214, 0.2);
}

.book-consultation .time-slot.selected {
    background: #9bc4d6;
    color: #0a1f2c;
    border-color: #9bc4d6;
}

.book-consultation .action-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.book-consultation .btn-confirm {
    flex: 2;
    background: #9bc4d6;
    border: none;
    color: #0a1f2c;
    font-weight: 700;
    padding: 1rem 0;
    border-radius: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 8px 20px rgba(155, 196, 214, 0.15);
}

.book-consultation .btn-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.book-consultation .btn-confirm:not(:disabled):hover {
    background: #8bb6c9;
}


.book-consultation .thankyou-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(155, 196, 214, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
}

.book-consultation .thankyou-icon svg {
    width: 40px;
    height: 40px;
    stroke: #9bc4d6;
    stroke-width: 3;
    fill: none;
}

/* animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.book-consultation .form-step.active {
    animation: fadeIn 0.4s ease;
}

.book-consultation #step-2.active {
    animation: slideInRight 0.4s ease;
}

.book-consultation #step-3.active {
    animation: zoomIn 0.5s ease;
}

/* responsive */
@media (max-width: 600px) {
    .book-consultation .input-grid {
        grid-template-columns: 1fr;
    }

    .book-consultation .time-grid {
        grid-template-columns: 1fr 1fr;
    }

    .book-consultation .card-body {
        padding: 1.5rem 1rem;
    }

    .book-consultation .step-header h1,
    .book-consultation .step-header h2 {
        font-size: 1.4rem;
    }

    .book-consultation .action-row {
        flex-direction: column;
    }
}











/* footer */
footer.custom-footer {
    background: var(--main-color);
    color: white;
}

footer.custom-footer .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

footer .footer-top {
    background-image: url('../images/lines.png');
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}

footer .footer-top h2 {
    color: #96bfcf;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 30px;
}

footer .footer-top p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #fff;
    padding-inline: 10px;
}

footer .strategy-btn {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 20px;
    background: var(--main-color);
    color: white;
    text-decoration: none;
    font-size: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, .25), 0 0px 3px rgba(0, 0, 0, .4);
}

footer .footer-middle {
    margin-top: 75px;
}

footer .footer-logo {
    text-align: start;
}

footer .footer-logo img {
    width: 175px;
    object-fit: contain;
}


footer .footer-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 0;
    color: white;
}

footer .footer-links {
    list-style: none;
    display: flex;
    gap: 22px;
    padding: 0;
    margin: 0;
}

footer .footer-links li {
    font-size: 15px;
}

footer .footer-links li:not(:last-child)::after {
    content: "•";
    margin-inline-start: 15px;
}

footer .custom-footer hr {
    margin-top: 35px;
    margin-bottom: 20px;
    border-color: #76919a;
    opacity: .6;
}

footer .footer-bottom {
    font-size: 12px;
}

footer .by-true {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

footer .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5px;
}

footer .social img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

footer .social img:hover {
    transform: scale(1.2);
}

footer .footer-links a {
    position: relative;
    color: white;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 3px;
}

footer .footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

footer .footer-links a:hover {
    color: white;
}

footer .footer-links a:hover::after {
    transform: scaleX(1);
}

footer .by {
    direction: ltr;
}

footer .copyright-pc {
    display: block;
}

footer .copyright-phone {
    display: none;
}

@media(max-width:768px) {

    footer .footer-top h2 {
        font-size: 29px;
    }

    footer .footer-middle {
        margin-top: 50px;
    }

    footer .footer-links {
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center !important;
    }

    footer .footer-links li:not(:last-child)::after {
        display: none;
    }

    footer .footer-bottom {
        text-align: center;
        gap: 15px;
    }

    footer .footer-top h2 {
        color: #96bfcf;
        font-size: 34px;
        font-style: italic;
        font-weight: 700;
        margin-bottom: 30px;
    }

    footer .footer-top p {
        font-size: 14px;
        margin-bottom: 35px;
        color: #fff;
        padding-inline: 10px;
    }

    footer .footer-logo {
        text-align: center;
    }

    footer .custom-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    footer .copyright-pc {
        display: none;
    }

    footer .copyright-phone {
        display: block;
    }
}




@media (max-width:990px) {
    footer .by-true {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
    }

    footer .social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-inline: 5px;
    }

    .text-md-start {
        text-align: start !important;
    }

    footer .copyright-pc {
        display: none;
    }

    footer .copyright-phone {
        display: block;
    }
}

.text-lg-start {
    text-align: start !important;
}



/* spark added in css and app page an container in every othep page */

#sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.3);
    animation: fallSparkle linear infinite;
}

@keyframes fallSparkle {
    0% {
        opacity: 0;
        transform: translateY(-10vh) scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1);
    }

    90% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(105vh) scale(0.3);
    }
}


#sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: fallSparkle linear infinite;
}

@keyframes fallSparkle {
    0% {
        opacity: 0;
        transform: translateY(-10vh) scale(0.5);
    }

    10% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1);
    }

    90% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(105vh) scale(0.3);
    }
}

/* Sizes */
.sparkle.xs {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.2);
}

.sparkle.small {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.3);
}

.sparkle.medium {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px 3px rgba(255, 255, 255, 0.4);
}