@font-face { font-family: DroidArabicKufi; src: url('../../assets/fonts/Droid.Arabic.Kufi.ttf'); font-display: swap; }
* {
    box-sizing: border-box;
}

body {
    font-family: 'DroidArabicKufi', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden !important;
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    overflow: hidden;
}

.loading-screen.fade-out {
    opacity: 0;
    /*visibility: hidden;*/
}

.loader-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Loader Content */
.loader-content {
    text-align: center;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Container */
.brand-container {
    margin-bottom: 3rem;
}

.brand-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: logoSpin 2s linear infinite;
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-name {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Advanced Spinner */
.advanced-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 2rem auto;
}

.spinner-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    width: 120px;
    height: 120px;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    animation: spin 2s linear infinite;
}

.ring-2 {
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    animation: spin 1.5s linear infinite reverse;
}

.ring-3 {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    animation: spin 1s linear infinite;
}

.spinner-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Progress Bar */
.progress-container {
    margin: 2rem 0;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f8ff);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 4s ease-in-out infinite;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 1.5s infinite;
}
.text-logo{
    transform: translateY(10px);
    width: 220px !important;
}

@keyframes progressFill {
    0% { width: 0%; }
    25% { width: 30%; }
    50% { width: 60%; }
    75% { width: 85%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300px); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.progress-percentage {
    font-weight: 600;
    animation: countUp 4s ease-in-out infinite;
}

@keyframes countUp {
    0% { --progress: '0%'; }
    25% { --progress: '30%'; }
    50% { --progress: '60%'; }
    75% { --progress: '85%'; }
    100% { --progress: '100%'; }
}

/* Loading Steps */
.loading-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-size: 12px;
}

.step.active {
    color: #fff;
    transform: scale(1.1);
}

.step-icon {
    font-size: 24px;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.step.active .step-icon {
    filter: none;
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }

    .progress-container {
        width: 250px;
    }

    .loading-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .advanced-spinner {
        width: 80px;
        height: 80px;
    }

    .ring-1 {
        width: 80px;
        height: 80px;
    }

    .ring-2 {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .ring-3 {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }
}

/* Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 1300px;
    margin: auto;
    border-radius: 0 0 15px 15px;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.50);
    box-shadow: var(--shadow-lg);
}

.pages-nav {
    max-width: 600px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.pages-nav::-webkit-scrollbar {
    height: 3px;
}

.pages-nav::-webkit-scrollbar-track {
    background: transparent;
}

.pages-nav::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-link {
    position: relative;
    text-shadow: 1px 1px 0px var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
    color: var(--dark-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    text-shadow: none;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 6px;
    border-radius: 10px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

#mobileMenu .nav-link {
    display: block;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    color: #133951 !important;
    background: linear-gradient(307deg, var(--bs-primary), #ffb64261);
    background-size: 200% 200%;
    transition: background-position 0.6s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#mobileMenu .nav-link:hover {
    color: #fff !important;
    background: linear-gradient(120deg, var(--bs-primary), #ffb64261);
    background-position: right center;
    border-bottom: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
}
#mobileMenu .nav-link::after {
    content: '';
    width: 0;
    height: 0px;
}

#mobileMenu hr {
    margin: 16px 0;
    opacity: 0.3;
}


/* Button Styles */
.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    /*background: var(--primary-color);*/
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-warning {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--dark-color);
    transition: var(--transition);
}

.btn-warning:hover {
    /*background: transparent;*/
    /*color: var(--secondary-color);*/
    background: var(--secondary-color2);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
    background: white;
    /*background: linear-gradient(135deg, rgb(255 255 255 / 80%), rgb(255 255 255 / 100%));*/
    /*background: linear-gradient(135deg, rgba(69, 132, 166, 0.9), rgba(251, 179, 68, 0.8));*/
    position: relative;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes it act like background-size: cover */
    z-index: -1; /* push video behind content */
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    /*background-image:*/
    /*    radial-gradient(circle at 20% 80%, var(--primary-color) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 80% 20%, var(--secondary-color) 0%, transparent 50%),*/
    /*    radial-gradient(circle at 40% 40%, var(--primary-color) 0%, transparent 50%);*/
    animation: float 20s ease-in-out infinite;
}

.hero-3d-container {
    perspective: 1000px;
    transform-style: preserve-3d;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
}

.hero-3d-icon {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(30deg);
    transition: transform 0.6s ease;
    animation: rotate3d 8s infinite linear;
}

.hero-3d-icon:hover {
    transform: rotateX(-15deg) rotateY(45deg) scale(1.1);
}
.navbar-brand img{
    width: 150px;
    transition: transform 0.2s ease;
    &:hover{
        transform: rotate(-5deg) scale(1.1);
    }
}
#categories{
    display: flex;
    align-items: center;
    height: 50vh;
}
.icon-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    border: 3px solid #ff8c00;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
}
.icon-top {
    transform: translateZ(100px);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.icon-front {
    transform: rotateY(0deg) translateZ(100px);
    background: linear-gradient(135deg, #ffb347, #ff8c00);
}

.icon-right {
    transform: rotateY(90deg) translateZ(100px);
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
}

.icon-back {
    transform: rotateY(180deg) translateZ(100px);
    background: linear-gradient(135deg, #ff6b35, #ff4500);
}

.icon-left {
    transform: rotateY(-90deg) translateZ(100px);
    background: linear-gradient(135deg, #ff4500, #ff6b35);
}

.icon-bottom {
    transform: rotateX(-90deg) translateZ(100px);
    background: linear-gradient(135deg, #ff6b35, #ff8c00);
}

.icon-shadow {
    position: absolute;
    width: 180px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(15px);
}

@keyframes rotate3d {
    0% { transform: rotateX(-20deg) rotateY(30deg); }
    25% { transform: rotateX(-15deg) rotateY(120deg); }
    50% { transform: rotateX(-25deg) rotateY(210deg); }
    75% { transform: rotateX(-10deg) rotateY(300deg); }
    100% { transform: rotateX(-20deg) rotateY(390deg); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.flag-icon {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.service-card {
    transition: var(--transition);
    overflow: hidden;
    border-radius: 15px !important;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(69, 132, 166, 0.2), rgba(251, 179, 68, 0.2));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    & .card-title, & .card-text {
        color: white !important;
    }
    & .service-icon {
        color: var(--secondary-color) !important;
    }
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Cards */
.service-card2 {
    /*background: white;*/
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0.375rem;
    width: 100%;
    /*width: 512px;*/
    /*max-width: 100%;*/
    position: relative;
    overflow: visible !important;
}

.service-card2:hover {
    transform: translateY(-5px);
}
.odd .service-card2 {
    background: var(--primary-color) !important;
}

.even .service-card2 {
    background: var(--secondary-color) !important;
}



.service-card2 .card-body {
    background: transparent !important;
    position: relative;
    overflow: visible;
}

.service-card2 .card-title {
    color: white;
    /*color: var(--primary-color) !important;*/
    text-shadow: 0px 0.822px 0px rgba(0, 0, 0, 0.56);
}

.service-card2 .card-text {
    /*color: var(--bs-dark) !important;*/
    color: white !important;
}

.service-card2:hover .card-title,
.service-card2:hover .card-text {
    color: white !important;
}

/* Corner image positioning - CENTER OF IMAGE AT CORNER */
.service-card2 .service-icon {
    position: absolute;
    width: 180px;
    height: 160px;
}

/* LTR (English) - top-right corner */
[dir="ltr"] .service-card2 .service-icon {
    top: 0;
    right: 0;
    transform: translate(50%, -50%); /* This moves the center to the fucking corner */
}

/* RTL (Arabic) - top-left corner */
[dir="rtl"] .service-card2 .service-icon {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%); /* This moves the center to the fucking corner */
}
.social-icons a{
    color: #e5e7eb;
}

.card-blue {
    border-left: 5px solid var(--primary-color);
}

.card-yellow {
    border-left: 5px solid var(--secondary-color);
}

.card-blue:hover {
    background: var(--primary-color);
    color: white !important;
}

.card-yellow:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.service-card .card-body {
    position: relative;
    z-index: 2;
}

.service-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.card-blue:hover .service-icon {
    color: white;
}

.card-yellow:hover .service-icon {
    color: var(--dark-color);
}

.img-desktop{
    display: flex;
}
.img-mobile{
    display: none;
}

#why-clickshare img{
    width: 100%;
    height: 100%;
    max-width: 550px;
    object-fit: cover;
    border-radius: 50px;
    transition: transform 0.3s ease;
    &:hover{
        transform: scale(1.05);
    }
}
.avatarReview{
    border: 1px solid var(--bs-primary);
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    & img{
        height: 100px !important;
    }
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-blue {
    border-top: 4px solid var(--primary-color);
}

.category-yellow {
    border-top: 4px solid var(--secondary-color);
}

.category-blue .category-icon {
    color: var(--primary-color);
}

.category-yellow .category-icon {
    color: var(--secondary-color);
}

/* Process Diagram */
.process-diagram {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.process-diagram:hover {
    transform: scale(1.05);
}

.card-why-us{
    width: 320px;
    max-width: 100%;
    & img{
        height: 250px !important;
    }
}

/* Review Cards */
.review-card {
    border-radius: 15px !important;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.quote-icon.top {
    top: 15px;
    left: 15px;
}

.quote-icon.bottom {
    bottom: 15px;
    right: 15px;
}

.stars {
    font-size: 1.5rem;
    text-shadow: 0 0 5px;
}

/* Statistics */
.stat-card {
    padding: 2rem;
    background: rgba(255,255, 255, 0.3);
    border-radius: 15px;
    /*box-shadow: var(--shadow);*/
    box-shadow: -3px 3px 0px #2b658ae8;;
    transition: var(--transition);
}
#earth .stat-card{
    background: var(--primary-color);
    box-shadow: -6px 3px 0px var(--secondary-color2);
}

.stat-card:hover {
    transform: translateY(-5px);
    /*box-shadow: var(--shadow-lg);*/
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    display: inline;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.stat-label {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Calculator */
.profit-display {
    background: linear-gradient(177deg, var(--primary-color), #9ec2df);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.form-range {
    height: 8px;
    background: #e9ecef;
    border-radius: 5px;
}

.form-range::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: var(--shadow);
}

.form-range::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: var(--shadow);
}

.whiteImage{
    filter: brightness(0) invert(1);
}
#footerLogo{
    height: 60px !important;
}

/* Accordion */
.accordion-item {
    border: none !important;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--light-color) !important;
    border: none !important;
    font-weight: 600;
    color: var(--dark-color) !important;
    padding: 1.5rem !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color) !important;
    color: white !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    padding: 1.5rem;
    background: white;
}

#earth {
    background: white !important;
    /*background: url("../../assets/homePage/avif/back-space.avif") no-repeat center center;*/
    background-size: cover;
    width: 100%;
    /*height: 100vh;*/
}
html[dir=rtl] #globeViz, html[dir=ltr] #globeViz div{
    margin-right: auto;
}
html[dir=ltr] #globeViz, html[dir=ltr] #globeViz div{
    margin-left: auto;
}
#globeViz {
    height: 700px;
    width: 500px;
    max-width: 100%;
    background: transparent;
}

/* Footer */
footer {
    border-top: 4px solid var(--bs-warning);
    background: linear-gradient(to bottom right, var(--bs-primary), #1a4a6b, #0d2d42);
}
.footer-list-item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #e5e7eb;
    transition: all 0.3s;
}

.footer-list-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(#caccd1, #ffffff);
}
footer .list-unstyled a{
    text-wrap-mode: nowrap;
}
.social-icons a {
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-brand {
    order: -1;
}

[dir="rtl"] .pages-nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .quote-icon.top {
    right: 15px;
    left: auto;
}

[dir="rtl"] .quote-icon.bottom {
    left: 15px;
    right: auto;
}

@media (min-width: 1400px) {
    footer #footerAbout{
        max-width: 500px;
    }
}
@media (max-width: 1400px) {
    footer #footerAbout{
        max-width: 350px;
    }
}

/* Responsive */
@media (max-height: 950px) {
    #globeViz, #globeViz div{
        margin: auto !important;
    }
}

@media (min-height: 900px) {
    #services{
        display: flex;
        align-items: center;
        /*height: 60vh;*/
    }
}
@media (max-height: 900px) {
    .text-logo{
        transform: translateY(9px);
        width: 180px !important;
    }
}

/* Responsive */
@media (max-width: 1440px) {
    #categories{
        height: auto;
    }
}

@media (max-width: 768px) {
    .text-logo{
        transform: translateY(6px);
        width: 140px !important
    }
    .display-4 {
        font-size: 2.5rem;
    }

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

    .hero-section {
        min-height: 80vh;
    }

    .stat-number {
        color: white !important;
        font-size: 2rem;
    }

    .profit-display {
        padding: 1.5rem;
    }
    #globeViz {
        height: 400px;
        width: 320px;
        max-width: 100%;
        background: transparent;
    }
    .service-card2 {
        /*width: 280px;*/
        max-width: 100%;
    }
    .service-card2 .service-icon {
        width: 100px;
        height: 90px;
    }
    [dir="ltr"] .service-card2 .service-icon {
        top: 0;
        right: 0;
        transform: translate(-20%, -50%);
    }

    /* RTL (Arabic) - top-left corner */
    [dir="rtl"] .service-card2 .service-icon {
        top: 0;
        left: 0;
        transform: translate(20%, -50%);
    }
}

@media (max-width: 500px) {
    .img-desktop{
        display: none;
    }
    .img-mobile{
        display: flex;
        max-width: 70%;
        margin: auto;
    }
    .card-why-us{
        width: 300px;
    }
    .service-card2 .card-content .card-title{
        margin-top: 20px;
    }
    .service-card2 .service-icon {
        width: 80px;
        height: 65px;
    }
}
