:root {
    --primary-color: #E85413;
    --primary-hover: #D04A10;
    --primary-light: rgba(232, 84, 19, 0.1);
    --secondary-color: #626467;
    --secondary-light: rgba(98, 100, 103, 0.1);
    --tertiary-color: #ffffff;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --gray-bg: #f8f9fa;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    background-color: var(--tertiary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.text-white {
    color: var(--tertiary-color) !important;
}

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

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

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

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

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

.section-padding {
    padding: 5rem 0;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(-5px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    box-shadow: 0 4px 15px rgba(232, 84, 19, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 84, 19, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    border-color: var(--tertiary-color);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    transition: var(--transition);
}

.navbar.scrolled .logo-white {
    display: none !important;
}

.navbar.scrolled .logo-dark {
    display: block !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--tertiary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--tertiary-color);
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--text-dark);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fade-in-up-delay-1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.fade-in-up-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.appear {
    opacity: 1;
    transform: translateY(0);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    color: var(--tertiary-color);
    transition: var(--transition);
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.dark-hero .hero-title {
    color: var(--tertiary-color);
}

.dark-hero .hero-desc {
    color: var(--text-light);
}

.dark-hero .btn-outline {
    border-color: var(--tertiary-color);
    color: var(--tertiary-color);
}

.dark-hero .btn-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 10px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: 50px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.decorative-card {
    max-width: 350px;
    margin: 0 auto;
    margin-right: auto;
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.decorative-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.currency-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    align-items: center;
}

.currency {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency i {
    background: var(--secondary-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.trend.up {
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #ffeaea;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    right: 50%;
    transform: translateX(50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.about-feature i {
    background: var(--primary-light);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-mission .glass-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bg-secondary-light {
    background-color: var(--secondary-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--tertiary-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-bottom-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--tertiary-color);
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 0;
}

.service-features li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.service-features i {
    color: #2ecc71;
    margin-top: 5px;
}



.compliance-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: var(--tertiary-color);
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    max-width: 400px;
    margin: 0 auto;
}

.compliance-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition);
}

.img-wrapper:hover .compliance-logo {
    filter: grayscale(0%);
}

.floating-anim {
    animation: float-slow 6s ease-in-out infinite alternate;
}

@keyframes float-slow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(15px);
    }
}

.decorative-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    top: 20px;
    right: -20px;
    opacity: 0.1;
}

.compliance-subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.compliance-desc {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    border-right: 4px solid var(--primary-color);
    padding-right: 1rem;
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compliance-list li {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--gray-bg);
    padding: 1rem;
    border-radius: 15px;
    transition: var(--transition);
}

.compliance-list li:hover {
    background: var(--tertiary-color);
    box-shadow: var(--shadow-soft);
    transform: translateX(-10px);
}

.compliance-list li .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
}

.compliance-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.compliance-list p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 0;
}

.technology {
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 84, 19, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    background: var(--primary-color);
    color: var(--tertiary-color);
    transform: scale(1.1);
}

.tech-card h3 {
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.tech-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

.reasons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.reason-item {
    background: var(--tertiary-color);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.reason-item:hover {
    background: var(--primary-color);
    color: var(--tertiary-color);
    transform: translateY(-5px);
}

.reason-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.reason-item:hover .reason-icon {
    color: var(--tertiary-color);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #aa0b00 100%);
    padding: 6rem 0;
    color: var(--tertiary-color);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-underline {
    position: relative;
    z-index: 1;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: rotate(-1deg);
}

.cta-desc {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-big-text {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 100px;
}

.footer {
    background-color: var(--darker-bg);
    color: #a0a0a0;
    padding: 5rem 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-info p {
    max-width: 400px;
}

.footer h3 {
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tertiary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media screen and (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width:992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }

    .decorative-card {
        margin: 0 auto;
        transform: none;
    }

    .hero-features {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .about-grid,
    .compliance-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .compliance-image {
        order: 2;
    }

    .compliance-content {
        order: 1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--tertiary-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
    }

    .menu-toggle.active-menu {
        color: var(--text-dark) !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reason-item {
        width: 100%;
        justify-content: center;
    }
}