﻿    /* Homepage UI/UX Improvements */
    main#wrap {
        overflow-x: hidden;
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Section spacing improvements */
    section {
        position: relative;
    }
    
    section + section {
        margin-top: 0;
    }
    
    /* Hero Section Improvements */
    .s_cover {
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Hero Image Carousel - FIXED VERSION */
    .hero-carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background: #1a0d26;
    }
    
    .hero-carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        animation: continuousZoom 20s ease-in-out infinite;
    }
    
    .hero-carousel-slide.active {
        opacity: 1;
        z-index: 1;
    }
    
    @keyframes continuousZoom {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    /* Hero Content Overlay - FIXED VERSION */
    .hero-content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 3;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        pointer-events: none;
        padding: 80px 0 160px 0;
        box-sizing: border-box;
    }
    
    .hero-content-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero-awards-section {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
        z-index: 4;
        flex-shrink: 0;
    }
    
    .hero-awards-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .hero-award-item {
        flex: 0 0 auto;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-award-item:hover {
        transform: translateY(-15px) scale(1.15);
    }
    
    .hero-award-item img {
        max-width: 140px;
        height: auto;
        filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.5));
        transition: all 0.3s ease;
        display: block;
        margin: 0 auto;
    }
    
    .hero-award-item:hover img {
        filter: drop-shadow(0 12px 30px rgba(255, 215, 0, 0.8));
        transform: scale(1.1);
    }
    
    /* Hero Carousel Navigation Arrows */
    .hero-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #fff;
        font-size: 20px;
    }
    
    .hero-carousel-nav:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
    }
    
    .hero-carousel-nav.prev {
        left: 30px;
    }
    
    .hero-carousel-nav.next {
        right: 30px;
    }
    
    /* Floating buttons + chatbot CSS moved to assets/css/style.css for global use */
    
    .hero-content-text {
        text-align: center;
        color: #fff;
        max-width: 900px;
        padding: 0 20px;
        margin-bottom: 1.5rem;
        flex-shrink: 0;
    }
    
    .hero-content-text h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        line-height: 1.2;
    }
    
    .hero-content-text p {
        font-size: 1.5rem;
        font-weight: 500;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .hero-cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
        flex-shrink: 0;
    }
    
    .hero-cta-btn {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
        color: #fff !important;
        border: none !important;
        padding: 14px 28px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 50px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
        text-decoration: none !important;
        display: inline-block !important;
    }
    
    .hero-cta-btn:hover {
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.7) !important;
        background: linear-gradient(135deg, #2C123D, #A54A7B) !important;
        color: #fff !important;
    }
    
    .hero-cta-btn.secondary {
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .hero-cta-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }
    
    /* Mobile button visibility classes */
    .hide-mobile {
        display: inline-block !important;
    }
    
    .show-mobile {
        display: none !important;
    }
    
    .s_cover::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 13, 38, 0.4);
        z-index: 1;
    }
    
    .s_cover .container {
        z-index: 2;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .s_cover .o_we_bg_filter {
        z-index: 1;
    }
    
    /* Section dividers */
    /* Section dividers - Hidden */
    .section-divider {
        display: none !important;
        height: 0;
        margin: 0;
        padding: 0;
        width: 0;
    }
    
    /* Shiny Text */
    /* Global Solutions Title - Special Design */
    .shiny-text {
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #2C123D 0%, #A54A7B 50%, #2C123D 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        letter-spacing: -1px;
        line-height: 1.2;
        position: relative;
        animation: gradient-shift 3s ease infinite;
    }
    
    @keyframes gradient-shift {
        0%, 100% { background-position: 0% center; }
        50% { background-position: 100% center; }
    }
    
    .shiny-text::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, #A54A7B 0%, #2C123D 50%, #A54A7B 100%);
        border-radius: 3px;
        box-shadow: 0 2px 8px rgba(165, 74, 123, 0.3);
    }
    
    /* About Cards Section */
    .about-cards-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        margin-top: 0;
    }

    .about-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 1.5rem;
    }

    .about-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(44, 18, 61, 0.15);
        padding: 40px 35px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(165, 74, 123, 0.1);
        position: relative;
        overflow: hidden;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2C123D, #A54A7B);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .about-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(44, 18, 61, 0.25);
        border-color: rgba(165, 74, 123, 0.3);
    }

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

    .about-card-icon {
        font-size: 3.5rem;
        color: #A54A7B;
        margin-bottom: 1.5rem;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
    }

    .about-card:hover .about-card-icon {
        transform: scale(1.1) rotate(5deg);
    }

    html[data-theme="dark"] .about-card-icon {
        color: #A54A7B !important;
    }

    .about-card h2 {
        margin-bottom: 1rem;
        font-size: 28px;
        color: #2C123D;
        font-weight: 700;
        position: relative;
        padding-bottom: 12px;
        text-align: center;
    }
    
    .about-card h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #2C123D, #A54A7B);
        border-radius: 2px;
    }

    .about-card p {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        margin-bottom: 1rem;
        flex-grow: 1;
        text-align: center;
    }

    /* Know More Button Section */
    .about-know-more {
        text-align: center;
        margin-top: 2.5rem;
        padding: 0 20px;
    }

    .know-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #ffffff;
        padding: 16px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.4);
        position: relative;
        overflow: hidden;
    }

    .know-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .know-more-btn:hover::before {
        left: 100%;
    }

    .know-more-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 30px rgba(165, 74, 123, 0.6);
        background: linear-gradient(135deg, #A54A7B, #2C123D);
    }

    .know-more-btn .lang-ar,
    .know-more-btn .lang-en {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .know-more-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .know-more-btn:hover .lang-en i {
        transform: translateX(5px);
    }

    .know-more-btn:hover .lang-ar i {
        transform: translateX(-5px);
    }

    html[data-theme="dark"] .know-more-btn {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
    }

    html[data-theme="dark"] .know-more-btn:hover {
        background: linear-gradient(135deg, #2C123D, #A54A7B) !important;
    }

    .about-card:first-child {
        background: linear-gradient(135deg, #ffffff 0%, #f7f3fa 100%);
    }

    .about-card:nth-child(2) {
        background: linear-gradient(135deg, #ffffff 0%, #faf5f8 100%);
    }

    .about-card:nth-child(3) {
        background: linear-gradient(135deg, #ffffff 0%, #fdf9fc 100%);
    }
    
    /* Dark mode for individual about cards - override gradients */
    html[data-theme="dark"] .about-card:first-child,
    html[data-theme="dark"] .about-card:nth-child(2),
    html[data-theme="dark"] .about-card:nth-child(3) {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
    }
    
    /* Counters Section - OLD - Replaced by new design in counters-section.php */
    .custom-counters-wrapper {
        font-family: 'Cairo', sans-serif;
        background: transparent;
        padding: 0;
        border-radius: 0;
        color: inherit;
        text-align: center;
    }

    .custom-counters-wrapper .counters {
        max-width: 1000px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 20px;
    }

    .custom-counters-wrapper .counter-box {
        flex: 1 1 200px;
        background: rgba(255, 255, 255, 0.07);
        padding: 25px 15px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.6s ease-out;
    }

    .custom-counters-wrapper .counter-box:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.12);
    }

    .custom-counters-wrapper .number {
        font-size: 36px;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .custom-counters-wrapper .number span.symbol {
        font-size: 24px;
        opacity: 0.9;
    }

    .custom-counters-wrapper .label {
        font-size: 16px;
        margin-top: 8px;
        color: #f3e8ff;
    }
    
    /* Sectors Section */
    .sectors-section {
        background: linear-gradient(135deg, #f9f9fb 0%, #f2f5fc 100%);
        padding: 60px 20px;
        border-radius: 20px;
        margin: 0 auto;
        max-width: 1400px;
    }
    
    /* Dark mode for sectors section container */
    html[data-theme="dark"] .sectors-section {
        background: linear-gradient(135deg, #121212 0%, #0f0f0f 100%) !important;
    }
    
    /* Unified Section Title Design */
    .sectors-title,
    .services-home-title,
    .integrations-title,
    .partners-title {
        text-align: center;
        font-size: 2.75rem;
        font-weight: 700;
        color: #2C123D;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    /* Homepage company title (Global Solutions) - no animation/effects */
    .home-company-title {
        color: #000000 !important;
        -webkit-text-fill-color: initial !important;
        text-shadow: none !important;
        animation: none !important;
    }
    
    .sectors-title::after,
    .services-home-title::after,
    .integrations-title::after,
    .partners-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 5px;
        background: linear-gradient(90deg, #A54A7B 0%, #2C123D 50%, #A54A7B 100%);
        border-radius: 3px;
        box-shadow: 0 2px 8px rgba(165, 74, 123, 0.3);
    }
    
    .sectors-subtitle {
        text-align: center;
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sectors-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .sector-card {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: local;
        min-height: 280px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: 3px solid transparent;
    }
    
    /* Dark overlay for better text readability - Lighter to show more image */
    .sector-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
        transition: all 0.4s ease;
        z-index: 1;
    }
    
    .sector-card:hover .sector-overlay {
        background: linear-gradient(180deg, rgba(44, 18, 61, 0.7) 0%, rgba(165, 74, 123, 0.8) 100%);
    }
    
    /* Dark mode overlay adjustments - Lighter to show more image */
    html[data-theme="dark"] .sector-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.65) 100%);
    }
    
    html[data-theme="dark"] .sector-card:hover .sector-overlay {
        background: linear-gradient(180deg, rgba(44, 18, 61, 0.75) 0%, rgba(165, 74, 123, 0.85) 100%);
    }
    
    .sector-content {
        position: relative;
        z-index: 2;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px 20px;
        text-align: center;
    }
    
    .sector-name {
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 15px 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        transition: all 0.4s ease;
        line-height: 1.3;
    }
    
    .sector-card:hover .sector-name {
        transform: translateY(-10px);
        font-size: 24px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }
    
    /* Dark mode for sector name */
    html[data-theme="dark"] .sector-name {
        color: #ffffff !important;
    }
    
    .sector-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #ffffff !important;
        border-radius: 30px;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
        max-width: 160px;
        margin: 0 auto;
    }
    
    /* Arabic: arrow on left, text on right */
    .sector-btn .lang-ar {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-direction: row;
    }
    
    /* English: text on left, arrow on right */
    .sector-btn .lang-en {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-direction: row;
    }
    
    .sector-card:hover .sector-btn {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    .sector-btn i {
        transition: transform 0.3s ease;
        font-size: 14px;
    }
    
    .sector-btn:hover i {
        transform: translateX(3px);
    }
    
    html[dir="rtl"] .sector-btn:hover i {
        transform: translateX(-3px);
    }
    
    html[dir="rtl"] .sector-btn i {
        transform: scaleX(-1);
    }
    
    .sector-btn:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        color: #ffffff !important;
        text-decoration: none;
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.5);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .sector-btn:hover i {
        transform: translateX(5px);
    }
    
    html[dir="rtl"] .sector-btn:hover i {
        transform: translateX(-5px) scaleX(-1);
    }
    
    /* Dark mode for sector button */
    html[data-theme="dark"] .sector-btn {
        background: linear-gradient(135deg, #2C123D, #A54A7B) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4) !important;
    }
    
    html[data-theme="dark"] .sector-btn:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.6) !important;
    }
    
    .sector-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.4);
        border-color: rgba(165, 74, 123, 0.6);
    }
    
    /* Dark mode for sector cards - Ensure images are visible */
    html[data-theme="dark"] .sector-card {
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
    
    html[data-theme="dark"] .sector-card:hover {
        border-color: rgba(165, 74, 123, 0.8) !important;
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.5) !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    /* Ensure background images are always visible and not cut off */
    .sector-card[style*="background-image"] {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: local !important;
    }
    
    html[data-theme="dark"] .sector-link:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 6px 18px rgba(165, 74, 123, 0.6) !important;
    }
    
    .view-all-sectors {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .view-all-sectors a {
        display: inline-block;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #fff;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4);
    }
    
    .view-all-sectors a:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.6);
        color: #fff;
        text-decoration: none;
    }
    
    /* Dark mode for view all sectors button */
    html[data-theme="dark"] .view-all-sectors a {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .view-all-sectors a:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.7) !important;
    }
    
    /* Services Section */
    .services-home-section {
        background: #fff;
        padding: 60px 20px;
        border-radius: 20px;
        margin: 0 auto;
        max-width: 1400px;
    }
    
    /* Dark mode for services section */
    html[data-theme="dark"] .services-home-section {
        background: #121212 !important;
    }
    
    
    .services-home-subtitle {
        text-align: center;
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-home-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-home-card {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 35px 25px;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
    }
    
    .service-home-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, #2C123D, #A54A7B);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .service-home-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 40px rgba(44, 18, 61, 0.25);
        border-color: #A54A7B;
    }
    
    .service-home-card:hover::before {
        transform: scaleX(1);
    }
    
    .service-home-icon {
        font-size: 52px;
        color: #A54A7B;
        margin-bottom: 20px;
        display: inline-block;
        transition: transform 0.4s ease;
    }
    
    .service-home-card:hover .service-home-icon {
        transform: rotateY(180deg) scale(1.2);
    }
    
    .service-home-card h4 {
        font-size: 20px;
        font-weight: 700;
        color: #2C123D;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .service-home-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        min-height: 48px;
    }
    
    .service-home-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #fff;
        border-radius: 25px;
        padding: 10px 24px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(165, 74, 123, 0.3);
    }
    
    .service-home-link:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        color: #fff;
        text-decoration: none;
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(165, 74, 123, 0.5);
    }
    
    .view-all-services {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .view-all-services a {
        display: inline-block;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #fff;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4);
    }
    
    /* Dark mode for view all services button */
    html[data-theme="dark"] .view-all-services a {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .view-all-services a:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.7) !important;
    }
    
    .view-all-services a:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.6);
        color: #fff;
        text-decoration: none;
    }
    
    /* Video Section - Simplified and Centered */
    .video-wrapper-centered {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    
    .video-wrapper-centered iframe {
        display: block;
        margin: 0 auto;
        border-radius: 12px;
        max-width: 900px;
        width: 100%;
    }

    .button-hover {
        display: inline-block;
        margin-top: 30px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #fff !important;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4);
        border: none;
    }

    .button-hover:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.6);
        transform: translateY(-3px) scale(1.05);
        color: #fff !important;
    }
    
    /* Video Section - Removed old styles, using simple centered video */
    .video-section-wrapper,
    .video-text-content,
    .video-embed-wrapper,
    .video-container,
    .video-bg-pattern,
    .video-iframe-wrapper {
        display: none !important;
    }
    
    /* Integrations Section - Modern Redesign */
    .integrations-header {
        position: relative;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .integrations-subtitle {
        font-size: 1.2rem;
        color: #666;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 400;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    html[data-theme="dark"] .integrations-subtitle {
        color: #b0b0b0 !important;
    }
    
    .integrations-modern-wrapper {
        position: relative;
        padding: 40px 0 80px;
    }
    
    .integrations-swiper-modern {
        padding: 0;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /* Fallback layout when Swiper JS isn't initialized (prevents "missing photos") */
    .integrations-swiper-modern:not(.swiper-initialized) {
        overflow: visible;
    }

    .integrations-swiper-modern:not(.swiper-initialized) .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        align-items: stretch;
    }

    .integrations-swiper-modern:not(.swiper-initialized) .swiper-slide {
        width: auto;
        padding: 0;
    }

    .integrations-swiper-modern:not(.swiper-initialized) .swiper-nav-modern {
        display: none;
    }
    
    .integrations-swiper-modern .swiper-wrapper {
        align-items: stretch;
    }
    
    .integrations-swiper-modern .swiper-slide {
        height: auto;
        padding: 15px;
        border: none !important;
        outline: none !important;
    }
    
    /* Modern Glassmorphism Integration Card */
    .integration-card-modern {
        position: relative;
        height: 100%;
        min-height: 360px;
        border-radius: 24px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        transform-style: preserve-3d;
        outline: none;
    }
    
    /* Dark mode base - Force dark backgrounds */
    html[data-theme="dark"] .integration-card-modern,
    html[data-theme="dark"] .swiper-slide .integration-card-modern,
    html[data-theme="dark"] .swiper-wrapper .integration-card-modern,
    html[data-theme="dark"] .integrations-swiper-modern .integration-card-modern,
    html[data-theme="dark"] .integrations-modern-wrapper .integration-card-modern {
        background: rgba(30, 30, 30, 0.95) !important;
        background-color: #1e1e1e !important;
        border: 1px solid rgba(30, 30, 30, 1) !important;
        border-color: rgba(30, 30, 30, 1) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(0, 0, 0, 0.6) !important;
        -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(0, 0, 0, 0.6) !important;
        outline: none !important;
    }
    
    html[data-theme="dark"] .integration-card-bg {
        background: linear-gradient(135deg, rgba(44, 18, 61, 0.2) 0%, rgba(165, 74, 123, 0.2) 100%) !important;
    }
    
    .integration-card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(44, 18, 61, 0.1) 0%, rgba(165, 74, 123, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
    }
    
    .integration-card-modern:hover .integration-card-bg {
        opacity: 1;
    }
    
    html[data-theme="dark"] .integration-card-bg {
        background: linear-gradient(135deg, rgba(44, 18, 61, 0.3) 0%, rgba(165, 74, 123, 0.3) 100%);
    }
    
    .integration-card-content {
        position: relative;
        z-index: 2;
        padding: 30px 25px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .integration-logo-modern {
        position: relative;
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    
    html[data-theme="dark"] .integration-logo-modern {
        background: rgba(30, 30, 30, 0.95) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }
    
    .logo-glow {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(165, 74, 123, 0.3) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .integration-card-modern:hover .logo-glow {
        opacity: 1;
    }
    
    .integration-logo-modern img {
        width: 80%;
        height: 80%;
        object-fit: contain;
        position: relative;
        z-index: 1;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .integration-card-modern:hover .integration-logo-modern {
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.4);
    }
    
    .integration-card-modern:hover .integration-logo-modern img {
        transform: scale(1.1);
    }
    
    .integration-info {
        flex-grow: 1;
        margin-bottom: 20px;
    }
    
    .integration-title-modern {
        font-size: 26px;
        font-weight: 700;
        color: #2C123D;
        margin-bottom: 15px;
        text-align: center;
        transition: all 0.3s ease;
        line-height: 1.3;
    }
    
    html[data-theme="dark"] .integration-title-modern {
        color: #ffffff !important;
    }
    
    .integration-card-modern:hover .integration-title-modern {
        color: #A54A7B;
        transform: translateY(-5px);
    }
    
    html[data-theme="dark"] .integration-card-modern:hover .integration-title-modern {
        color: #A54A7B !important;
    }
    
    .integration-description-modern {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
        text-align: center;
        transition: color 0.3s ease;
    }
    
    html[data-theme="dark"] .integration-description-modern {
        color: #e8e8e8 !important;
    }
    
    .integration-description-modern strong {
        color: #A54A7B;
        font-weight: 600;
    }
    
    .integration-btn-modern {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #ffffff !important;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.3);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .integration-btn-modern::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .integration-btn-modern:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .integration-btn-modern:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.5);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .btn-text {
        position: relative;
        z-index: 1;
    }
    
    .btn-icon {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }
    
    html[dir="rtl"] .btn-icon i {
        transform: scaleX(-1);
    }
    
    .integration-btn-modern:hover .btn-icon {
        transform: translateX(5px);
    }
    
    html[dir="rtl"] .integration-btn-modern:hover .btn-icon {
        transform: translateX(-5px) scaleX(-1);
    }
    
    .integration-card-shine {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        transition: transform 0.6s ease;
        pointer-events: none;
        z-index: 3;
    }
    
    .integration-card-modern:hover .integration-card-shine {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    
    .integration-card-modern:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 60px rgba(165, 74, 123, 0.3);
        border-color: rgba(165, 74, 123, 0.5);
    }
    
    html[data-theme="dark"] .integration-card-modern:hover {
        box-shadow: 0 20px 60px rgba(165, 74, 123, 0.4) !important;
        border-color: rgba(165, 74, 123, 0.6) !important;
        outline: none !important;
    }
    
    /* Remove any white frames/borders in dark mode - Force dark borders */
    html[data-theme="dark"] .integrations-swiper-modern .swiper-slide {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    html[data-theme="dark"] .integration-card-modern * {
        border-color: transparent !important;
    }
    
    html[data-theme="dark"] .integration-card-modern::before,
    html[data-theme="dark"] .integration-card-modern::after {
        border-color: transparent !important;
    }
    
    /* Modern Navigation */
    .swiper-nav-modern {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    /* Home Integrations: no arrows (autoplay only) */
    .integrations-modern-wrapper .swiper-button-prev-modern,
    .integrations-modern-wrapper .swiper-button-next-modern,
    .integrations-swiper .swiper-button-next,
    .integrations-swiper .swiper-button-prev {
        display: none !important;
    }
    
    .swiper-button-prev-modern,
    .swiper-button-next-modern {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.3);
        border: 2px solid transparent;
        position: relative;
        z-index: 100;
        pointer-events: all;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    html[data-theme="dark"] .swiper-button-prev-modern,
    html[data-theme="dark"] .swiper-button-next-modern {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    .swiper-button-prev-modern:hover,
    .swiper-button-next-modern:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.5);
    }
    
    html[data-theme="dark"] .swiper-button-prev-modern:hover,
    html[data-theme="dark"] .swiper-button-next-modern:hover {
        background: linear-gradient(135deg, #2C123D, #A54A7B) !important;
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.7) !important;
    }
    
    .swiper-button-prev-modern.swiper-button-disabled,
    .swiper-button-next-modern.swiper-button-disabled {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
    }
    
    .swiper-button-prev-modern i,
    .swiper-button-next-modern i {
        pointer-events: none;
    }
    
    .swiper-pagination-modern {
        position: relative;
        display: flex;
        gap: 8px;
        justify-content: center;
    }
    
    .swiper-pagination-modern .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #A54A7B;
        opacity: 0.4;
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .swiper-pagination-modern .swiper-pagination-bullet-active {
        width: 30px;
        border-radius: 6px;
        opacity: 1;
        background: #2C123D;
    }
    
    html[data-theme="dark"] .swiper-pagination-modern .swiper-pagination-bullet {
        background: #A54A7B;
    }
    
    html[data-theme="dark"] .swiper-pagination-modern .swiper-pagination-bullet-active {
        background: #A54A7B;
    }
    
    .integrations-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        width: 100%;
    }
    
    .integrations-swiper .swiper-slide {
        height: auto;
        display: flex;
        width: auto;
        flex-shrink: 0;
    }
    
    /* Modern Integration Card Design */
    .integration-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        background-color: #ffffff !important;
        border-radius: 20px;
        padding: 35px 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        min-height: 380px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        border: 2px solid transparent;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Dark mode - integration cards must be dark - Force override with maximum specificity */
    html[data-theme="dark"] .integration-card,
    html[data-theme="dark"] .swiper-slide .integration-card,
    html[data-theme="dark"] .swiper-wrapper .integration-card,
    html[data-theme="dark"] .integrations-swiper .integration-card,
    html[data-theme="dark"] section .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] .s_embed_code .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] .container .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] .swiper-slide .swiper-slide .integration-card,
    html[data-theme="dark"] .swiper-wrapper .swiper-slide .integration-card,
    html[data-theme="dark"] .integrations-swiper .swiper-wrapper .swiper-slide .integration-card,
    html[data-theme="dark"] .s_embed_code.o_colored_level .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] section.s_embed_code.o_colored_level .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] div.integration-card,
    html[data-theme="dark"] .swiper-slide div.integration-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
        border-color: #333333 !important;
    }
    
    /* Ultra-specific override for any remaining white backgrounds */
    html[data-theme="dark"] * .integration-card {
        background: #1e1e1e !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
    }
    
    html[data-theme="dark"] .integration-card:hover,
    html[data-theme="dark"] .swiper-slide .integration-card:hover,
    html[data-theme="dark"] .swiper-wrapper .integration-card:hover,
    html[data-theme="dark"] .integrations-swiper .integration-card:hover,
    html[data-theme="dark"] * .integration-card:hover {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
        border-color: rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .integration-title,
    html[data-theme="dark"] .swiper-slide .integration-title,
    html[data-theme="dark"] .integration-card .integration-title,
    html[data-theme="dark"] .integrations-swiper .integration-title {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .integration-description,
    html[data-theme="dark"] .swiper-slide .integration-description,
    html[data-theme="dark"] .integration-card .integration-description,
    html[data-theme="dark"] .integrations-swiper .integration-description {
        color: #e8e8e8 !important;
    }
    
    html[data-theme="dark"] .integration-description strong {
        color: #A54A7B !important;
    }
    
    html[data-theme="dark"] .integration-logo,
    html[data-theme="dark"] .swiper-slide .integration-logo,
    html[data-theme="dark"] .integration-card .integration-logo,
    html[data-theme="dark"] .integrations-swiper .integration-logo {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
    }
    
    .integration-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2C123D, #A54A7B);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }
    
    .integration-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(165, 74, 123, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .integration-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.25);
        border-color: rgba(165, 74, 123, 0.3);
    }
    
    .integration-card:hover::before {
        transform: scaleX(1);
    }
    
    .integration-card:hover::after {
        opacity: 1;
    }
    
    /* Modern Logo Container */
    .integration-logo {
        width: 100px;
        height: 100px;
        border-radius: 20px;
        overflow: hidden;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
    }
    
    .integration-logo::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .integration-card:hover .integration-logo {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.3);
    }
    
    .integration-card:hover .integration-logo::before {
        opacity: 1;
    }
    
    .integration-logo img {
        width: 85%;
        height: 85%;
        object-fit: contain;
        padding: 12px;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }
    
    .integration-card:hover .integration-logo img {
        transform: scale(1.15);
    }
    
    .integration-title {
        font-size: 22px;
        font-weight: 700;
        color: #2C123D;
        margin-bottom: 18px;
        text-align: center;
        transition: color 0.3s ease;
    }
    
    .integration-description {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 25px;
        flex-grow: 1;
        text-align: center;
    }
    
    .integration-description strong {
        color: #A54A7B;
        font-weight: 600;
    }
    
    .integration-btn {
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        color: #fff !important;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        display: inline-block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4);
        border: none;
        width: 100%;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .integration-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .integration-btn:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .integration-btn:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.6);
        color: #fff !important;
    }
    
    .integration-btn span {
        position: relative;
        z-index: 1;
    }
    
    .integrations-swiper .swiper-pagination {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: auto !important;
    }
    
    .integrations-swiper .swiper-pagination-bullet {
        background: #A54A7B;
        opacity: 0.4;
        width: 12px;
        height: 12px;
        transition: all 0.3s ease;
        margin: 0 4px;
    }
    
    .integrations-swiper .swiper-pagination-bullet-active {
        background: #2C123D;
        opacity: 1;
        width: 30px;
        border-radius: 6px;
    }
    
    /* Swiper Navigation Arrows - Modern Style */
    .integrations-swiper .swiper-button-next,
    .integrations-swiper .swiper-button-prev {
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: #fff;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4);
        transition: all 0.3s ease;
        margin-top: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .integrations-swiper .swiper-button-next {
        right: 10px;
    }
    
    .integrations-swiper .swiper-button-prev {
        left: 10px;
    }
    
    .integrations-swiper .swiper-button-next:after,
    .integrations-swiper .swiper-button-prev:after {
        font-size: 20px;
        font-weight: 700;
    }
    
    .integrations-swiper .swiper-button-next:hover,
    .integrations-swiper .swiper-button-prev:hover {
        background: linear-gradient(135deg, #A54A7B, #2C123D);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.6);
        opacity: 1;
    }
    
    .integrations-swiper .swiper-button-next.swiper-button-disabled,
    .integrations-swiper .swiper-button-prev.swiper-button-disabled {
        opacity: 0.35;
        cursor: not-allowed;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        color: #A54A7B;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 24px;
    }
    
    /* Show navigation arrows on tablets and larger screens */
    @media (min-width: 769px) {
        .integrations-swiper .swiper-button-next,
        .integrations-swiper .swiper-button-prev {
            display: flex !important;
        }
    }
    
    /* Partners Section */
    .partners-header {
        margin-bottom: 0.5rem;
    }
    
    
    .partners-subtitle {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
        margin-top: 0.5rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .partners-subtitle .highlight {
        color: #A54A7B;
        font-weight: 600;
    }
    
    /* Modern Partners Grid */
    .partners-showcase-modern {
        padding: 60px 0;
        background: linear-gradient(135deg, #f9f9fb 0%, #f2f5fc 100%);
        margin-top: 2rem;
    }
    
    html[data-theme="dark"] .partners-showcase-modern {
        background: linear-gradient(135deg, #121212 0%, #0f0f0f 100%) !important;
    }
    
    .partners-grid-modern {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .partner-logo-modern {
        position: relative;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .partner-logo-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        background: #ffffff;
        border-radius: 20px;
        padding: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        border: 2px solid transparent;
    }
    
    html[data-theme="dark"] .partner-logo-wrapper {
        background: #1e1e1e !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    }
    
    .partner-logo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(44, 18, 61, 0.9) 0%, rgba(165, 74, 123, 0.9) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 20px;
        z-index: 2;
    }
    
    .partner-logo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(20%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }
    
    .partner-logo-modern:hover .partner-logo-wrapper {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.3);
        border-color: rgba(165, 74, 123, 0.5);
    }
    
    html[data-theme="dark"] .partner-logo-modern:hover .partner-logo-wrapper {
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.4) !important;
        border-color: rgba(165, 74, 123, 0.6) !important;
    }
    
    .partner-logo-modern:hover .partner-logo-overlay {
        opacity: 1;
    }
    
    .partner-logo-modern:hover .partner-logo-wrapper img {
        filter: grayscale(0%) brightness(1.2);
        transform: scale(1.1);
    }
    
    /* Responsive Partners */
    @media (max-width: 992px) {
        .partners-grid-modern {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .partners-grid-modern {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            padding: 0 15px;
        }
        
        .partner-logo-wrapper {
            padding: 20px;
        }
    }

    /* ============================================
       CUSTOMERS CAROUSEL SECTION
       ============================================ */
    
    .customers-header {
        margin-bottom: 3rem;
        text-align: center;
    }

    .customers-title {
        font-size: 2.75rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 1rem;
        color: #2C123D;
        position: relative;
        display: inline-block;
    }
    
    html[data-theme="dark"] .customers-title {
        color: #ffffff !important;
    }

    .customers-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -12px;
        width: 80px;
        height: 5px;
        background: linear-gradient(90deg, var(--brand-purple), var(--brand-dark-purple), var(--brand-purple));
        border-radius: 3px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .customers-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-top: 1.5rem;
        line-height: 1.6;
    }

    html[data-theme="dark"] .customers-subtitle {
        color: #b0b0b0 !important;
    }

    .customers-carousel-section {
        padding: 40px 20px 60px;
        background: linear-gradient(to bottom, #f9f9fb, #ffffff);
        position: relative;
        overflow: hidden;
    }

    html[data-theme="dark"] .customers-carousel-section {
        background: linear-gradient(to bottom, #1a1a1a, #121212) !important;
    }

    .customers-swiper {
        padding: 20px 0 60px;
        position: relative;
        width: 100%;
        overflow: visible;
    }

    .customers-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .customers-swiper .swiper-slide {
        height: auto;
        padding: 15px;
        transition: transform 0.3s ease;
    }

    .customer-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 2px solid transparent;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    html[data-theme="dark"] .customer-card,
    html[data-theme="dark"] .customers-swiper .swiper-slide .customer-card,
    html[data-theme="dark"] .swiper-wrapper .customer-card,
    html[data-theme="dark"] .customers-carousel-section .customer-card,
    html[data-theme="dark"] .swiper-slide .customer-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    }
    
    html[data-theme="dark"] .customer-card:hover,
    html[data-theme="dark"] .customers-swiper .swiper-slide .customer-card:hover {
        background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%) !important;
        background-color: #252525 !important;
        border-color: #A54A7B !important;
        box-shadow: 0 12px 40px rgba(165, 74, 123, 0.4) !important;
    }

    .customer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(165, 74, 123, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .customer-card:hover::before {
        left: 100%;
    }

    .customer-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 12px 40px rgba(165, 74, 123, 0.2);
        border-color: #A54A7B;
    }

    html[data-theme="dark"] .customer-card:hover {
        border-color: #A54A7B !important;
        box-shadow: 0 12px 40px rgba(165, 74, 123, 0.4) !important;
    }

    .customer-card-link {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .customer-logo-wrapper {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 12px;
        padding: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    html[data-theme="dark"] .customer-logo-wrapper {
        background: rgba(255, 255, 255, 0.05) !important;
    }

    .customer-card:hover .customer-logo-wrapper {
        transform: scale(1.1);
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(165, 74, 123, 0.15);
    }

    html[data-theme="dark"] .customer-card:hover .customer-logo-wrapper {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .customer-logo-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(20%);
        transition: all 0.3s ease;
    }

    .customer-card:hover .customer-logo-wrapper img {
        filter: grayscale(0%);
        transform: scale(1.05);
    }

    .customer-info {
        text-align: center;
        width: 100%;
    }

    .customer-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2C123D;
        margin-bottom: 8px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

    html[data-theme="dark"] .customer-name {
        color: #ffffff !important;
    }

    .customer-card:hover .customer-name {
        color: #A54A7B;
    }

    .customer-industry {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
        font-weight: 500;
    }

    html[data-theme="dark"] .customer-industry {
        color: #b0b0b0 !important;
    }

    /* Navigation Buttons */
    .customers-swiper-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        padding: 0 10px;
    }

    .swiper-button-prev-customers,
    .swiper-button-next-customers {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        cursor: pointer;
        pointer-events: all;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.3);
        position: relative;
        z-index: 11;
    }

    html[data-theme="dark"] .swiper-button-prev-customers,
    html[data-theme="dark"] .swiper-button-next-customers {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }

    .swiper-button-prev-customers:hover,
    .swiper-button-next-customers:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.4);
    }

    .swiper-button-prev-customers i,
    .swiper-button-next-customers i {
        font-size: 18px;
        color: #ffffff;
    }

    .swiper-button-prev-customers.swiper-button-disabled,
    .swiper-button-next-customers.swiper-button-disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Pagination */
    .swiper-pagination-customers {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto !important;
        display: flex;
        gap: 8px;
        justify-content: center;
        z-index: 10;
    }

    .swiper-pagination-customers .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #d0d0d0;
        opacity: 1;
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    html[data-theme="dark"] .swiper-pagination-customers .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.3) !important;
    }

    .swiper-pagination-customers .swiper-pagination-bullet-active {
        background: linear-gradient(135deg, #2C123D, #A54A7B);
        width: 30px;
        border-radius: 6px;
        transform: scale(1.2);
    }

    html[data-theme="dark"] .swiper-pagination-customers .swiper-pagination-bullet-active {
        background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
    }

    .no-customers {
        text-align: center;
        padding: 60px 20px;
        color: #666;
    }

    html[data-theme="dark"] .no-customers {
        color: #b0b0b0 !important;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .customers-title {
            font-size: 2.25rem;
        }

        .customer-card {
            padding: 25px 15px;
        }

        .customer-logo-wrapper {
            width: 120px;
            height: 120px;
        }
    }

    @media (max-width: 768px) {
        .customers-title {
            font-size: 1.75rem;
        }

        .customers-subtitle {
            font-size: 1rem;
        }

        .customers-carousel-section {
            padding: 30px 15px 50px;
        }

        .customers-swiper {
            padding: 15px 0 50px;
        }

        .customer-card {
            padding: 20px 15px;
        }

        .customer-logo-wrapper {
            width: 100px;
            height: 100px;
            padding: 10px;
        }

        .customer-name {
            font-size: 1rem;
        }

        .swiper-button-prev-customers,
        .swiper-button-next-customers {
            width: 40px;
            height: 40px;
        }

        .swiper-button-prev-customers i,
        .swiper-button-next-customers i {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .customers-swiper .swiper-slide {
            padding: 10px;
        }

        .customer-logo-wrapper {
            width: 80px;
            height: 80px;
        }
    }
    
    .scroll-track {
        display: flex;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .scroll-content {
        display: flex;
        gap: 40px;
        animation: scroll-continuous 20s linear infinite;
    }

    @keyframes scroll-continuous {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .scroll-content img {
        height: 120px !important;
        max-width: 200px;
        object-fit: contain;
        filter: grayscale(0%) !important;
        opacity: 1 !important;
        padding: 15px;
        background: #ffffff !important;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .scroll-content img:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: #ffffff !important;
    }
    
    /* Partners carousel wrapper - always white background */
    .partners-carousel-wrapper {
        background: #ffffff !important;
    }
    
    /* Dark mode - keep partners carousel white */
    html[data-theme="dark"] .partners-carousel-wrapper {
        background: #ffffff !important;
    }
    
    /* Dark mode - keep partner logos white background */
    html[data-theme="dark"] .scroll-content img {
        background: #ffffff !important;
    }
    
    html[data-theme="dark"] .scroll-content img:hover {
        background: #ffffff !important;
    }
    
    /* CRITICAL: Force integration cards dark in dark mode - Highest specificity */
    html[data-theme="dark"] .integrations-swiper .swiper-wrapper .swiper-slide .integration-card,
    html[data-theme="dark"] .swiper.integrations-swiper .swiper-wrapper .swiper-slide .integration-card,
    html[data-theme="dark"] section .integrations-swiper .swiper-slide .integration-card,
    html[data-theme="dark"] .s_embed_code .integrations-swiper .integration-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
    }
    
    html[data-theme="dark"] .integrations-swiper .swiper-wrapper .swiper-slide .integration-card:hover {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        background-image: none !important;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero-awards-section {
            bottom: 20px;
        }
        
        .hero-award-item img {
            max-width: 120px;
        }
        
        .hero-awards-wrapper {
            gap: 1.5rem;
        }
        
        .about-cards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .about-card {
            min-height: 380px;
            padding: 35px 30px;
        }
        
        .about-card h2 {
            font-size: 24px;
        }
        
        .about-card p {
            font-size: 15px;
        }
        
        .sectors-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .sector-card {
            min-height: 240px;
        }
        
        .sector-name {
            font-size: 20px;
        }
        
        .sector-card:hover .sector-name {
            font-size: 22px;
        }
        
        .sector-btn {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .services-home-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        /* Video section - simplified */
        .video-wrapper-centered iframe {
            height: 400px;
        }
        
        .scroll-content img {
            height: 100px !important;
            max-width: 180px;
        }
    }
    
    @media (max-width: 768px) {
        .s_cover {
            min-height: 85vh;
        }
        
        .hero-content-overlay {
            padding: 60px 0 140px 0;
        }
        
        .hero-carousel-nav {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }
        
        .hero-carousel-nav.prev {
            left: 15px;
        }
        
        .hero-carousel-nav.next {
            right: 15px;
        }
        
        .hero-awards-section {
            bottom: 20px;
            padding: 0 15px;
        }
        
        .hero-awards-wrapper {
            gap: 1rem;
        }
        
        .hero-award-item {
            flex: 0 0 calc(33.333% - 1rem);
            min-width: 80px;
        }
        
        .hero-award-item img {
            max-width: 100px;
        }
        
        .hero-content-text h2 {
            font-size: 1.75rem !important;
        }
        
        .hero-content-text p {
            font-size: 1rem !important;
        }
        
        .hero-cta-buttons {
            flex-direction: row;
            gap: 0.875rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
            padding: 0 15px;
            margin-top: 1rem;
        }
        
        /* Hide desktop buttons on mobile */
        .hide-mobile {
            display: none !important;
        }
        
        /* Show mobile buttons */
        .show-mobile {
            display: inline-block !important;
        }
        
        .hero-cta-btn {
            width: auto;
            min-width: 145px;
            max-width: calc(50% - 0.5rem);
            padding: 14px 22px !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            text-align: center;
            box-shadow: 0 4px 15px rgba(165, 74, 123, 0.4) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            white-space: nowrap;
        }
        
        .hero-cta-btn.show-mobile {
            background: linear-gradient(135deg, #A54A7B, #2C123D) !important;
            color: #fff !important;
            border: 2px solid transparent !important;
        }
        
        .hero-cta-btn.show-mobile:hover,
        .hero-cta-btn.show-mobile:active {
            background: linear-gradient(135deg, #2C123D, #A54A7B) !important;
            transform: translateY(-2px) scale(1.02) !important;
            box-shadow: 0 6px 20px rgba(165, 74, 123, 0.6) !important;
        }
        
        .hero-cta-btn.show-mobile:active {
            transform: translateY(0) scale(0.98) !important;
        }
        
        .floating-contact-btn {
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
        
        .floating-contact-menu {
            bottom: 80px;
            right: 20px;
        }
        
        .floating-contact-menu-item {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
        
        .floating-share-btn {
            left: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
        
        .floating-share-menu {
            left: 80px;
            bottom: 20px;
        }
        
        .floating-share-menu-item {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
        
        .chatbot-modal-content {
            width: 95%;
            max-height: 500px;
        }
        
        .shiny-text {
            font-size: 2.2rem !important;
        }
        
        .about-cards-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 1.5rem;
        }
        
        .about-card {
            min-height: auto;
            padding: 30px 25px;
        }
        
        .about-card h2 {
            font-size: 22px;
        }
        
        .about-card p {
            font-size: 15px;
            line-height: 1.7;
        }
        
        .custom-counters-wrapper {
            padding: 30px 15px !important;
        }
        
        .custom-counters-wrapper .counter-box {
            flex: 1 1 calc(50% - 10px) !important;
            padding: 20px 12px !important;
        }
        
        .custom-counters-wrapper .number {
            font-size: 28px !important;
        }
        
        .custom-counters-wrapper .number span.symbol {
            font-size: 20px !important;
        }
        
        .custom-counters-wrapper .label {
            font-size: 14px !important;
        }
        
        .sectors-title {
            font-size: 1.75rem;
        }
        
        .sectors-subtitle {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .sectors-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .sector-card {
            min-height: 200px;
        }
        
        .sector-content {
            padding: 20px 15px;
        }
        
        .sector-name {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .sector-card:hover .sector-name {
            font-size: 20px;
        }
        
        .sector-btn {
            padding: 10px 18px;
            font-size: 13px;
            max-width: 140px;
        }
        
        .services-home-section {
            padding: 40px 15px;
        }
        
        .services-home-title {
            font-size: 2rem;
        }
        
        .services-home-subtitle {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .services-home-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-home-card {
            padding: 30px 20px;
        }
        
        .service-home-icon {
            font-size: 45px;
        }
        
        .service-home-card h4 {
            font-size: 18px;
        }
        
        .service-home-card p {
            font-size: 14px;
            min-height: auto;
        }
        
        .video-section-wrapper {
            padding: 30px 3%;
        }
        
        /* Video section - simplified */
        .video-wrapper-centered iframe {
            height: 350px;
        }
        
        .integrations-title {
            font-size: 1.75rem;
        }
        
        .integrations-modern-wrapper {
            padding: 30px 0 60px;
        }
        
        .integration-card-modern {
            min-height: 340px;
        }
        
        .integration-card-content {
            padding: 25px 20px;
        }
        
        .integration-logo-modern {
            width: 100px;
            height: 100px;
            margin-bottom: 25px;
        }
        
        .integration-title-modern {
            font-size: 22px;
        }
        
        .integration-description-modern {
            font-size: 14px;
        }
        
        .integration-btn-modern {
            padding: 12px 24px;
            font-size: 14px;
        }
        
        .swiper-nav-modern {
            margin-top: 30px;
            gap: 15px;
        }
        
        .swiper-button-prev-modern,
        .swiper-button-next-modern {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
        
        .integrations-swiper .swiper-button-next,
        .integrations-swiper .swiper-button-prev {
            width: 40px;
            height: 40px;
            display: none !important; /* Hide arrows on mobile for cleaner look */
        }
        
        .integrations-swiper .swiper-button-next:after,
        .integrations-swiper .swiper-button-prev:after {
            font-size: 16px;
        }
        
        .integrations-swiper .swiper-pagination {
            bottom: 5px;
            display: block !important; /* Show pagination on mobile */
        }
        
        .integration-card {
            padding: 25px 20px;
            min-height: 350px;
        }
        
        /* Ensure dark mode for integration cards on mobile */
        html[data-theme="dark"] .integration-card {
            background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
            background-color: #1e1e1e !important;
        }
        
        .integration-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        .integration-title {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .integration-description {
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .integration-btn {
            padding: 10px 24px;
            font-size: 14px;
        }
        
        .partners-title {
            font-size: 2rem;
        }
        
        .partners-subtitle {
            font-size: 1rem;
            margin-top: 0.25rem;
        }
        
        .partners-header {
            margin-bottom: 0.5rem;
        }
        
        .scroll-content img {
            height: 90px !important;
            max-width: 160px;
        }
        
        .scroll-content {
            gap: 30px !important;
        }
    }
    
    @media (max-width: 576px) {
        .s_cover {
            min-height: 85vh !important;
        }
        
        .hero-content-overlay {
            padding: 50px 0 130px 0;
        }
        
        .hero-carousel-nav {
            width: 35px !important;
            height: 35px !important;
            font-size: 14px !important;
        }
        
        .hero-carousel-nav.prev {
            left: 10px !important;
        }
        
        .hero-carousel-nav.next {
            right: 10px !important;
        }
        
        .hero-awards-section {
            bottom: 20px;
            padding: 0 10px;
        }
        
        .hero-awards-wrapper {
            gap: 0.75rem;
        }
        
        .hero-award-item {
            flex: 0 0 auto;
            min-width: 70px;
            max-width: 80px;
        }
        
        .hero-award-item img {
            max-width: 80px;
        }
        
        .hero-content-text {
            padding: 0 10px;
        }
        
        .hero-content-text h2 {
            font-size: 1.5rem !important;
        }
        
        .hero-content-text p {
            font-size: 0.9rem !important;
        }
        
        .hero-cta-buttons {
            gap: 0.75rem;
            padding: 0 10px;
            margin-top: 0.75rem;
        }
        
        .hero-cta-btn {
            min-width: 135px;
            max-width: calc(50% - 0.375rem);
            padding: 13px 20px !important;
            font-size: 14px !important;
        }
        
        /* Ensure mobile buttons are visible */
        .hide-mobile {
            display: none !important;
        }
        
        .show-mobile {
            display: inline-block !important;
        }
        
        .shiny-text {
            font-size: 1.8rem !important;
        }
        
        .about-cards-container {
            padding: 0 15px;
        }
        
        .about-cards-grid {
            gap: 20px;
            margin-top: 1.5rem;
        }
        
        .about-card {
            padding: 25px 20px;
        }
        
        .about-card h2 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .about-card p {
            font-size: 14px;
        }
        
        .custom-counters-wrapper {
            padding: 25px 10px !important;
        }
        
        .custom-counters-wrapper .counter-box {
            flex: 1 1 100% !important;
            padding: 18px 10px !important;
            margin-bottom: 10px;
        }
        
        .custom-counters-wrapper .number {
            font-size: 24px !important;
        }
        
        .custom-counters-wrapper .number span.symbol {
            font-size: 18px !important;
        }
        
        .custom-counters-wrapper .label {
            font-size: 13px !important;
        }
        
        .sectors-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .sector-card {
            min-height: 220px;
        }
        
        .sector-content {
            padding: 20px 15px;
        }
        
        .sector-name {
            font-size: 18px;
            margin-bottom: 12px;
        }
        
        .sector-card:hover .sector-name {
            font-size: 20px;
        }
        
        .sector-btn {
            padding: 10px 18px;
            font-size: 13px;
            max-width: 140px;
        }
        
        .video-section-wrapper {
            padding: 20px 2%;
        }
        
        .video-text-content {
            min-width: 100%;
        }
        
        /* Video section - simplified */
        .video-wrapper-centered iframe {
            height: 300px;
        }
        
        .button-hover {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .partners-title {
            font-size: 1.75rem;
        }
        
        .partners-subtitle {
            font-size: 0.95rem;
            margin-top: 0.25rem;
        }
        
        .partners-header {
            margin-bottom: 0.25rem;
        }
        
        .scroll-content img {
            height: 80px !important;
            max-width: 140px;
        }
        
        .scroll-content {
            gap: 25px !important;
        }
    }
    
    /* ============================================
       DARK MODE STYLES FOR HOME PAGE
       ============================================ */
    
    /* Dark mode for hero section */
    html[data-theme="dark"] .s_cover {
        background-color: #121212;
    }
    
    html[data-theme="dark"] .hero-carousel {
        background: #0a0a0a;
    }
    
    html[data-theme="dark"] .hero-content-text h2,
    html[data-theme="dark"] .hero-content-text p {
        color: #ffffff !important;
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
    }
    
    html[data-theme="dark"] .hero-cta-btn {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        color: #ffffff !important;
        border-color: var(--brand-purple) !important;
    }
    
    html[data-theme="dark"] .hero-cta-btn.secondary {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .hero-cta-btn:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .hero-carousel-nav {
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.3);
        color: #ffffff;
    }
    
    html[data-theme="dark"] .hero-carousel-nav:hover {
        background: rgba(0, 0, 0, 0.8);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    /* Dark mode for about section */
    html[data-theme="dark"] .about-section {
        background-color: #121212;
        color: #ffffff;
    }
    
    html[data-theme="dark"] .about-section h2,
    html[data-theme="dark"] .about-section h3 {
        color: #ffffff;
    }
    
    html[data-theme="dark"] .about-section p {
        color: #e8e8e8;
    }
    
    /* Dark mode for counters section */
    html[data-theme="dark"] .counters-section {
        background-color: #121212;
    }
    
    /* Dark mode for sectors section */
    html[data-theme="dark"] .sectors-section {
        background: linear-gradient(135deg, #121212 0%, #0f0f0f 100%) !important;
    }
    
    html[data-theme="dark"] .sectors-section h2,
    html[data-theme="dark"] .sectors-section h3 {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .sectors-section p {
        color: #e8e8e8 !important;
    }
    
    /* Dark mode for services section */
    html[data-theme="dark"] .services-section {
        background-color: #121212;
    }
    
    html[data-theme="dark"] .services-section h2,
    html[data-theme="dark"] .services-section h3 {
        color: #ffffff;
    }
    
    html[data-theme="dark"] .services-section p {
        color: #e8e8e8;
    }
    
    /* Dark mode for video section */
    html[data-theme="dark"] .video-section {
        background-color: #121212;
    }
    
    html[data-theme="dark"] .video-text-content h2,
    html[data-theme="dark"] .video-text-content p {
        color: #ffffff !important;
    }
    
    /* Dark mode for integrations section - Redesigned */
    html[data-theme="dark"] .integrations-section,
    html[data-theme="dark"] section.s_embed_code.o_colored_level:has(.integrations-swiper),
    html[data-theme="dark"] .s_embed_code.o_colored_level.pt8.pb16,
    html[data-theme="dark"] section.s_embed_code {
        background-color: #121212 !important;
        background: #121212 !important;
    }
    
    html[data-theme="dark"] .integrations-section h2,
    html[data-theme="dark"] .integrations-section h3,
    html[data-theme="dark"] .integrations-title {
        color: #ffffff !important;
    }
    
    /* Dark mode for integrations header */
    html[data-theme="dark"] .integrations-header {
        background-color: transparent !important;
    }
    
    html[data-theme="dark"] .integrations-title {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .integrations-title::after {
        background: linear-gradient(90deg, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    html[data-theme="dark"] .integrations-view-more {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .integrations-view-more:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.7) !important;
    }
    
    /* Dark mode for integration cards - Modern Design - Force Dark Background */
    html[data-theme="dark"] .integration-card,
    html[data-theme="dark"] .swiper-slide .integration-card,
    html[data-theme="dark"] .swiper-wrapper .integration-card,
    html[data-theme="dark"] .integrations-swiper .integration-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        border-color: #333333 !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
    }
    
    html[data-theme="dark"] .integration-card::before {
        background: linear-gradient(90deg, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    html[data-theme="dark"] .integration-card:hover,
    html[data-theme="dark"] .swiper-slide .integration-card:hover {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        background-color: #1e1e1e !important;
        border-color: rgba(165, 74, 123, 0.5) !important;
        box-shadow: 0 15px 40px rgba(165, 74, 123, 0.3) !important;
    }
    
    html[data-theme="dark"] .integration-card::after {
        background: radial-gradient(circle, rgba(165, 74, 123, 0.2) 0%, transparent 70%) !important;
    }
    
    /* Dark mode for integration logo container */
    html[data-theme="dark"] .integration-logo {
        background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%) !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
    }
    
    html[data-theme="dark"] .integration-logo::before {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    html[data-theme="dark"] .integration-card:hover .integration-logo {
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.4) !important;
    }
    
    /* Dark mode for integration text */
    html[data-theme="dark"] .integration-title {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .integration-description {
        color: #e8e8e8 !important;
    }
    
    html[data-theme="dark"] .integration-description strong {
        color: var(--brand-purple) !important;
    }
    
    /* Dark mode for integration button */
    html[data-theme="dark"] .integration-btn {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .integration-btn:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        box-shadow: 0 8px 25px rgba(165, 74, 123, 0.7) !important;
    }
    
    /* Dark mode for swiper navigation */
    html[data-theme="dark"] .integrations-swiper .swiper-button-next,
    html[data-theme="dark"] .integrations-swiper .swiper-button-prev {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        box-shadow: 0 4px 15px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .integrations-swiper .swiper-button-next:hover,
    html[data-theme="dark"] .integrations-swiper .swiper-button-prev:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        box-shadow: 0 6px 20px rgba(165, 74, 123, 0.7) !important;
    }
    
    /* Dark mode for swiper pagination */
    html[data-theme="dark"] .swiper-pagination-bullet {
        background: var(--brand-purple) !important;
        opacity: 0.5 !important;
    }
    
    html[data-theme="dark"] .swiper-pagination-bullet-active {
        background: var(--brand-dark-purple) !important;
        opacity: 1 !important;
    }
    
    /* Dark mode for partners section */
    html[data-theme="dark"] .partners-section {
        background-color: #121212 !important;
    }
    
    /* Partners carousel stays white in dark mode */
    html[data-theme="dark"] .partners-carousel-wrapper {
        background: #ffffff !important;
    }
    
    html[data-theme="dark"] .scroll-content img {
        background: #ffffff !important;
    }
    
    /* Dark mode for section titles */
    html[data-theme="dark"] .section-title,
    html[data-theme="dark"] .section-subtitle {
        color: #ffffff;
    }
    
    html[data-theme="dark"] .section-description {
        color: #e8e8e8;
    }
    
    /* Dark mode for view all links */
    html[data-theme="dark"] .view-all-link {
        color: var(--brand-purple);
        border-color: var(--brand-purple);
    }
    
    html[data-theme="dark"] .view-all-link:hover {
        background: var(--brand-purple);
        color: #ffffff;
    }
    
    /* Dark mode for form inputs */
    html[data-theme="dark"] .form-control,
    html[data-theme="dark"] input,
    html[data-theme="dark"] textarea,
    html[data-theme="dark"] select {
        background-color: #1e1e1e;
        border-color: #333333;
        color: #ffffff;
    }
    
    html[data-theme="dark"] .form-control:focus,
    html[data-theme="dark"] input:focus,
    html[data-theme="dark"] textarea:focus,
    html[data-theme="dark"] select:focus {
        background-color: #1e1e1e;
        border-color: var(--brand-purple);
        color: #ffffff;
    }
    
    html[data-theme="dark"] .form-control::placeholder {
        color: #999999;
    }
    
    /* Dark mode for divider */
    html[data-theme="dark"] .section-divider {
        border-color: #333333;
    }
    
    /* Dark mode for all white backgrounds - comprehensive fix */
    html[data-theme="dark"] .floating-contact-menu-item,
    html[data-theme="dark"] .floating-share-menu-item {
        background: #1e1e1e !important;
        border-color: #333333 !important;
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .chatbot-modal-content {
        background-color: #1e1e1e !important;
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .about-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        border-color: #333333 !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
    }
    
    html[data-theme="dark"] .about-card h2 {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .about-card p {
        color: #e8e8e8 !important;
    }
    
    html[data-theme="dark"] .about-card:hover {
        border-color: rgba(165, 74, 123, 0.5) !important;
        box-shadow: 0 25px 50px rgba(165, 74, 123, 0.3) !important;
    }
    
    /* Dark mode for Global Solutions title */
    html[data-theme="dark"] .shiny-text {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .about-section,
    html[data-theme="dark"] .about-cards-container {
        background-color: #121212 !important;
    }
    
    /* Dark mode for video section wrapper */
    /* Video section dark mode - simplified */
    html[data-theme="dark"] .video-wrapper-centered iframe {
        opacity: 1;
    }
    
    /* Dark mode for sectors section background */
    html[data-theme="dark"] .sectors-section {
        background: linear-gradient(135deg, #121212 0%, #0f0f0f 100%) !important;
    }
    
    html[data-theme="dark"] .sectors-title,
    html[data-theme="dark"] .sectors-subtitle {
        color: #ffffff !important;
    }

    html[data-theme="dark"] .home-company-title {
        color: #ffffff !important;
    }
    
    /* Dark mode for sectors title underline */
    html[data-theme="dark"] .sectors-title::after {
        background: linear-gradient(90deg, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    /* Dark mode for sectors grid */
    html[data-theme="dark"] .sectors-grid {
        background-color: transparent !important;
    }
    
    /* Dark mode for sector card top border on hover */
    html[data-theme="dark"] .sector-card::before {
        background: linear-gradient(to right, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    /* Dark mode for sectors title underline */
    html[data-theme="dark"] .sectors-title::after {
        background: linear-gradient(90deg, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    /* Dark mode for sectors grid */
    html[data-theme="dark"] .sectors-grid {
        background-color: transparent !important;
    }
    
    /* Dark mode for sector card top border on hover */
    html[data-theme="dark"] .sector-card::before {
        background: linear-gradient(to right, var(--brand-purple), var(--brand-dark-purple)) !important;
    }
    
    /* Dark mode for service cards */
    html[data-theme="dark"] .service-home-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #121212 100%) !important;
        border-color: #333333 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    }
    
    html[data-theme="dark"] .service-home-card h4 {
        color: #ffffff !important;
        background: none !important;
        -webkit-text-fill-color: #ffffff !important;
    }
    
    html[data-theme="dark"] .service-home-card p {
        color: #e8e8e8 !important;
    }
    
    /* Dark mode for service card hover states */
    html[data-theme="dark"] .service-home-card:hover {
        border-color: var(--brand-purple) !important;
        box-shadow: 0 20px 40px rgba(165, 74, 123, 0.3) !important;
    }
    
    /* Dark mode for service home link - ensure visibility */
    html[data-theme="dark"] .service-home-link {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(165, 74, 123, 0.5) !important;
    }
    
    html[data-theme="dark"] .service-home-link:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
        box-shadow: 0 6px 18px rgba(165, 74, 123, 0.7) !important;
    }
    
    /* Dark mode for all buttons - ensure visibility */
    html[data-theme="dark"] .btn,
    html[data-theme="dark"] button,
    html[data-theme="dark"] .button-hover {
        color: #ffffff !important;
    }
    
    html[data-theme="dark"] .btn-primary,
    html[data-theme="dark"] .button-hover {
        background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark-purple)) !important;
        border-color: var(--brand-purple) !important;
    }
    
    html[data-theme="dark"] .btn-primary:hover,
    html[data-theme="dark"] .button-hover:hover {
        background: linear-gradient(135deg, var(--brand-dark-purple), var(--brand-purple)) !important;
        color: #ffffff !important;
    }
    
    /* Dark mode for about section */
    html[data-theme="dark"] .about-section {
        background-color: #121212 !important;
    }
    
    /* Dark mode for counters section */
    html[data-theme="dark"] .counters-section {
        background-color: #121212 !important;
    }
    
    /* Dark mode for video section */
    html[data-theme="dark"] .video-section {
        background-color: #121212 !important;
    }
    
    /* Dark mode for integrations section */
    html[data-theme="dark"] .integrations-section {
        background-color: #121212 !important;
    }
    
    /* Dark mode for partners section */
    html[data-theme="dark"] .partners-section {
        background-color: #121212 !important;
    }
</style>
