        :root {
            --primary-color: #2C3E50;
            --secondary-color: #8CC73E;
            --accent-color: #3498DB;
            --text-color: #2C3E50;
            --light-bg: #F8F9FA;
            --dark-bg: #1A252F;
        }

        body {
            font-family: 'Tajawal', "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: var(--text-color);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }



        h1, h2, h3, h4, h5, h6 {
            font-family: 'Tajawal', "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 600;
        }

        /* Additional Technology Features */
        .additional-tech-features {
            margin-top: 50px;
        }

        .additional-tech-features h3 {
            color: #2c3e50 !important;
            font-weight: 700;
            text-shadow: none;
            margin-bottom: 30px !important;
        }

        .tech-feature-card {
            background: rgba(255, 255, 255, 0.95) !important;
            padding: 25px 15px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(46, 139, 87, 0.2) !important;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .tech-feature-card:hover {
            background: rgba(255, 255, 255, 1) !important;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
        }

        .feature-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #2E8B57, #3CB371) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white !important;
            box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4) !important;
        }

        .tech-feature-card h5 {
            color: #2c3e50 !important;
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            text-shadow: none;
        }

        .tech-feature-card p {
            color: #5a6c7d !important;
            margin: 0;
            line-height: 1.6;
            font-size: 0.95rem;
            text-shadow: none;
        }

        /* Mobile Responsiveness for Tech Features */
        @media (max-width: 768px) {
            .additional-tech-features {
                margin-top: 30px;
            }

            .tech-feature-card {
                padding: 20px 15px;
                min-height: 250px;
                margin-bottom: 20px;
            }

            .feature-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            .tech-feature-card h5 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }

            .tech-feature-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .tech-feature-card {
                padding: 15px 10px;
                min-height: 220px;
            }

            .feature-icon-wrapper {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .tech-feature-card h5 {
                font-size: 1rem;
                margin-bottom: 8px;
            }

            .tech-feature-card p {
                font-size: 0.85rem;
            }
        }

        .hero {
            padding: 180px 0 150px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://img.freepik.com/free-photo/business-people-meeting-office_53876-25060.jpg') center/cover;
            opacity: 0.1;
            animation: zoomInOut 20s infinite alternate;
        }

        @keyframes zoomInOut {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(10px) !important;
            color: white !important;
            padding: 10px 20px !important;
            border-radius: 30px !important;
            font-weight: 500 !important;
            display: inline-block !important;
            margin-bottom: 20px !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
            transition: var(--transition);
            visibility: visible !important;
            opacity: 1 !important;
            position: relative !important;
            z-index: 10 !important;
        }

        .hero-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .region-stats {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 20px;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .stat-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .stat-card p {
            color: #666;
            margin: 0;
        }

        .solution-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }

        .solution-card:hover {
            transform: translateY(-10px);
        }

        .solution-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .solution-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .solution-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .tech-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .tech-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .tech-image:hover img {
            transform: scale(1.1);
        }

        .tech-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .tech-image:hover::before {
            opacity: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .section-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .section-header h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .achievement-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .achievement-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .achievement-item:hover {
            transform: translateY(-5px);
        }

        .achievement-item i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .achievement-item h3 {
            font-size: 2rem;
            margin-bottom: 5px;
            color: white;
            font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 600;
        }

        .achievement-item p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .brand-tagline {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 2rem;
        }

        .tagline-container.floating-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 25px 35px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            animation: taglineFloat 4s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .tagline-container.floating-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .tagline-container.floating-card:hover::before {
            left: 100%;
        }

        .tagline-container.floating-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .tagline-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tagline-text {
            font-family: 'Tajawal', 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--primary-color);
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out;
            text-shadow: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .logo-text {
            font-weight: 700;
            font-size: 2.2rem;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            margin-left: 5px;
        }

        .tagline-underline {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            margin: 15px auto 0;
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 0.5s both;
            box-shadow: 0 0 10px rgba(140, 199, 62, 0.3);
            position: relative;
            z-index: 1;
        }

        .tagline-container.floating-card:hover .tagline-underline {
            box-shadow: 0 0 15px rgba(140, 199, 62, 0.5);
            transform: scaleX(1.1);
            transition: all 0.3s ease;
        }

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

        @keyframes gradientGlow {
            from {
                filter: brightness(1) saturate(1);
                transform: scale(1);
            }
            to {
                filter: brightness(1.2) saturate(1.3);
                transform: scale(1.02);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 80px;
            }
        }

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

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            position: relative;
        }

        /* Sticky Features Styles - Vertical Text on Right Side */
        .sticky-features {
            position: absolute;
            top: 50%;
            right: -60px;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sticky-feature {
            background: white;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            font-family: 'Tajawal', "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 500;
            border: 1px solid rgba(0, 0, 0, 0.05);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
        }

        .sticky-feature:hover {
            transform: rotate(180deg) translateX(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .sticky-feature i {
            font-size: 1.5rem;
            transform: rotate(180deg);
        }

        .sticky-feature span {
            font-size: 1rem;
            font-weight: 600;
            transform: rotate(180deg);
        }

        /* Responsive adjustments for sticky features */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 100px 0 !important;
            }

            .hero-badge {
                font-size: 0.9rem !important;
                padding: 8px 16px !important;
                margin-bottom: 15px !important;
                text-align: center !important;
                display: block !important;
                width: fit-content !important;
                margin-left: auto !important;
                margin-right: auto !important;
                background: rgba(255, 255, 255, 0.1) !important;
                backdrop-filter: blur(10px) !important;
                color: white !important;
                border-radius: 30px !important;
                font-weight: 500 !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
                visibility: visible !important;
                opacity: 1 !important;
                z-index: 10 !important;
            }

            .hero h1 {
                font-size: 2.2rem !important;
                text-align: center !important;
                line-height: 1.3 !important;
            }

            .hero p {
                font-size: 1.1rem !important;
                text-align: center !important;
                margin-bottom: 25px !important;
            }

            .sticky-features {
                position: static !important;
                width: 100% !important;
                margin-top: 20px !important;
                transform: none !important;
                flex-direction: row !important;
                justify-content: center !important;
                gap: 15px !important;
            }

            .sticky-feature {
                writing-mode: unset !important;
                text-orientation: unset !important;
                transform: none !important;
                padding: 12px 16px !important;
                border-radius: 12px !important;
                flex: 1 !important;
                max-width: 180px !important;
                text-align: center !important;
                margin-bottom: 0 !important;
            }

            .sticky-feature:hover {
                transform: translateY(-3px) !important;
            }

            .sticky-feature i {
                transform: none !important;
                font-size: 1.2rem !important;
                margin-bottom: 5px !important;
                display: block !important;
            }

            .sticky-feature span {
                transform: none !important;
                font-size: 0.9rem !important;
                display: block !important;
            }
        }

        .section-badge {
            background: var(--secondary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            font-family: 'Tajawal', "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .region-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .region-card:hover {
            transform: translateY(-10px);
        }

        .region-image {
            position: relative;
            overflow: hidden;
        }

        .region-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .region-card:hover .region-image img {
            transform: scale(1.1);
        }

        .region-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: white;
        }

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

        .region-stats .number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }

        .region-stats .label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .solution-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .solution-card:hover {
            transform: translateY(-10px);
        }

        .solution-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .solution-icon i {
            font-size: 2rem;
            color: white;
        }

        .solution-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .solution-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .solution-features i {
            color: var(--secondary-color);
        }

        .solution-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .solution-link:hover {
            color: var(--secondary-color);
        }

        /* Modern Technology Section Styles */
        .technology-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .tech-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
            z-index: 2;
        }

        .technology-section .container {
            position: relative;
            z-index: 3;
        }

        /* Tech Image Styles */
        .tech-image-wrapper {
            position: relative;
            padding: 20px;
        }

        .tech-image-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            background: white;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .tech-image-card:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
        }

        .tech-main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .tech-image-card:hover .tech-main-image {
            transform: scale(1.05);
        }

        .tech-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
            padding: 40px 30px 30px;
            color: white;
        }

        .tech-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

        .tech-stat-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .stat-content {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ffffff !important;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            opacity: 1;
        }

        /* Fix for stat item background to improve text visibility */
        .tech-image-overlay .tech-stat-item {
            background: rgba(0, 0, 0, 0.6) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        }

        .tech-image-overlay .tech-stat-item:hover {
            background: rgba(0, 0, 0, 0.7) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
        }

        /* Floating Elements */
        .tech-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .floating-dot {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-dot-1 {
            width: 12px;
            height: 12px;
            top: 20%;
            right: 15%;
            animation-delay: 0s;
        }

        .floating-dot-2 {
            width: 8px;
            height: 8px;
            top: 60%;
            right: 25%;
            animation-delay: 2s;
        }

        .floating-dot-3 {
            width: 16px;
            height: 16px;
            top: 40%;
            right: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Tech Header Content */
        .tech-header-content {
            margin-bottom: 40px;
        }

        .tech-category-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .tech-category-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .tech-category-badge i {
            font-size: 1rem;
        }

        .tech-main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark-bg);
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tech-main-description {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Tech Image Styles - Restored Original */
        .tech-image-wrapper {
            position: relative;
            padding: 20px;
        }

        .tech-image-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            background: white;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .tech-image-card:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
        }

        .tech-main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .tech-image-card:hover .tech-main-image {
            transform: scale(1.05);
        }

        .tech-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
            padding: 40px 30px 30px;
            color: white;
        }

        .tech-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

        .tech-stat-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Tech Content Wrapper */
        .tech-content-wrapper {
            padding: 20px;
        }

        /* Tech Features Grid - For First 3 Features */
        .tech-features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        /* Additional Features Section */
        .additional-features-section {
            padding: 40px 0;
        }

        .additional-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .additional-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .tech-feature-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
        }

        .tech-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .tech-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .tech-feature-card:hover::before {
            transform: scaleY(1);
        }

        .feature-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(120, 119, 198, 0.1), rgba(255, 119, 198, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .tech-feature-card:hover .feature-icon-wrapper {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .feature-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #64748b;
            margin: 0;
        }

                        /* Responsive Design */
        @media (max-width: 992px) {
            .tech-image-card {
                transform: none;
                margin-bottom: 30px;
            }

            .tech-main-image {
                height: 400px;
            }

            .tech-main-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .tech-main-title {
                font-size: 2.2rem;
            }

            .tech-main-description {
                font-size: 1.1rem;
            }

            .tech-feature-card {
                padding: 20px;
                gap: 15px;
            }

            .feature-icon-wrapper {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .tech-main-image {
                height: 300px;
            }

            .tech-stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }



        .btn-outline-primary {
            color: white;
            border-color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Updated Footer Styles */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .footer-logo {
            margin-bottom: 25px;
        }

        .footer h5 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 600;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 400;
        }

        .footer ul li a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 400;
        }

        .footer-contact li i {
            color: var(--secondary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 60px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: white;
        }

        .services-section {
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .services-section {
            margin-top: 30px;
        }

        .services-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            position: relative;
        }

        .services-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .service-item:hover {
            transform: translateX(8px);
            background: white;
            border-left-color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .service-item i {
            font-size: 1.2rem;
            color: var(--primary-color);
            width: 25px;
            text-align: center;
        }

        .service-link {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            flex: 1;
        }

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



        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary-color);
        }

        .service-card:hover .service-icon i {
            color: white;
            transform: scale(1.1);
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: #555;
        }

        .service-features i {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

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

        .why-choose-us {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }

        .feature-showcase {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            background: white;
            border-radius: 20px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-item:hover, .feature-item.active {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-item.active {
            background: var(--primary-color);
        }

        .feature-item.active h3,
        .feature-item.active p {
            color: white;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-item.active .feature-icon {
            background: var(--secondary-color);
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .feature-item.active .feature-icon i {
            color: white;
        }

        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .feature-content p {
            color: #666;
            margin: 0;
            transition: color 0.3s ease;
        }

        .stats-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            height: 100%;
        }

        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            background: var(--primary-color);
        }

        .stat-icon i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon i {
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
            margin: 0;
        }

        .stat-card:nth-child(3) {
            grid-column: span 2;
        }

        .testimonials-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .quote-icon {
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.2;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .testimonial-author img {
            width: 70px;
            height: 70px;
            border: 3px solid var(--primary-color);
            padding: 3px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-author img {
            transform: scale(1.1);
        }

        .author-info h5 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .author-info p {
            color: #666;
            margin-bottom: 8px;
        }

        .rating {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1.2rem;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 30px;
                margin: 10px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .testimonial-author img {
                width: 60px;
                height: 60px;
            }
        }

        /* Background Patterns and Overlays */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.1;
            z-index: 1;
        }

        .solutions {
            position: relative;
            overflow: hidden;
        }

        .solutions::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
            opacity: 0.05;
            transform: rotate(45deg);
            z-index: 0;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/white-wall.png');
            opacity: 0.1;
            z-index: 0;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
            opacity: 0.1;
            z-index: 0;
        }

        .technology {
            position: relative;
            overflow: hidden;
        }

        .technology::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://www.transparenttextures.com/patterns/brushed-alum.png');
            opacity: 0.1;
            z-index: 0;
        }

        /* Floating Elements */
        .floating-shape {
            position: absolute;
            background: var(--primary-color);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .floating-shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
        }

        .floating-shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
        }

        .floating-shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: -75px;
        }

        /* Section Content Positioning */
        .hero .container,
        .solutions .container,
        .why-choose-us .container,
        .testimonials-section .container,
        .technology .container {
            position: relative;
            z-index: 2;
        }

        /* Enhanced Card Styles */
        .solution-card,
        .testimonial-card,
        .service-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.9);
        }

        /* Gradient Overlays */
        .section-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(231, 76, 60, 0.05) 100%);
            z-index: 1;
        }

        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-info-card,
        .contact-form-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before,
        .contact-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: 1;
            pointer-events: none;
        }

        .contact-info-card:hover::before,
        .contact-form-card:hover::before {
            transform: scaleX(1);
        }

        .contact-info-header {
            margin-bottom: 30px;
        }

        .contact-info-header h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 30px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            border-radius: 15px;
            background: var(--light-bg);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateX(10px);
            background: var(--primary-color);
        }

        .contact-method:hover .method-icon,
        .contact-method:hover h4,
        .contact-method:hover p {
            color: white;
        }

        .method-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .method-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .method-content p {
            margin: 0;
            color: #666;
            transition: color 0.3s ease;
        }

        .contact-social {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .contact-social h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        .form-floating {
            position: relative;
            z-index: 2;
        }

        .form-floating > .form-control,
        .form-floating > .form-select {
            height: calc(3.5rem + 2px);
            padding: 1rem 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: white;
            position: relative;
            z-index: 2;
            line-height: 1.5;
        }

        .form-floating > textarea.form-control {
            height: 150px;
            padding-top: 1.5rem;
        }

        .form-floating > label {
            padding: 1rem 0.75rem;
            z-index: 2;
            background-color: transparent;
            height: auto;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.1);
            z-index: 2;
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .form-control:not(:placeholder-shown) {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .form-control::placeholder {
            color: transparent;
        }

        .form-floating > .form-control:focus ~ label,
        .form-floating > .form-control:not(:placeholder-shown) ~ label,
        .form-floating > .form-select:focus ~ label,
        .form-floating > .form-select:not(:placeholder-shown) ~ label {
            transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
            background-color: white;
            padding: 0 0.25rem;
            z-index: 2;
            height: auto;
        }



        @media (max-width: 768px) {
            .contact-info-card,
            .contact-form-card {
                padding: 30px;
            }

            .contact-method {
                padding: 12px;
            }

            .method-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        .partners-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .partners-carousel-wrapper {
            padding: 20px 0;
            position: relative;
            min-height: 300px;
            background: rgba(255, 255, 255, 0.1);
        }

        .partner-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
        }

        .partner-card {
            background: white;
            border-radius: 20px;
            padding: 20px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible;
            min-height: 200px;
        }

        .partner-logo {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            transition: all 0.3s ease;
            display: block;
            opacity: 1;
            visibility: visible;
        }

        .partner-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 10px;
            text-align: center;
            line-height: 1.3;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .partner-card:hover::before {
            transform: scaleX(1);
        }

        .partner-logo {
            max-width: 100%;
            max-height: 350px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.3s ease;
            display: block;
            opacity: 1;
            visibility: visible;
        }

        .partner-card:hover .partner-logo {
            transform: scale(1.1);
        }

        .partners-slider {
            padding: 20px 0;
            position: relative;
            min-height: 300px;
        }

        .swiper-slide {
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partners-slider .swiper-button-next,
        .partners-slider .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .partners-slider .swiper-button-next:after,
        .partners-slider .swiper-button-prev:after {
            font-size: 1.2rem;
        }

        .partners-slider .swiper-button-next:hover,
        .partners-slider .swiper-button-prev:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .partners-slider .swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .partner-card {
                height: 200px;
                padding: 20px;
            }

            .partner-logo {
                max-width: 100%;
                max-height: 250px;
                width: auto;
                height: auto;
            }
        }

        .solutions {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .service-item {
            background: white;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-item:hover::before {
            opacity: 0.05;
        }

        .service-icon-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .service-number {
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 5rem;
            font-weight: 700;
            color: var(--light-bg);
            opacity: 0.5;
            line-height: 1;
            transition: all 0.3s ease;
        }

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

        .service-item:hover .service-number {
            color: var(--primary-color);
            opacity: 0.2;
        }

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

        .service-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .service-content p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #555;
        }

        .service-features i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .service-item {
                padding: 30px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-number {
                font-size: 4rem;
            }

            .service-content h3 {
                font-size: 1.5rem;
            }
        }

        .solutions {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .service-block {
            position: relative;
            padding: 30px;
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 4px 0 0 4px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-block:hover {
            transform: translateX(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

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

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            position: relative;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

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

        .service-title {
            position: relative;
            flex: 1;
        }

        .service-number {
            position: absolute;
            top: -30px;
            right: 0;
            font-size: 4rem;
            font-weight: 700;
            color: var(--light-bg);
            opacity: 0.5;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .service-block:hover .service-number {
            color: var(--primary-color);
            opacity: 0.2;
        }

        .service-title h3 {
            font-size: 1.8rem;
            margin: 0;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .service-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-body p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .service-features {
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #555;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(5px);
            color: var(--primary-color);
        }

        .feature-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            margin-top: auto;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .service-block {
                padding: 20px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .service-number {
                font-size: 3rem;
            }

            .service-title h3 {
                font-size: 1.5rem;
            }
        }

        .solutions {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .service-timeline {
            position: relative;
            padding: 40px 0;
        }

        .service-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            transform: translateX(-50%);
        }

        .service-item {
            position: relative;
            margin-bottom: 60px;
        }

        .service-item:last-child {
            margin-bottom: 0;
        }

        .service-content {
            position: relative;
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .service-item:nth-child(odd) .service-content {
            flex-direction: row-reverse;
        }

        .service-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 20px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .service-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-content:hover::before {
            opacity: 0.05;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

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

        .service-details {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .service-details h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .service-details p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .service-timeline::before {
                left: 30px;
            }

            .service-content {
                flex-direction: row !important;
                margin-left: 60px;
                padding: 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-details h3 {
                font-size: 1.5rem;
            }
        }

        .solutions {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            padding: 20px 0;
        }

        .service-item {
            position: relative;
        }

        .service-content {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 15px;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

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

        .service-content:hover::before {
            opacity: 0.05;
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

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

        .service-details {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .service-details h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .service-details p {
            color: #666;
            margin-bottom: 12px;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-link i {
            transition: transform 0.3s ease;
            font-size: 0.8rem;
        }

        .service-link:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 992px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .service-content {
                padding: 15px;
            }

            .service-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .service-details h3 {
                font-size: 1.1rem;
            }
        }

        .global-presence {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
        }

        .global-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
            z-index: 1;
        }

        .global-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(231, 76, 60, 0.95) 100%);
            z-index: 2;
        }

        .global-presence .container {
            position: relative;
            z-index: 3;
        }

        .country-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .country-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .country-flag {
            width: auto;
            height: 140px;
            /* border-radius: 20px; */
            overflow: hidden;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .country-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .country-item:hover .country-flag {
            transform: scale(1.1);
        }

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

        .country-content h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .country-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .stat {
            text-align: center;
        }

        .stat .number {
            color: var(--secondary-color);
            font-size: 1.8rem;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .stat .label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .country-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .country-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            padding: 8px 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
        }

        .country-link:hover {
            background: white;
            color: var(--primary-color);
        }

        .country-link i {
            transition: transform 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .global-presence {
                padding: 60px 0;
            }

            .country-flag {
                width: 80px;
                height: 80px;
            }

            .country-content h3 {
                font-size: 1.5rem;
            }

            .stat .number {
                font-size: 1.5rem;
            }
        }

        /* Services Section Styles */
        .services-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .services-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #007bff, #00ff88);
            transform: translateX(-50%);
        }

        .service-item {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .service-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #007bff, #00ff88);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
            transition: transform 0.3s ease;
        }

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

        .service-content {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

        .service-item:hover .service-content {
            transform: translateY(-5px);
        }

        .service-content h3 {
            color: #007bff;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }

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

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #555;
        }

        .service-features i {
            color: #00ff88;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-timeline::before {
                left: 30px;
            }

            .service-item {
                flex-direction: column !important;
                margin-left: 30px;
            }

            .service-icon {
                margin-bottom: 20px;
            }

            .service-content {
                width: 100%;
            }
        }

        /* Services Section Styles */
        .services-scroll {
            position: relative;
            padding: 20px 0;
            overflow: hidden;
        }

        .service-track {
            display: flex;
            gap: 25px;
            padding: 20px 0;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .service-track::-webkit-scrollbar {
            display: none;
        }

        .service-item {
            flex: 0 0 350px;
            scroll-snap-align: start;
        }

        .service-content {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .service-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .service-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-content:hover::before {
            opacity: 0.05;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--light-bg);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

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

        .service-details {
            position: relative;
            z-index: 1;
        }

        .service-details h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .service-details p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--secondary-color);
        }

        .service-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .service-link i {
            transition: transform 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .service-item {
                flex: 0 0 300px;
            }

            .service-content {
                padding: 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-details h3 {
                font-size: 1.3rem;
            }
        }

        .solutions {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .services-infographic {
            position: relative;
            padding: 40px 0;
        }

        .services-infographic::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            transform: translateX(-50%);
            opacity: 0.2;
        }

        .service-node {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .service-node::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .service-node:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-node:hover::before {
            opacity: 0.05;
        }

        .node-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            margin-bottom: 20px;
        }

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

        .node-content {
            position: relative;
            z-index: 1;
        }

        .node-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .node-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .node-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature-tag {
            background: var(--light-bg);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .service-node:hover .feature-tag {
            background: var(--primary-color);
            color: white;
        }

        .node-connector {
            position: absolute;
            top: 50%;
            right: -30px;
            width: 30px;
            height: 2px;
            background: var(--primary-color);
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .service-node:hover .node-connector {
            opacity: 1;
            background: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .services-infographic::before {
                display: none;
            }

            .node-connector {
                display: none;
            }

            .service-node {
                padding: 20px;
            }

            .node-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .node-content h3 {
                font-size: 1.3rem;
            }
        }

        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .modal-header {
            padding: 1.5rem 1.5rem 0;
        }

        .btn-close {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            border-radius: 50%;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .btn-close:hover {
            background-color: rgba(0, 0, 0, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .callback-form .form-floating > .form-control,
        .callback-form .form-floating > .form-select {
            height: calc(3.5rem + 2px);
            padding: 1rem 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: white;
            position: relative;
            z-index: 2;
            line-height: 1.5;
        }

        .callback-form .form-floating > textarea.form-control {
            height: 100px;
            padding-top: 1.5rem;
        }

        .callback-form .form-floating > label {
            padding: 1rem 0.75rem;
            z-index: 2;
            background-color: transparent;
            height: auto;
        }

        .callback-form .form-control:focus,
        .callback-form .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.1);
            z-index: 2;
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .callback-form .form-control:not(:placeholder-shown) {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .callback-form .btn-primary {
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .callback-form .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
        }

        .callback-form .btn-primary i {
            transition: transform 0.3s ease;
        }

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

        .lead.text-muted {
            /* color: #495057 !important; */
            font-weight: 400;
            color: #2C3E50 !important;
            opacity: 0.9;
        }

        .section-header .lead.text-muted {
            color: #6c757d !important;
            font-weight: 400;
            opacity: 0.95;
        }

        .solutions .lead.text-muted {
            color: #3498db !important;
            font-weight: 400;
            opacity: 0.9;
        }

        .display-4.fw-bold {
            color: #2C3E50 !important;
            font-weight: 700 !important;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .section-header .display-4.fw-bold {
            color: #2C3E50 !important;
            font-weight: 700 !important;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .hero .display-4.fw-bold {
            color: white !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .display-4.fw-bold.text-white {
            color: white !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .global-presence .display-4.fw-bold.text-white {
            color: white !important;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Dynamic Sections Styles */
        .dynamic-section {
            background: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .dynamic-section:nth-child(even) {
            background: white;
        }

        .dynamic-section-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .dynamic-section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .dynamic-section-card:hover::before {
            transform: scaleX(1);
        }

        .section-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .section-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .dynamic-section-card:hover .section-image img {
            transform: scale(1.05);
        }

        .section-content h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .section-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .section-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .section-buttons .btn {
            border-radius: 25px;
            padding: 10px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .section-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments for dynamic sections */
        @media (max-width: 768px) {
            .dynamic-section-card {
                padding: 20px;
                margin-bottom: 20px;
            }

            .section-content h3 {
                font-size: 1.3rem;
            }

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

            .section-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Specific fix for 768px width */
        @media (max-width: 768px) and (min-width: 768px) {
            .hero-badge {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                background: rgba(255, 255, 255, 0.15) !important;
                color: white !important;
                padding: 10px 20px !important;
                border-radius: 30px !important;
                font-weight: 500 !important;
                margin: 0 auto 20px auto !important;
                text-align: center !important;
                width: fit-content !important;
                font-size: 0.95rem !important;
                z-index: 100 !important;
                position: relative !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
                backdrop-filter: blur(10px) !important;
            }
        }

        /* Tablet specific styles for 769px to 991px */
        @media (min-width: 769px) and (max-width: 991px) {
            .hero-badge {
                font-size: 1rem !important;
                padding: 10px 20px !important;
                margin-bottom: 20px !important;
                text-align: center !important;
                display: block !important;
                width: fit-content !important;
                margin-left: auto !important;
                margin-right: auto !important;
                background: rgba(255, 255, 255, 0.1) !important;
                backdrop-filter: blur(10px) !important;
                color: white !important;
                border-radius: 30px !important;
                font-weight: 500 !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
                visibility: visible !important;
                opacity: 1 !important;
                z-index: 10 !important;
            }

            .hero h1 {
                text-align: center !important;
                font-size: 2.5rem !important;
            }

            .hero p {
                text-align: center !important;
                font-size: 1.2rem !important;
            }
        }

        /* Mobile styles for 425px and similar */
        @media (max-width: 480px) {
            .hero-badge {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                background: rgba(255, 255, 255, 0.2) !important;
                color: white !important;
                font-size: 0.85rem !important;
                padding: 8px 16px !important;
                margin: 0 auto 15px auto !important;
                text-align: center !important;
                width: fit-content !important;
                border-radius: 30px !important;
                font-weight: 500 !important;
                z-index: 100 !important;
                position: relative !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4) !important;
                backdrop-filter: blur(10px) !important;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 100px 0 80px 0 !important;
            }

            .hero-badge {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                background: rgba(255, 255, 255, 0.15) !important;
                color: white !important;
                font-size: 0.8rem !important;
                padding: 6px 14px !important;
                margin: 0 auto 12px auto !important;
                text-align: center !important;
                width: fit-content !important;
                border-radius: 30px !important;
                font-weight: 500 !important;
                z-index: 100 !important;
                position: relative !important;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
                backdrop-filter: blur(10px) !important;
            }

            .hero h1 {
                font-size: 1.9rem !important;
                line-height: 1.2 !important;
            }

            .hero p {
                font-size: 1rem !important;
                margin-bottom: 20px !important;
            }

            .dynamic-section-card {
                padding: 15px;
            }

            .section-image img {
                height: 150px;
            }
        }
