/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- General --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
@font-face {
    font-family: 'Nunito';
    src: url('../../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../../fonts/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --light: #EEF9FF;
    --english-font: Nunito !important;
    --arabic-font: Tajawal !important;
    --main-color: #3362aa !important;
    --second-color: #274a81 !important;
    --transition-speed: 0.4s;
    --transition-slow: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --brand-overlay: rgba(0, 101, 247, 0.47);
    --shadow-default: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --accent-color: #25D366; /* WhatsApp Green */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(0, 101, 247, 0.5);
    --glass-border: rgba(159, 159, 159, 0.08);
    --text-main: #0f172a;
    --text-muted: #475569;
    --card-bg: #ffffff;
    --border-light: #e2e8f0;
    /* Elegant Country Accent Indicators */
    --color-blue: var(--main-color); /* Sky Blue */
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--second-color) #f1f1f1;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    font-family: var(--english-font), serif;
    background-color: #FFFFFF;
    color: #515154;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

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

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p, blockquote, pre, span, applet, article, aside, canvas, details, embed {
    font-family: var(--english-font), serif !important;
}

h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
    border: none;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-secondary {
    background: var(--second-color);
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--main-color);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--main-color);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.bg-primary, .btn-primary {
    background-color: var(--main-color) !important;
}

.text-primary {
    color: var(--main-color) !important;
}

.text-secondary {
    color: var(--second-color) !important;
}

.text-justify {
    text-align: justify !important;
}

img {
    transition: all 1s ease-in-out;
}

img:hover {
    filter: grayscale(0%) brightness(120%);
    transform: scale(1.02);
    transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-shadow {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.custom-shadow:hover {
    transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: rgba(217, 217, 217, 0.25) 0px 25px 50px -12px;
}

.bg-light {
    background-color: #f3f3f3 !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- LINES --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- LOADER -------------- */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#spinner {
    background: radial-gradient(circle at top, rgba(35, 35, 35, 0.5), transparent 40%),
    linear-gradient(135deg, rgb(183, 216, 252) 0%, rgb(225, 239, 255) 50%, rgb(239, 247, 255) 100%);
    z-index: 99999;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
}

/* Hide State */
#spinner.hide {
    opacity: 0;
    visibility: hidden;
}

/* ===== Main Loader ===== */
.cyber-loader {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Rings ===== */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: rotate linear infinite;
}

.ring-1 {
    width: 118px;
    height: 118px;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, .9);
    border-right-color: rgba(125, 211, 252, .6);
    animation: rotate 1.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(125, 211, 252, .35));
}

.ring-2 {
    width: 130px;
    height: 130px;
    border-right-color: #6a81b6;
    border-left-color: rgba(37, 99, 235, .2);
    animation-duration: 3.5s;
    animation-direction: reverse;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-top-color: rgba(255, 255, 255, .75);
    border-left-color: rgba(255, 255, 255, .08);
    animation-duration: 5s;
}

/* ===== Pulses ===== */
.pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(255, 255, 255);
    animation: pulse 2.5s ease-out infinite;
}

.pulse-1 {
    width: 90px;
    height: 90px;
}

.pulse-2 {
    width: 90px;
    height: 90px;
    animation-delay: 1.2s;
}

/* ===== Text ===== */
.loading-text {
    position: absolute;
    bottom: -48px;
    width: 240px;
    text-align: center;
}

.loading-text span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #e0f2fe;
    text-transform: uppercase;
}

/* ===== Animations ===== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(.7);
        opacity: .8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 194, 255, 0.5),
        0 0 40px rgba(37, 99, 235, 0.35);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(0, 194, 255, 0.8),
        0 0 60px rgba(37, 99, 235, 0.5);
    }
}

@keyframes textGlow {
    0%, 100% {
        opacity: .7;
        letter-spacing: 2px;
    }

    50% {
        opacity: 1;
        letter-spacing: 3px;
    }
}

.loader-logo {
    width: 100%;
    height: 100%;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ---------------- NAVBAR ---------------- */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.nav-container {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    transition: 0.3s ease-in-out;
}

.logo,
.navbar-brand img {
    width: auto;
    max-width: 150px;
    height: 100%;
    object-fit: contain;
}

.navbar {
    padding-inline: clamp(12px, 4vw, 48px);
    padding-top: 0;
    padding-bottom: 0;
}

/* Nav Links */
.navbar .navbar-nav {
    align-items: center;
    gap: clamp(10px, 2vw, 32px);
}

.navbar .navbar-nav .nav-link {
    position: relative;
    padding: 10px 0;
    font-family: var(--arabic-font), sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 600;
    color: #000000;
    transition: 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .dropdown-toggle:hover {
    color: var(--main-color);
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 6px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown */
.navbar .dropdown-menu {
    border: none;
    border-radius: 14px;
    min-width: 220px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown-item {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.25s ease;
    color: #515154;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: var(--main-color);
    color: #fff;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {
    /* Link underline */
    .navbar .navbar-nav .nav-link::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 8px;
        width: 0;
        height: 2px;
        background: var(--main-color);
        transform: translateX(-50%);
        transition: 0.3s ease;
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        width: 100%;
    }

    /* Hover Dropdown */
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
        margin-top: 12px;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 991.98px) {
    .navbar {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 20px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar .navbar-nav {
        align-items: flex-start;
        gap: 0;
    }

    .navbar .navbar-nav .nav-link {
        width: 100%;
        padding: 12px 0;
    }

    /* Mobile Dropdown */
    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;

        margin-top: 8px !important;
        padding: 8px 0;

        border: none;
        border-radius: 10px;
        background: #f8f9fa;
        box-shadow: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown-item {
        padding: 10px 16px;
    }

    /* Button */
    .navbar-actions {
        width: 100%;
        margin-top: 16px;
    }

    .navbar-actions .btn {
        width: 100%;
    }

    .navbar-brand img {
        height: 35px;
    }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 480px) {
    .logo,
    .navbar-brand img {
        height: 40px;
    }

    .navbar-collapse {
        padding: 16px;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 14px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 320px) {

    .btn-secondary {
        padding: 6px 14px;
    }
}

/* Desktop Dropdown */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
        margin-top: 12px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Mobile Dropdown */
@media (max-width: 991.98px) {

    .navbar .dropdown-menu {
        border: none;
        border-radius: 10px;
        background: #f8f9fa;
        padding: 8px 0;
        margin-top: 8px;
    }

    .navbar .dropdown-item {
        padding: 10px 16px;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- SLIDERS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#header-carousel .carousel-item {
    position: relative;
    min-height: 300px;
    height: 90svh;
}

#header-carousel .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.glass-container {
    background: rgba(0, 101, 247, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: background-color 1s ease, box-shadow 0.7s ease;
}

.glass-container:hover {
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 130%;
    width: 150px;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    pointer-events: none;
    transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-container:hover::before {
    left: -130%;
}

/* Caption */
#header-carousel .carousel-caption {
    inset: 0;
    z-index: 2;
}


/* ===================== TYPOGRAPHY ===================== */
.slider-title {
    font-size: clamp(20px, 4vw, 2.5rem);
    line-height: 1.2;
}

.slider-description {
    color: #105179;
    font-size: clamp(14px, 2.5vw, 1.3rem);
    text-align: justify-all;
    transition: 0.8s ease;
}

.slider-description:hover {
    color: var(--second-color) !important;
    transition: 0.8s ease;
}

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

@media (max-width: 768px) {

    #header-carousel .carousel-item {
        height: 75svh;
    }

    #header-carousel .carousel-caption .p-4 {
        padding: 1.5rem !important;
    }

    #header-carousel .btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .animated {
        animation-duration: 1.2s;
    }
}

/* ===================== ANIMATIONS ===================== */

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
}

.carousel-item.active .animated.slideInDown {
    animation-name: slideInDown;
}

.carousel-item.active .animated.zoomIn {
    animation-name: zoomIn;
}

.carousel-item.active .animated.slideInLeft {
    animation-name: slideInLeft;
}

.carousel-item.active .animated.slideInRight {
    animation-name: slideInRight;
}

/* Keyframes */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- About Home Page --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.about-section {
    overflow: hidden;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
}

/* Image wrapper */
.about-image-wrapper {
    position: relative;
    height: 500px;
}

/* Image styling */
.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {

    .about-image-wrapper {
        height: 380px;
    }

    .section-title h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    .about-image-wrapper {
        height: 300px;
    }

    .about-description {
        text-align: left;
        font-size: 0.95rem;
    }

    .btn {
        width: fit-content;
    }
}

@media (max-width: 576px) {

    .about-image-wrapper {
        height: 250px;
    }

    .section-title h1 {
        font-size: 1.5rem;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* --------------- PARALLAX SEPARATORS ---------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
#first_separator {
    z-index: 0;
    min-height: 60vh;
}

@media screen and (min-width: 2000px) {
    #first_separator {
        min-height: 40vh;
    }
}

.first-separator-title {
    font-size: 50px;
    color: #ffffff;
    text-align: justify;
}

.first-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 46, 73, 0.2);
    z-index: 1;
}

.parallax-container {
    isolation: isolate;
}

/* Core logic for all separators */
.parallax-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    z-index: 0;
    /*will-change: transform;*/
    object-fit: cover;
    pointer-events: none;
}

/* Ensure content sits on top */
.parallax-section .container-fluid {
    position: relative;
    z-index: 2;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(98, 98, 98, 0.5);
    z-index: 1;
}

.testimonials-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(189, 189, 189, 0.35);
    z-index: 1;
}

@media (max-width: 991.98px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--main-color);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }
    50% {
        left: 145px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }
    50% {
        left: 50%;
        margin-left: 45px;
    }
    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }
    50% {
        left: 85px;
    }
    100% {
        left: 0;
    }
}


/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- SOLUTIONS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.solution-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: 1s;
    box-shadow: rgba(47, 47, 47, 0.25) 0px 25px 50px -12px;
}

.solution-item:hover {
    box-shadow: none;
    transition: 1s;
}

.solution-item .solution-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 10px;
    transform: rotate(-45deg);
    transition: all 1s ease-in-out;
}

.solution-item:hover .solution-icon {
    transform: rotate(0deg);
    transition: all 1s ease-in-out;
}

.solution-item:hover .solution-icon i {
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
}

.solution-item .solution-icon i {
    transform: rotate(45deg);
    font-size: 35px;
}

.solution-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.solution-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
    background: var(--second-color) !important;
}

.solution-item a.btn:hover {
    background: var(--main-color);
}

.solution-description {
    text-align: justify;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- MEETING -------------- */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.meeting-description {
    text-align: justify;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- SELECT2 -------------- */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.select2-container--default .select2-selection--single {
    background-color: #f8f9fa !important;
    border: none !important;
    height: 55px !important;
    display: flex;
    align-items: center;
    border-radius: 0.25rem;
}

/* Adjust the text positioning */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #6c757d !important;
    line-height: 55px !important;
    padding-left: 15px !important;
}

/* Adjust the arrow position */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 55px !important;
    top: 0 !important;
    right: 10px !important;
}

/* Fix the dropdown border */
.select2-dropdown {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--second-color);
}

/* 1. Remove border and outline when focused/clicked */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none !important;
    outline: none !important;
    box-shadow: none !important; /* Removes the blue Bootstrap-like glow */
}

/* 2. Specifically target the search input inside the dropdown */
.select2-search--dropdown .select2-search__field {
    background-color: #f8f9fa !important; /* Match your bg-light */
    border: none !important;
}

/* 3. Remove the border from the dropdown list itself */
.select2-dropdown {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Adds a soft shadow instead of a border */
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #737373 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--second-color) !important;
    color: #ffffff;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PRODUCTS -------------- */
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.product-card {
    background: #dedede;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f5;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: background 0.4s, box-shadow 0.4s, border 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    height: fit-content;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
}

/* Image */
.product-image-wrapper img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay on Hover */
.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Hover Action Buttons */
.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    opacity: 0;
    z-index: 2;
    display: flex;
    gap: 12px;
    transition: all 0.4s ease;
}

.product-card:hover .product-actions {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
}

.action-btn:hover {
    background: var(--second-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Product Details */
.product-details {
    background: var(--second-color);
}

.product-details h3 {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
}

/* Bottom Section (Title & Button) */
.product-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    min-height: 50px;
}

.product-title-related {
    font-size: 16px;
    text-wrap: wrap;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    min-height: 30px;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- TESTIMONIALS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.testimonial-carousel .swiper-slide {
    opacity: 0.5;
    transition: all 0.5s ease;
    transform: scale(0.9);
}

.testimonial-carousel .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    background: #06A3DA !important;
    width: 25px !important;
    border-radius: 5px !important;
}

.testimonial-item {
    border-radius: 10px;
    overflow: hidden;
}

.testimonials-quote-icon {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--main-color);
}

.testimonials-description {
    text-align: justify;
    color: #515154;
}

.job-title {
    color: var(--second-color);
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- CLIENTS --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.client-section {
    position: relative;
    background: #f0f0f0;
}

.clients-box-1 {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.clients-img-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-img-1 img {
    width: 100%;
    height: 70px;
    object-fit: contain;
}

.clients-img-1.default-img {
    opacity: 0.6;
    filter: grayscale(100%);
    transform: translateY(0);
}

.clients-img-1.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(100%);
}

.clients-box-1:hover .clients-img-1.default-img {
    transform: translateY(-100%);
    opacity: 0;
}

.clients-box-1:hover .clients-img-1.hover-img {
    transform: translateY(0);
}

.clients-slider .swiper-wrapper,
.team-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- FOOTER --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.footer-bg {
    background: var(--main-color);
    background: linear-gradient(90deg, rgb(56, 116, 204) 0%, rgb(47, 90, 155) 50%, rgb(56, 116, 204) 100%);
}

#footer-section {
    padding-top: 50px;
    padding-bottom: 10px;
}

.footer-description {
    text-align: justify;
    padding-right: 40px;
}

.footer-links-icon {
    padding-right: 10px;
}

.parallax-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.footer-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    filter: brightness(0.5);
}

/* --- Typography & Links --- */
.footer-link {
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    text-align: left;
}

.footer-link:hover {
    color: #ffffff !important;
    transform: translateX(5px);
}

/* RTL Support for hover animation */
[lang="ar"] .footer-link:hover {
    transform: translateX(-5px);
}

.socials-links i {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.socials-links:hover i {
    background: var(--main-color);
    transform: translateY(-5px) rotate(360deg);
}

/* --- Newsletter Form --- */
#subscribeForm .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

[lang="ar"] #subscribeForm .form-control {
    border-radius: 0 8px 8px 0;
}

/* --- Fixed Actions (Back to Top & WhatsApp) --- */
.fixed-actions-container {
    z-index: 1000;
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--second-color) !important;
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: auto; /* Enable clicks */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--main-color) !important;
    color: #fff !important;
    transform: translateY(-5px);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* --- Animations (WOW.js style) --- */
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Apply smooth fade to footer columns if WOW is not yet loaded */
#footer-section .col-lg-4, #footer-section .col-lg-2 {
    animation: fadeInUpCustom 1s ease forwards;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .parallax-bg {
        height: 110% !important; /* Less movement on mobile */
    }

    #footer-section {
        text-align: center;
    }

    .footer-link:hover {
        transform: none; /* Disable shift on mobile for better UX */
    }
}

.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
}

/* Visibility state toggled by JS */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

.ltr {
    direction: ltr !important;
    display: inline-block;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: BREADCRUMB --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.breadcrumb-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.breadcrumb-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover;
    /*background-attachment: fixed;*/
    z-index: 1;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(141, 141, 141, 0.5);
    z-index: 2;
}

/* --- Content Wrapper --- */
.breadcrumb-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.breadcrumb-title-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Parent Link Styling --- */
.parent-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.parent-breadcrumb:hover {
    color: #ffffff;
}

/* --- Interactive Hover Effect (Underline) --- */
.parent-breadcrumb::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.parent-breadcrumb:hover::after {
    width: 100%;
}

/* --- Chevron Styling --- */
.bread-chevron {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

/* --- Current Page Styling --- */
.child-breadcrumb {
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .breadcrumb-section {
        height: 180px;
    }

    .parent-breadcrumb,
    .child-breadcrumb {
        font-size: 1rem;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: ABOUT PAGE --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.about-page {
    background: #fff;
    padding-bottom: 40px;
}

.about-page .about-title {
    font-size: clamp(25px, 2vw, 2rem);
    text-align: justify;
    line-height: 2;
}

.about-page .about-description {
    font-size: clamp(17px, 2vw, 1.2rem);
    text-align: justify;
    line-height: 2;
}

.about-page-image-box {
    position: relative;
}

.about-page .image-wrapper {
    overflow: hidden;
    border-radius: 32px;
    background: #f8fafc;
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* Tablet */
@media (max-width: 991px) {
    .about-page-image-box {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-page .about-title {
        line-height: 1;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.5;
    }

    .image-wrapper {
        border-radius: 0;
    }

    .about-img {
        min-height: 280px;
        border-radius: 0;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: SOLUTIONS PAGE -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.solution-card-img-wrapper {
    height: 250px;
}

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

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: SOLUTION SHOW -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: var(--main-color);
    border-radius: 50px;
}

.main-solution-image-wrapper {
    height: 450px;
    overflow: hidden;
    border-radius: 1rem;
    z-index: 1;
}

.main-solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.main-solution-img:hover {
    transform: scale(1.02);
}

.main-description {
    font-size: clamp(16px, 2vw, 20px);
    text-align: justify !important;
}

.main-solution-image-wrapper .image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--main-color) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: -1;
    opacity: 0.3;
}

.solution-features {
    background-color: #f8f9fa;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card i {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transform: rotate(-45deg);
    transition: all var(--transition-speed) ease-in-out;
}

.feature-card i::before {
    display: inline-block;
    transform: rotate(45deg);
    transition: transform var(--transition-speed);
}

.feature-card:hover i {
    background: var(--main-color);
    transform: rotate(0deg);
}

.feature-card:hover i::before {
    transform: rotate(0deg);
}

.feature-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #212529;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .main-solution-content {
        padding: 0 !important;
    }

    .divider-line {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: PRODUCTS PAGE -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.tracking-wider {
    letter-spacing: 0.08em;
}

.backdrop-blur {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.glass-media-card img,
.glass-media-card video {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-media-card:hover img,
.glass-media-card:hover video {
    transform: scale(1.03);
}

.bg-light-subtle-one {
    background: #ffffff !important;
}

.bg-light-subtle-two {
    background: #f3f3f3 !important;
}

.product-logo {
    max-height: 100px;
    object-fit: contain;
    z-index: 2;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: PRODUCT SHOW -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hover-lift:hover {
    transform: translateY(-3px);
}

.hover-scale {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-scale:hover {
    transform: scale(1.03);
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.pulse-icon {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.4;
    }
}

.show-custom-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    width: 140vw;
    height: 10vw;
    min-height: 100px;
    max-height: 300px;
    background: rgba(193, 200, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    filter: blur(180px);
    pointer-events: none;
    z-index: 1;
}

.sidebar-column-track {
    position: relative;
}

.sticky-sidebar-panel {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    height: max-content;
    top: 0;
}

@media (min-width: 991px) {
    .sticky-sidebar-panel {
        top: 20rem;
    }
}

.custom-case-bg {
    background: rgba(128, 225, 255, 0.8);
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ----------- Delphix Extra Data View -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.feature-card {
    transition: all .35s ease;
    border-color: rgba(0, 0, 0, .06) !important;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .08) !important;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, .12), rgba(102, 16, 242, .12));
    color: #0d6efd;
    font-size: 28px;
}

.feature-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .08);
    top: -40px;
    right: -40px;
    filter: blur(25px);
    transition: all .4s ease;
}

.feature-card:hover .feature-glow {
    transform: scale(1.4);
}

@media (max-width: 768px) {

    .feature-card {
        padding: 1.5rem !important;
    }

    .display-5 {
        font-size: 2.2rem;
    }

    .display-6 {
        font-size: 2rem;
    }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ----------- PAGES:: CASE STUDIES PAGE -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */


/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ------------ PAGES:: CASE STUDIES SHOW -----------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.custom-case-bg {
    background: linear-gradient(135deg, #f5fbff 0%, #eefcff 100%) !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ----------- PAGES:: CUSTOMER STORIES PAGE ---------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */


/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ---------- PAGES:: CUSTOMER STORIES SHOW ---------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.hero-banner {
    color: var(--main-color);
    padding: 6rem 0 4rem 0;
    border-radius: 0 0 2rem 2rem;
    position: relative;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 500;
}

.content-card {
    margin-top: 1rem;
    border: none;
    border-radius: 10px;
}

.section-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.metric-item {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.metric-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.08);
}

.sticky-sidebar {
    position: sticky;
    top: 10rem;
    transition: var(--transition-slow);
}

.show-story-bg {
    background: rgba(136, 222, 243, 0.6);
}

.custom-story-bg {
    background: rgb(219, 233, 255) !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* -------------- PAGES:: BLOGS PAGE --------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

/* The Thin Vertical Center Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e9eaec;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* --- Timeline Items --- */
.timeline-item {
    padding: 10px 45px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* The Nodes (Dots) on the timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--main-color);
    top: 28px;
    border-radius: 50%;
    z-index: 3;
    transition: transform 0.3s ease;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-item:hover::after {
    transform: scale(1.3);
}

/* --- Floating Dates & Triangles --- */
.timeline-date {
    position: absolute;
    top: 20px;
    width: 100%;
    align-items: center;
    z-index: 4;
}

.date-box {
    background: #EDF4FF !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 500;
    color: #515154;
    position: relative;
    font-size: 0.95rem;
}

/* Directional Triangles for Dates */
.date-box::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
}

/* If Card is Left, Date is Right */
.timeline-date.date-right {
    left: 100%;
    padding-left: 40px;
    justify-content: flex-start;
}

.timeline-date.date-right .date-box::before {
    right: 100%;
    border-color: transparent var(--main-color) transparent transparent;
}

/* If Card is Right, Date is Left */
.timeline-date.date-left {
    right: 100%;
    padding-right: 40px;
    justify-content: flex-end;
}

.timeline-date.date-left .date-box {
    background: transparent; /* Second date in blogs is transparent */
    box-shadow: none !important;
    font-family: inherit;
}

.timeline-date.date-left .date-box::before {
    left: 100%;
    border-color: transparent var(--main-color) transparent transparent;
}

/* --- blogs Card Styling --- */
.blogs-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.blogs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.blogs-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Specific light blue-gray background for text area */
.text-bg-light-custom {
    background-color: #edf4ff;
}

/* Serif Typography for Titles */
.blogs-title {
    letter-spacing: 0.5px;
    color: #1a233a;
    font-size: 1.15rem;
    line-height: 1.4;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
}

.read-more-link {
    transition: opacity 0.2s;
}

.read-more-link:hover {
    opacity: 0.7;
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Mobile Layout --- */
@media screen and (max-width: 768px) {
    .timeline-container::after {
        left: 31px;
        transform: translateX(0);
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 23px;
    }
}

.date-badge {
    border-radius: 50px !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* --------------- PAGES:: BLOG SHOW ----------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.single-blog-section {
    position: relative;
}

.featured-blog-img {
    max-height: 520px;
    object-fit: cover;
}

.content-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}

.article-body {
    font-size: 1.05rem;
    color: #4b5563;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.blog-date-box {
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: #374151;
}

.bg-dark-teal {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.btn-teal-accent {
    background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
    border: none;
}

.btn-teal-accent:hover {
    opacity: 0.92;
}

.text-teal-accent {
    color: var(--main-color);
}

.text-bg-light-custom {
    background: #f8fafc;
}

.bullet-node {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: var(--main-color);
}

.transition {
    transition: all .3s ease;
}

/* =========================
   STICKY SIDEBAR
========================== */
.blog-sticky-sidebar {
    position: sticky;
    top: 15rem;
    transition: all 1s ease;
}

.modern-blog-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 600px;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #93B2E1FF;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all .7s ease;
}

.blog-item:hover {
    background-color: var(--main-color);
    transition: all 0.8s ease;
}

.blog-item:hover .blog-title {
    color: #ffffff !important;
    transition: all 0.8s ease;
}

.blog-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: #ffffff;
    color: var(--main-color);
    border-radius: 50%;
}

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

.blog-title {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* 1. Reset standard code styling so normal text doesn't break */
.content-card code {
    all: unset;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
}

/* 2. ONLY apply the black terminal box to elements with our exact class */
.content-card code.terminal-screen,
.content-card pre.terminal-screen {
    all: initial; /* Strips Bootstrap's _reboot.scss completely */
    background-color: #1e1e1e !important;
    color: #bebebe !important;
    font-family: 'Courier New', Courier, monospace !important;
    padding: 6px 12px !important;
    font-size: 0.92em !important;
    font-weight: bold !important;
    display: inline-block !important;
    margin: 4px 2px !important;
    word-break: break-all !important;
    white-space: pre-wrap !important;
}

/* 3. If it's a large block code (wrapped in <pre>), make it full width */
.content-card pre.terminal-screen {
    display: block !important;
    padding: 15px 20px !important;
    margin: 15px 0 !important;
    overflow-x: auto !important;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ------------ PAGES:: CAREERS PAGE ---------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.career-card {
    transition: all 0.2s ease-in-out;
    border: 1px solid #e5e7eb;
}

.career-card:hover {
    border-color: #cbd5e1;
    background-color: #f9fafb;
}

.accordion-button::after {
    display: none;
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ------------ PAGES:: PARTNERS PAGE ---------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */


/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ------------- PAGES:: CONTACT PAGE ---------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.main-text-color {
    color: var(--text-main);
}

.second-text-color {
    color: var(--text-muted);
}

.text-ltr {
    direction: ltr;
    display: inline-block;
}

.font-numeric {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-padding {
    padding: 60px 0;
}

/* Contact Country Cards Structural Layout */
.contact-country-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Top Accent Line */
.card-accent-line {
    height: 4px;
    width: 100%;
}

.bg-blue {
    background-color: var(--main-color);
}

.card-main-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Generic Branch Icon Placeholder (Clean Slate Look) */
.flag-icon-container {
    width: 52px;
    height: 52px;
    background-color: #f8fafc;
    border: 1px solid var(--border-light);
    color: #64748b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.country-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.country-details-stack {
    width: 100%;
    margin-top: auto; /* Pushes address stack to bottom for uniform height grid rows */
}

.detail-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.detail-row i {
    font-size: 1rem;
    color: #94a3b8;
}

.detail-row span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Clean UI divider between text metadata and phone number rows */
.border-top-dash {
    border-top: 1px dashed var(--border-light);
}

/* Card Layout adjustments to handle the absolute progress placement */
.contact-country-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 20px;
}

/* Base static track area */
.card-accent-line {
    position: relative;
    height: 4px;
    width: 100%;
    background-color: #f1f5f9; /* Subdued gray background track */
    overflow: hidden;
}

/* The blue line animation controller */
.card-accent-line .line-progress.bg-blue {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%; /* Length of the moving line pulse */
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    transform: translateX(-100%);
    will-change: transform;
}

.contact-country-card:hover .line-progress.bg-blue {
    animation: continuousLineFlow 1.2s linear infinite;
}

/* Infinite loop keyframes definition */
@keyframes continuousLineFlow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(250%);
    }
}

/* RTL Infinite loop keyframes definition */
@keyframes continuousLineFlowRtl {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-250%);
    }
}

/* Container Icon Block Base State (Add transition properties for background color snap) */
.contact-country-card .flag-icon-container {
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

/* Icon (i) Base State (Crucial for defining the rotation transition point) */
.contact-country-card .flag-icon-container i {
    display: inline-block; /* Required for transforms to apply to FontAwesome icons */
    transition: color 0.15s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Controls the duration and smoothness of the return spin */
    will-change: transform; /* Hint to the browser for smoother animation */
}

/* ====================================================================
   TRIP INTERACTORS (Color Changes + Spin Animation Trigger)
   ==================================================================== */

/* Color feedback (from your previous turn) */
.contact-country-card:hover .flag-icon-container {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.contact-country-card:hover .flag-icon-container i {
    color: #ffffff !important;
}

/* Spin Trigger: Activates a seamless 360-degree rotation *while* hovering */
.contact-country-card:hover .flag-icon-container i {
    animation: iconSpinReturn 0.8s ease-in-out;
}

/* Keyframes definition for a snappy single-spin rotation */
@keyframes iconSpinReturn {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.form-line-group {
    position: relative;
    margin-bottom: 0.5rem;
}

/* Pure Line-Input Fields Styling */
.form-line-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(81, 81, 84, 0.09);
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #515154;
    outline: none;
    border-radius: 0; /* Prevents iOS rounded line inputs */
}

textarea.form-line-input {
    resize: none;
}

/* Floating Label Engine */
.form-line-label {
    position: absolute;
    top: 0.6rem;
    left: 0;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.15s ease-out;
}

.form-line-input:focus ~ .form-line-label,
.form-line-input:not(:placeholder-shown) ~ .form-line-label {
    top: -1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--main-color);
}

/* Animated bottom focus line tracker overlay */
.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: all 0.2s ease-out;
}

.form-line-input:focus ~ .input-focus-line {
    width: 100%;
    left: 0;
}

/* Modern Clean Slate Submit Button */
.btn-line-submit {
    background-color: var(--main-color);
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-line-submit:active {
    filter: brightness(0.9);
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* ------------- MODERN IOS BTN ---------------
/* $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
.btn {
    background: linear-gradient(90deg, #3D76CC 0%, #0a1423 50%, #3D76CC 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #ffffff;
}

.btn:hover {
    background-position: 100% 50%;
}

.btn:active {
    transform: scale(1);
}

.btn-modern {
    position: relative;
    min-width: 200px;
    height: 50px;
    background: var(--main-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    text-decoration: none;
    overflow: hidden;
    /*justify-content: center !important;*/
    transition: background-color 1s ease, border-color 1s ease;
}

.btn-modern:hover {
    background: #3874cc;
    border-color: #27518f;
    transition: all 1s ease;
}

.btn-modern span {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.5) 75%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ios-shimmer 2.5s infinite linear;
    transition: opacity 1s ease;
}

.btn-modern .icon-circle {
    position: absolute;
    top: 5px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #1c1c1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    margin: 0 !important;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

.btn-modern:has(.fa-arrow-right) {
    padding-left: 60px;
}

.btn-modern:has(.fa-arrow-right) .icon-circle {
    left: 5px;
    right: auto;
    transition: all 1s ease-in-out;
}

.btn-modern:hover:has(.fa-arrow-right) .icon-circle {
    left: calc(100% - 51px);
    transition: all 1s ease-in-out;
}

.btn-modern:hover span {
    opacity: 0.4;
}

@keyframes ios-shimmer {
    0% {
        background-position: 150% 0;
    }
    100% {
        background-position: -50% 0;
    }
}

.arrow-icon {
    color: var(--second-color);
}


/* Extra space under footer in large screen +2000px fix:*/
@media (min-width: 2300px) {
    html,
    body.large-screen-sticky-footer {
        height: 100vh !important;
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: #F3F3F3 !important;
    }

    main.large-screen-content {
        flex: 1 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #footer-section {
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }
}

.text-align {
    text-align: left !important;
}

