 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Google Sans Code", monospace;
            font-optical-sizing: auto;
            font-weight: 300;
            font-style: normal;
            line-height: 1.6;
            color: #333;
            direction: ltr;
        }

        body[lang="ar"] {
            direction: rtl;
            font-family: 'Cairo', 'Amiri', 'Noto Sans Arabic', sans-serif;
        }

        .rtl {
            direction: rtl;
        }

        .rtl .logo {
            left: auto;
            right: 30px;
        }

        .rtl .hero-buttons {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .rtl .logo {
                right: 20px;
                left: auto;
            }

            .desktop-hero{
                display: none;
            }

            .mobile-hero{
                display: block;
            }
        }

        .hover-lift{
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-8px);
        }

        .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

        /*Hero Section CSS*/
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .logo {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            height: clamp(45px, 8vw, 100px); /* Better scaling */
    width: auto;
        }

        .logo-text {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .logo-text .game {
            color: #AE0808;
        }

        .logo-text .hermits {
            color: #333;
        }

        .desktop-hero{display: block;}
        .mobile-hero{display: none;}
        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 20px 20px;
            z-index: 5;
            background-color: rgba(0, 0, 0, 0.55);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(174, 8, 8, 0.9);
            color: white;
            padding: 8px 24px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 300;
            text-shadow: 1px 1px 4px rgba(244, 172, 69, 1);
            line-height: 1.4;
            color:#f4ac45
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: #AE0808;
            color: white;
            box-shadow: 0 4px 15px rgba(174, 8, 8, 0.4);
        }

        .btn-primary:hover {
            background: #8B0606;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(174, 8, 8, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: white;
            color: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        .language-switcher {
            position: absolute;
            top: 30px;
            right: 30px;
            z-index: 10;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .rtl .language-switcher {
            right: auto;
            left: 30px;
        }

        @media (max-width: 768px) {
            .language-switcher {
                top: 20px;
                right: 20px;
            }

            .rtl .language-switcher {
                left: 20px;
                right: auto;
            }
        }
        @media (max-width: 768px) {
            .logo {
                top: 20px;
                left: 20px;
            }

            .logo img {
                height: 45px;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn {
                padding: 14px 28px;
                font-size: 1rem;
                width: 280px;
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .desktop-hero{display: none;}
            .mobile-hero{display: block;}
        }

        /*Credibility Section Styles */
        .credibility-section {
            position: relative;
            background: #272727;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .credibility-bg-pattern {
            position: absolute;
            left: 0;
            top: 0;
            width: 300px;
            height: 100%;
            background-image: url("static img/shape 2@4x.png");
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.1;
        }

        .credibility-bg-pattern::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 20%;
            width: 60px;
            height: 60px;
            background: #F4AC45;
            transform: rotate(45deg);
            opacity: 0.2;
        }

        .credibility-bg-pattern::after {
            content: '';
            position: absolute;
            left: 180px;
            top: 70%;
            width: 40px;
            height: 40px;
            background: #F4AC45;
            transform: rotate(45deg);
            opacity: 0.15;
        }

        .credibility-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            position: relative;
            z-index: 2;
        }

        .credibility-content {
            margin-left: 0;
        }

        .credibility-title {
            color: #F4AC45;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 60px;
            line-height: 1.2;
            text-align: center;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .metric-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(244, 172, 69, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .metric-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(244, 172, 69, 0.4);
            transform: translateY(-5px);
        }

        .metric-number {
            color: #F4AC45;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 15px;
        }

        .metric-label {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .metric-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* RTL Support for Credibility Section */
        .rtl .credibility-content {
            margin-left: 0;
        }

        .rtl .credibility-bg-pattern {
            left: auto;
            right: 0;
        }

        /* Mobile Responsiveness for Credibility */
        @media (max-width: 768px) {
            .credibility-section {
                min-height: auto;
                padding: 60px 0;
            }

            .credibility-bg-pattern {
                width: 260px;
                opacity: 0.05;
            }

            .credibility-content {
                margin-left: 0;
            }

            .rtl .credibility-content {
                margin-right: 0;
            }

            .credibility-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
                text-align: center;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .metric-item {
                padding: 30px 25px;
            }

            .metric-number {
                font-size: 2.8rem;
            }

            .metric-label {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .credibility-title {
                font-size: 1.8rem;
            }

            .metric-number {
                font-size: 2.4rem;
            }
        }

        /* Portfolio Section Styles */
        .portfolio-section {
            background: white;
            padding: 100px 0;
            position: relative;
            background-image: radial-gradient(gray 1px, transparent 1px);
            background-size: 50px 50px;
            background-position:0,0,25px,25px;
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .portfolio-title {
            color: #2c3e50;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .portfolio-subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .portfolio-card {
            background: #272727;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-height: 500px;
            display: flex;
            flex-direction: column;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
        }

        .card-thumbnail {
            position: relative;
            width: 100%;
            height: 200px;
            background: #1a1a1a;
            overflow: hidden;
        }

        .card-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-card:hover .card-thumbnail img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
        }

        .system-type {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .system-type.multiplayer {
            background: #27ae60;
            color: white;
        }

        .system-type.vr {
            background: #9b59b6;
            color: white;
        }

        .system-type.backend {
            background: #3498db;
            color: white;
        }

        .system-type.integration {
            background: #f39c12;
            color: white;
        }

        .card-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .system-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .requirement-section {
            margin-bottom: 20px;
        }

        .requirement-label {
            color: #AE0808;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .requirement-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .solution-section {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .solution-label {
            color: #f4ac45;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .solution-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .tech-tags span {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
.portfolio-cta {
            text-align: center;
            margin-top: 50px;
        }

        .portfolio-cta-btn {
            background: #AE0808;
            color: white;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(174, 8, 8, 0.4);
        }

        .portfolio-cta-btn:hover {
            background: #8B0606;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(174, 8, 8, 0.6);
        }
        /* RTL Support for Portfolio */
        .rtl .card-overlay {
            right: auto;
            left: 15px;
        }

        .rtl .tech-tags {
            direction: rtl;
        }

        /* Mobile Responsiveness for Portfolio */
        @media (max-width: 768px) {
            .portfolio-section {
                padding: 60px 0;
            }

            .portfolio-title {
                font-size: 2.2rem;
            }

            .portfolio-subtitle {
                font-size: 1.1rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .card-thumbnail {
                height: 180px;
            }

            .card-content {
                padding: 20px;
            }

            .system-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .portfolio-title {
                font-size: 1.9rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }


/* Case Study Section */
.case-study-section {
    background: #272727;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.case-study-bg-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-image: url("static img/shape 2@4x.png");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.case-study-bg-pattern::before {
    content: '';
    position: absolute;
    right: 50px;
    top: 20%;
    width: 60px;
    height: 60px;
    background: #AE0808;
    transform: rotate(45deg);
    opacity: 0.2;
}

.case-study-bg-pattern::after {
    content: '';
    position: absolute;
    right: 180px;
    top: 70%;
    width: 40px;
    height: 40px;
    background: #AE0808;
    transform: rotate(45deg);
    opacity: 0.15;
}

.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.case-study-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-study-title {
    color: #f4ac45;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.case-study-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.case-study-carousel-container {
    position: relative;
    max-width: 90vw;
    margin: 0 auto;
}

.case-study-carousel {
    overflow: hidden;
    border-radius: 16px;
}

.case-study-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.case-study-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.case-study-content {
    display: flex;
    flex-direction: column;
}

.case-study-detail {
    margin-bottom: 25px;
}

.case-study-label {
    color: #AE0808;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.case-study-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.case-study-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f4ac45 0%, rgba(244, 172, 69, 0.3) 100%);
    margin: 30px 0;
}

.case-study-outcome {
    margin-top: 20px;
}

.case-study-outcome .case-study-label {
    color: #f4ac45;
    font-size: 1rem;
}

.case-study-outcome .case-study-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.case-study-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.case-study-image img,
.case-study-image video {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.case-study-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.case-study-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(244, 172, 69, 0.5);
    color: #f4ac45;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.case-study-btn:hover {
    background: rgba(244, 172, 69, 0.2);
    border-color: #f4ac45;
    transform: scale(1.1);
}

.case-study-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.case-study-indicators {
    display: flex;
    gap: 10px;
}

.case-study-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-study-indicator.active {
    background: #f4ac45;
    transform: scale(1.2);
}

/* RTL Support */
.rtl .case-study-bg-pattern {
    right: auto;
    left: 0;
}

.rtl .case-study-bg-pattern::before {
    right: auto;
    left: 50px;
}

.rtl .case-study-bg-pattern::after {
    right: auto;
    left: 180px;
}

.rtl .case-study-card {
    direction: rtl;
}

.rtl .case-study-carousel-track {
    direction: ltr;
}

/* Mobile Responsiveness - Keep original mobile styles */
@media (max-width: 768px) {
    .case-study-section {
        padding: 60px 0;
    }

    .case-study-bg-pattern {
        width: 150px;
        opacity: 0.05;
    }

    .case-study-title {
        font-size: 2.2rem;
    }

    .case-study-subtitle {
        font-size: 1.1rem;
    }
    
    .case-study-carousel-container {
        max-width: 100%;
    }

    .case-study-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 25px;
    }
    
    .case-study-image {
        min-height: 250px;
    }
    
    .case-study-image img,
    .case-study-image video {
        max-width: 100%;
        max-height: 300px;
    }

    .case-study-detail {
        margin-bottom: 20px;
    }

    .case-study-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .case-study-title {
        font-size: 1.8rem;
    }

    .case-study-card {
        padding: 30px 20px;
    }
    
    .case-study-image {
        min-height: 200px;
    }
    
    .case-study-image img,
    .case-study-image video {
        max-height: 250px;
    }
}

        /* Regional Advantages Section */
        .regional-advantages {
            background: #4286cc;
            color: white;
            padding: 80px 20px;
            text-align: center;
            top: 0;
        }

        .regional-advantages h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .advantages-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 40px;
        }

        .advantage {
            text-align: left;
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .advantage:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .advantage-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .advantage h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .advantage p {
            color: white;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* RTL Support */
        .rtl .advantage {
            text-align: right;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .regional-advantages {
                padding: 60px 20px;
                margin-top: -30px;
            }

            .regional-advantages h2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 30px;
            }

            .advantage {
                padding: 25px;
                text-align: center;
            }

            .rtl .advantage {
                text-align: center;
            }

            .advantage h3 {
                font-size: 1.2rem;
            }

            .advantage p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .regional-advantages h2 {
                font-size: 1.7rem;
            }

            .advantage-icon {
                font-size: 2rem;
            }
        }

         /* Testimonials Section */
        .testimonials {
            background: #272727;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background-image: radial-gradient(#f4ac45 1px, transparent 1px);
            background-size: 50px 50px;
            background-position:0,0,25px,25px;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 300px;
            height: 100%;
            background-image: url('testimonials-decoration.svg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.2;
            z-index: 1;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-title {
            color: white;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .testimonials-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Carousel Container */
        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .carousel {
            overflow: hidden;
            border-radius: 16px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            background: rgba(255, 255, 255, 0.05);
            padding: 50px 40px;
            border-radius: 16px;
            border-left: 5px solid #f4ac45;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .testimonial-quote {
            color: white;
            font-style: italic;
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.6;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 4rem;
            color: #f4ac45;
            position: absolute;
            left: -20px;
            top: -20px;
            opacity: 0.5;
        }

        .testimonial-quote::after {
            content: '"';
            font-size: 4rem;
            color: #f4ac45;
            position: absolute;
            right: -20px;
            bottom: -40px;
            opacity: 0.5;
        }

        .testimonial-author {
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .testimonial-company {
            color: #f4ac45;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Carousel Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            gap: 20px;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(244, 172, 69, 0.5);
            color: #f4ac45;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: rgba(244, 172, 69, 0.2);
            border-color: #f4ac45;
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-indicators {
            display: flex;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #f4ac45;
            transform: scale(1.2);
        }

        /* RTL Support */
.rtl .carousel-track {
    direction: ltr; /* Force LTR for carousel mechanics */
}

.rtl .testimonial {
    direction: rtl; /* Restore RTL for content */
    border-left: none;
    border-right: 5px solid #f4ac45;
}

.rtl .testimonials::after {
    right: auto;
    left: 0;
}

.rtl .testimonial-quote::before {
    left: auto;
    right: -20px;
}

.rtl .testimonial-quote::after {
    right: auto;
    left: -20px;
}

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .testimonials {
                padding: 60px 0;
            }

            .testimonials::after {
                width: 150px;
                opacity: 0.1;
            }

            .testimonials-title {
                font-size: 2.2rem;
            }

            .testimonials-subtitle {
                font-size: 1.1rem;
            }

            .testimonial {
                padding: 35px 25px;
            }

            .testimonial-quote {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }

            .testimonial-quote::before,
            .testimonial-quote::after {
                font-size: 3rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-title {
                font-size: 1.8rem;
            }

            .testimonial {
                padding: 30px 20px;
            }

            .testimonial-quote {
                font-size: 1rem;
            }
        }

         /* Services Section */
        .services {
            background: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .services::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background-image: url('static img/shape 3 (2)@4x.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.3;
            z-index: 1;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-title {
            color: #2c3e50;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .services-subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #ecf0f1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #AE0808, #8B0606);
            transform: scale(1.1);
        }

        .service-card h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .service-card p {
            color: #7f8c8d;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* RTL Support */
        .rtl .services::after {
            left: auto;
            right: 0;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .services {
                padding: 60px 0;
            }

            .services::after {
                width: 100%;
                height: 100px;
                opacity: 0.2;
            }

            .services-title {
                font-size: 2.2rem;
            }

            .services-subtitle {
                font-size: 1.1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card {
                padding: 30px 25px;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .service-card p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .services-title {
                font-size: 1.9rem;
            }

            .service-card {
                padding: 25px 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

       /* Blog Section */
.blog-section {
    background: #272727;
    padding: 100px 0;
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    color: #f4ac45;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Blog Carousel Structure */
.blog-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-carousel {
    overflow: hidden;
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Each slide contains 3 cards in a row */
.blog-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

/* Rectangle Blog Cards (taller than wide) */
.blog-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    height: 500px; /* Fixed height for rectangle shape */
    max-width: 350px; /* Limit width to ensure rectangle */
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

/* Blog Thumbnail Section */
.blog-thumbnail {
    width: 100%;
    height: 200px;
    background: #bdc3c7;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

/* Blog Content Section */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Blog Date */
.blog-date {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Blog Title */
.blog-card-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    flex-shrink: 0;
    min-height: 60px; /* Ensure consistent height */
}

/* Blog Snippet */
.blog-snippet {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow: hidden;
}

/* Read More Button */
.blog-read-more {
    background: #f4ac45;
    color: #272727;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    flex-shrink: 0;
}

.blog-read-more:hover {
    background: #e09835;
    transform: translateY(-2px);
}

/* Blog Navigation */
.blog-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.blog-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(244, 172, 69, 0.5);
    color: #f4ac45;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background: rgba(244, 172, 69, 0.2);
    border-color: #f4ac45;
    transform: scale(1.1);
}

.blog-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.blog-indicators {
    display: flex;
    gap: 10px;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: #f4ac45;
    transform: scale(1.2);
}

/* RTL Support */
.rtl .blog-carousel-track {
    direction: ltr;
}

.rtl .blog-slide {
    direction: rtl;
}

/* Mobile Responsiveness - 1 card per slide */
@media (max-width: 768px) {
    @media (max-width: 768px) {
    .blog-slide {
        flex-direction: column;
        align-items: center;
        /*flex-direction: column;
        gap: 20px;*/
    }
    
    .blog-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 400px;
        /*max-width: 100%;
        height: 450px;*/
    }
    
    .blog-content {
        height: auto;
        display: flex;
        flex-direction: column;
        /*padding: 20px;*/
    }
    
    .blog-snippet {
        flex-grow: 0;
        max-height: 80px;
        overflow: hidden;
        /*font-size: 0.85rem;*/
    }
    
    .blog-read-more {
        margin-top: auto;
    }
}
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 2.2rem;
    }

    .blog-subtitle {
        font-size: 1.1rem;
    }

    .blog-card-title {
        font-size: 1.1rem;
        min-height: 50px;
    }

    .blog-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.9rem;
    }

    .blog-card {
        height: 420px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-card-title {
        font-size: 1rem;
    }
}

        /*Tech stack section*/
        .tech-stack-section {
            padding: 100px 20px;
            background: white;
            position: relative;
        }

        .tech-stack-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        .tech-categories {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .tech-category {
            text-align: center;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .tools-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            justify-content: center;
        }

        .tool-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 20px 15px;
            background: rgba(248, 249, 250, 0.8);
            border-radius: 12px;
            border: 1px solid #ecf0f1;
            transition: all 0.3s ease;
            min-width: 120px;
            text-align: center;
        }

        .tool-item:hover {
            background: white;
            border-color: #3498db;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
        }

        .tool-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            transition: transform 0.3s ease;
        }

        .tool-item:hover .tool-icon {
            transform: scale(1.1);
        }

        .tool-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: #2c3e50;
            line-height: 1.3;
        }
        .tool-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

        /* Mobile responsiveness for tech stack section*/
        @media (max-width: 768px) {
            .tech-stack-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .tech-categories {
                gap: 40px;
            }

            .category-header {
                margin-bottom: 25px;
            }

            .category-title {
                font-size: 1.3rem;
            }

            .tools-grid {
                gap: 15px;
            }

            .tool-item {
                padding: 15px 10px;
                min-width: 100px;
            }

            .tool-icon {
                width: 40px;
                height: 40px;
                font-size: 1.8rem;
            }

            .tool-name {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.9rem;
            }

            .category-header {
                flex-direction: column;
                gap: 10px;
            }

            .tools-grid {
                gap: 12px;
            }

            .tool-item {
                min-width: 85px;
                padding: 12px 8px;
            }

            .tool-name {
                font-size: 0.75rem;
            }
        }

        /* Footer Section */
        .footer {
            background: #272727;
            padding: 80px 0 40px;
            position: relative;
            background-image: radial-gradient(gray 1px, transparent 1px);
            background-size: 50px 50px;
            background-position:0,0,25px,25px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .footer-title {
            color: #f4ac45;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .footer-subtitle {
            color: white;
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Footer Main Content */
        .footer-main-content {
            display: grid;
            grid-template-columns: 1fr 2px 1fr;
            gap: 60px;
            width: 100%;
            margin-bottom: 50px;
            align-items: start;
        }

        .vertical-divider {
            width: 2px;
            background: linear-gradient(to bottom, 
                transparent 0%,
                rgba(244, 172, 69, 0.3) 20%,
                rgba(244, 172, 69, 0.8) 50%,
                rgba(244, 172, 69, 0.3) 80%,
                transparent 100%);
            height: 100%;
            min-height: 300px;
            justify-self: center;
        }

        .footer-cta-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-cta-title {
            color: #f4ac45;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-item {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-cta-btn {
            border: none;
            padding: 18px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .footer-cta-btn.primary {
            background: #AE0808;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .footer-cta-btn.primary::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #f4ac45, #f4ac45);
            border-radius: 10px;
            z-index: -1;
            animation: pulseOutline 2s infinite;
            opacity: 0;
        }

        @keyframes pulseOutline {
            0% {
                transform: scale(1);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.7;
            }
            100% {
                transform: scale(1.1);
                opacity: 0;
            }
        }

        .footer-cta-btn.primary:hover {
            background: #8B0606;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(174, 8, 8, 0.4);
        }

        .footer-cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid #AE0808;
        }

        .footer-cta-btn.secondary:hover {
            background: #AE0808;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(174, 8, 8, 0.2);
        }

        .primary-cta {
            margin-bottom: 10px;
        }

        .secondary-cta .cta-description {
            opacity: 0.8;
            font-size: 0.85rem;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Contact Form Section */ 
        .contact-form-section {
            width: 100%;
        }

        .contact-form-title {
            color: #f4ac45;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            position: relative;
        }

        .form-group.full-width {
            width: 100%;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.15) \9; /* IE fallback */
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-textarea {
            height: 120px;
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: #AE0808;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #8B0606;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(174, 8, 8, 0.4);
        }

        .form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background: rgba(46, 204, 113, 0.15);
    border: 2px solid #2ecc71;
    color: #27ae60;
}

.form-message-error {
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid #e74c3c;
    color: #c0392b;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* RTL Support for Loading */
.rtl .loading-spinner {
    margin-right: 0;
    margin-left: 8px;
}

/* Form Input Focus States Enhancement */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f4ac45;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(244, 172, 69, 0.1);
}

/* Error State Styling */
.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Submit Button Loading State */
.submit-btn:disabled {
    cursor: not-allowed;
    transform: none !important;
}

/* Mobile Responsive Form Messages */
@media (max-width: 768px) {
    .form-message {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .loading-spinner {
        width: 14px;
        height: 14px;
        margin-right: 6px;
    }
    
    .rtl .loading-spinner {
        margin-right: 0;
        margin-left: 6px;
    }
}
        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            width: 100%;
        }

        .footer-info {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        .footer-social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

/* Individual Platform Styles */
.social-link.linkedin:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Animation delays for stagger effect */
.social-link.linkedin {
    animation-delay: 0.1s;
}

.social-link.facebook {
    animation-delay: 0.2s;
}

.social-link.youtube {
    animation-delay: 0.3s;
}
        /* RTL Support for Footer */
        .rtl .footer-social-media {
    direction: ltr; /* Keep social icons in standard order */
}
        .rtl .footer-main-content {
            direction: rtl;
        }

        .rtl .footer-cta-section {
            text-align: right;
        }

        .rtl .contact-form-title {
            text-align: center;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .footer {
                padding: 60px 0 30px;
            }

            .footer-title {
                font-size: 2rem;
            }

            .footer-subtitle {
                font-size: 1rem;
            }

            .footer-main-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .vertical-divider {
                display: none;
            }

            .footer-cta-title,
            .contact-form-title {
                font-size: 1.3rem;
            }

            .footer-cta-btn {
                padding: 16px 20px;
                font-size: 0.95rem;
            }

            .form-row {
                flex-direction: column;
                gap: 15px;
            }

            .form-input,
            .form-textarea {
                padding: 14px 16px;
            }

            .form-textarea {
                height: 100px;
            }

            .submit-btn {
                padding: 16px;
                font-size: 1rem;
            }

            .footer-links {
                gap: 20px;
                flex-direction: column;
            }

            .footer-social-media {
        gap: 15px;
        margin: 15px 0;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
        }

        @media (max-width: 480px) {
            .footer-title {
                font-size: 1.8rem;
            }

            .footer-main-content {
                gap: 30px;
            }

            .footer-cta-title,
            .contact-form-title {
                font-size: 1.2rem;
            }

            .footer-cta-btn {
                padding: 14px 18px;
                font-size: 0.9rem;
            }

            .form-input,
            .form-textarea {
                padding: 12px 14px;
                font-size: 0.95rem;
            }

            .footer-social-media {
        gap: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 18px;
        height: 18px;
    }
        }

/* Client Logos Section CSS - Add this to your Style.css */

.client-logos-section {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.client-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2c3e50 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.03;
    z-index: 1;
}

.client-logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.client-logos-header {
    text-align: center;
    margin-bottom: 60px;
}

.client-logos-title {
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.client-logos-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    min-height: 120px;
    backdrop-filter: blur(10px);
}

.logo-item:hover {
    background: white;
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.client-logo {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover .client-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Stagger animation delays */
.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.15s; }
.logo-item:nth-child(3) { animation-delay: 0.2s; }
.logo-item:nth-child(4) { animation-delay: 0.25s; }
.logo-item:nth-child(5) { animation-delay: 0.3s; }
.logo-item:nth-child(6) { animation-delay: 0.35s; }
.logo-item:nth-child(7) { animation-delay: 0.4s; }
.logo-item:nth-child(8) { animation-delay: 0.45s; }
.logo-item:nth-child(9) { animation-delay: 0.5s; }
.logo-item:nth-child(10) { animation-delay: 0.55s; }
.logo-item:nth-child(11) { animation-delay: 0.6s; }
.logo-item:nth-child(12) { animation-delay: 0.65s; }

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .client-logos-section {
        padding: 60px 0;
    }
    
    .client-logos-title {
        font-size: 2.2rem;
    }
    
    .client-logos-subtitle {
        font-size: 1.1rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .logo-item {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .client-logo {
        max-width: 120px;
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .client-logos-title {
        font-size: 1.9rem;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo-item {
        padding: 20px 15px;
        min-height: 90px;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 60px;
    }
}

/* RTL Support */
.rtl .client-logos-section::before {
    background-position: 0 0, -40px 40px;
}