/* CSS Custom Properties */
:root {
    --base-color: #5b5675;
    --heading-color: #141125;
    --primary-color: #182d54;
    --light-color: #819cc4;
    --yellow-color: #fec064;
    --border-color: #edebfd;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--base-color));
    --gradient-yellow: linear-gradient(135deg, var(--yellow-color), var(--primary-color));
    --gradient-light: linear-gradient(135deg, var(--border-color), var(--white));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--base-color);
    direction: rtl;
    background: linear-gradient(135deg, var(--border-color) 0%, var(--white) 50%, var(--border-color) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 68px;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(24, 45, 84, 0.3);
}

.btn-primary:hover {
    background: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 45, 84, 0.4);
}

.btn-gradient {
    background: var(--gradient-yellow);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 192, 100, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 192, 100, 0.4);
}

.btn-yellow {
    background: var(--yellow-color);
    color: var(--heading-color);
    font-weight: 700;
}

.btn-yellow:hover {
    background: rgba(254, 192, 100, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #444;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-yellow {
    background: rgba(254, 192, 100, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(254, 192, 100, 0.3);
}

.badge-blue {
    background: rgba(129, 156, 196, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(129, 156, 196, 0.3);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--base-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-color);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.highlight {
    color: var(--yellow-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Customer Grid */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.customer-card {
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem; */
    text-align: center;
    transition: all 0.3s ease;
}
.mySwiper {
    overflow: hidden;
    margin-bottom: 3rem;
}
.customer-card img {
    width: 110px;
    margin-bottom: 1rem;
    opacity: 1;
    border-radius: 12px;
    overflow: hidden;
}

.customer-card h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    display: none;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-icon {
    background: rgba(254, 192, 100, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--yellow-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

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

/* Section Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-grid .badge {
    opacity: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    position: relative;
    direction: rtl;
    text-align: right;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(237, 235, 253, 0.2) 50%, var(--white) 100%);
}

.about-section .container {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(24, 45, 84, 0.1), rgba(254, 192, 100, 0.1));
    border-radius: 24px;
    filter: blur(20px);
}

.image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.5s ease;
    height: 670px;
    object-fit: cover;
}

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

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--yellow-color);
    color: var(--heading-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(254, 192, 100, 0.3);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    background: var(--gradient-primary);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--base-color);
}

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

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(237, 235, 253, 0.3) 0%, var(--white) 50%, rgba(237, 235, 253, 0.5) 100%);
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23182d54" opacity="0.05"/></svg>');
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-icon {
    background: var(--yellow-color);
    padding: 0.5rem;
    border-radius: 8px;
}

.floating-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.floating-title {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.floating-subtitle {
    color: var(--base-color);
    font-size: 0.875rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(237, 235, 253, 0.5);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, var(--yellow-color), rgba(254, 192, 100, 0.8));
    padding: 0.5rem;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.feature-item span {
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: var(--heading-color);
}

/* Technical Section */
.technical-section {
    padding: 6rem 0;
    position: relative;
    direction: rtl;
    text-align: right;
    background-color: #f2f2f2;
}

.technical-section .section-title {
    color: #182d54;
}
.technical-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}


.tech-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.tech-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
}

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

.tech-icon-secondary {
    background: var(--base-color);
}

.tech-icon-light {
    background: var(--light-color);
}

.tech-icon-yellow {
    background: var(--yellow-color);
}

.tech-icon i {
    color: var(--white);
    font-size: 2rem;
}

.tech-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 24px;
}

.tech-card p {
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(237, 235, 253, 0.4) 0%, var(--white) 50%, rgba(237, 235, 253, 0.6) 100%);
}

.comparison-table-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.comparison-table-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--yellow-color) 50%, var(--base-color) 100%);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table th:first-child {
    text-align: right;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(237, 235, 253, 0.2);
}

.comparison-table td {
    padding: 2rem;
    vertical-align: top;
}

.comparison-feature {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.125rem;
}

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

.comparison-neutral {
    text-align: center;
    color: var(--base-color);
    font-weight: 500;
}

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

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.comparison-badge-positive {
    background: rgba(254, 192, 100, 0.2);
    color: var(--yellow-color);
}

.comparison-badge-negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.comparison-note {
    font-size: 0.875rem;
    color: var(--base-color);
    margin-top: 0.5rem;
}

.comparison-note-negative {
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary-color) 50%, var(--base-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></svg>');
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    background: rgba(254, 192, 100, 0.2);
    padding: 1rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--yellow-color);
}

.contact-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    font-size: 1.125rem;
    opacity: 0.8;
}

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

.contact-image-wrapper {
    position: relative;
}

.contact-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, rgba(254, 192, 100, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 24px;
    filter: blur(30px);
}

.contact-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    position: relative;
}

.contact-badge {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--yellow-color);
    color: var(--heading-color);
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(254, 192, 100, 0.3);
}

/* Footer */
.footer {
    background: var(--heading-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--heading-color) 0%, var(--primary-color) 100%);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--light-color);
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.social-link {
    background: var(--primary-color);
    padding: 0.75rem;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--yellow-color);
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow-color);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--light-color);
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid var(--base-color);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: var(--light-color);
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
    }

    .nav.active {
        display: flex;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .technical-cards {
        grid-template-columns: 1fr;
    }

    .section-cta {
        flex-direction: column;
    }

    .contact-cta {
        flex-direction: column;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 18px;
        line-height: 20px;
        margin-top: 16px;
    }

    .section-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card {
        padding: 10px;
    }

    .benefit-icon {
        background: var(--gradient-primary);
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .benefit-icon i {
        color: var(--white);
        font-size: 1rem;
    }

    .benefit-card h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 0.5rem;
        line-height: 13px;
    }

    .benefit-card p {
        color: var(--base-color);
        font-size: 12px;
    }
    .about-section {
        padding: 3rem 0;
    }
    .show-more-btn {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 8px 24px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: max-content;
    }
    
    .mySwiper {
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .customers-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .customer-card img {
        width: 70px;
        border-radius: 10px
    }

    .hero-section {
        margin-top: 60px !important;
        padding: 3rem 0 !important;
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
        
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 40px;
    }

    .stat-icon i {
        font-size: 1.4rem;
    }
    .stat-number {
        font-size: 19px;
        margin: 0;
    }
    .stat-icon {
        width: 47px;
        height: 47px;
        margin: 0 auto 10px;
    }
    .stat-label {
        font-size: 13px;
    }
    .image-wrapper img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: transform 0.5s ease;
        height: auto;
        object-fit: cover;
    }
    .technical-section {
        padding: 3rem 0;
        position: relative;
        direction: rtl;
        text-align: right;
        background-color: #f2f2f2;
    }
    .technical-section .section-title {
        font-size: 18px;
        line-height: 18px;
        margin-top: 8px;
        margin-bottom: 10px;
    }
    .technical-section  .section-description {
        font-size: 12px;
        line-height: 24px;
        margin-bottom: 1rem;
    }
    .technical-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .tech-card {
        background: var(--white);
        padding: 13px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    .tech-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        transition: transform 0.3s ease;
    }
    .tech-icon i {
        color: var(--white);
        font-size: 20px;
    }
    .tech-card h3 {
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 19px;
    }
    .tech-card p {
        line-height: 17px;
        font-size: 12px;
    }
    .technical-section .section-header {
        margin-bottom: 2rem;
    }
    .about-section-three .list-style-one li {
        font-weight: 600;
        font-size: 13px !important;
        width: 100% !important;
        display: flex;
    }
    .about-section-three .sub-title {
        line-height: 1.4;
        font-weight: 600;
        padding: 6px 0;
        border-radius: 5px;
        margin-bottom: 4px;
        background: #f3f1fe;
        display: inline-block;
        text-transform: capitalize;
        color: var(--primary-color);
    }
    .about-section-three .section-title h2 {
        font-size: 20px !important;
    }
    .about-section-three .about-image {
        margin-bottom: 15px !important;
    }
    .about-section-three {
        padding: 3rem 0;
    }
    .about-section-three .list-style-one {
        margin-bottom: 0 !important;
    }
    .dashboard-section tr th:first-child {
        display: none !important;
    }
    .dashboard-section {
        padding: 3rem 0;
    }
    .about-section .badge {
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
}

.header-upper {
    background-color: #fff;
}

.hero-section {
    margin-top: 100px;
}

.table-responsive {
    text-align: right !important;
}

footer {
    display: flex;
    padding: 14px;
    color: #182d54;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.hero-content .badge {
    background: rgba(255, 255, 255, 0.2);
}


.customer-card.animate-on-scroll {
    opacity: 1;
    animation: none;
}